Activity overview
Latest activity by ccollins
Description:
A problem caused this program to stop interacting with Windows.
Problem signature:
Problem Event Name: AppHangB1
Application Name: Ssms.exe
Application Version: 2009.100.1600.1
Application Timestamp: 4bb679e7
Hang Signature: 5d4e
Hang Type: 6400
OS Version: 6.1.7600.2.0.0.256.1
Locale ID: 1033
Additional Hang Signature 1: 5d4e89e34b78d1eaec09604964415018
Additional Hang Signature 2: 7339
Additional Hang Signature 3: 7339e7c669c193a7ad276d15bf9f2609
Additional Hang Signature 4: 5d4e
Additional Hang Signature 5: 5d4e89e34b78d1eaec09604964415018
Additional Hang Signature 6: 7339
Additional Hang Signature 7: 7339e7c669c193a7ad276d15bf9f2609
Read our privacy statement online: http://go.microsoft.com/fwlink/?linkid= ... cid=0x0409
If the online privacy statement is not available, please read our privacy statement offline:
C:\Windows\system32\en-US\erofflps.txt / comments
Description:
A problem caused this program to stop interacting with Windows.
Problem signature:
Problem Event Name: AppHangB1
Application Name: Ssms.exe
Application Version: 2009.100.1600.1
Applica...
Dead After a Day. I had to end the SSMS process, no other method worked.
I am going to attempt to add static linked tables in groups and check in. This may work around the check in issue, but probably not the get latest issue.
This is a wall, not a speed bump. / comments
Dead After a Day. I had to end the SSMS process, no other method worked.
I am going to attempt to add static linked tables in groups and check in. This may work around the check in issue, but pro...
Getting large recordset static linked data OutOfMemoryExcept
SSRS 2008 R2 SSMS
Static linked data table with 46K records.
Committed fine.
Getting changes on mine and other dev workstations failing with:System.OutOfMemoryException: Exception of type 'System.O...
how to control Database Extended Properties
Using SQL Source Control V2.1.0.31
I added a Version extended property at the Database level. I do not get the opportunity to check it in.
However, I changed a table level extended property and ch...
The scenario of two DLLs, named the same, but having different functionality and versions exists in Version 8 as well.
This is not easily implemented in a distributed system. One dll or two dll names is requested. / comments
The scenario of two DLLs, named the same, but having different functionality and versions exists in Version 8 as well.
This is not easily implemented in a distributed system. One dll or two dll na...
We are using SQL 2000 SP4 for production. However, we are seeing the same situation with the same databases on SQL 2005.
I can supply two data set types: a) bulk loadable text files for each table b)synchronize script.
I do not have a public internet server to link to, is there an attach or upload facility you provide? / comments
We are using SQL 2000 SP4 for production. However, we are seeing the same situation with the same databases on SQL 2005.
I can supply two data set types: a) bulk loadable text files for each tabl...
nText and Text column comparision improvements required
When comparing Text or nText columns I receive the report that records are different. If I investigate each record using the data compare 5 UI, each one is equal. The correct results would be tha...
So the approach here is to use the Where clause to limit the ROWCOUNT, causing the user to manually change the where clause X number of times to compare and synchronize the entire recordset.
This seems to be a conflict in automation. The approach should be to specify a SET ROWCOUNT = Y, (i.e. 10000), value. Red-Gate data compare would then generate multiple insert, update or delete scripts. Likewise the schemacompare would populate a rebuilt table like this, with no begin/committ transactions and assuming a backup is available and disk space optimization is preferred:
SET ROWCOUNT 10000
While 0 = 0 Begin
-- populate rebuilt table
INSERT INTO [dbo].[tmpxxx_table] ([tableID], [field1], [dbaDateCreated], [dbaDateUpdated], [dbaIsActive], [dbaIsDeleted])
SELECT [tableID], [field1], [dbaDateCreated], [dbaDateUpdated], [dbaIsActive], [dbaIsDeleted] from [dbo]. @ROWCOUNT = 0) BREAK
End
GO / comments
So the approach here is to use the Where clause to limit the ROWCOUNT, causing the user to manually change the where clause X number of times to compare and synchronize the entire recordset.
This s...