Viewing 15 posts - 76 through 90 (of 1,065 total)
Have you tried using DBCC SHRINKFILE? That does allow you to shrink the file smaller than its original size.
Per BOL.. "Use DBCC SHRINKFILE to shrink a file to a size...
March 22, 2012 at 8:54 am
Which replication agent are you getting the error from?
March 20, 2012 at 5:47 am
You say the tables are identical... are you talking about data and schema?
An extra unique index or additional/different trigger on the subscriber could cause problems.
March 20, 2012 at 4:37 am
It doesn't matter what method you use to get the data out (and BCP is about as fast as it gets), they will all have to read the rows into...
March 20, 2012 at 3:03 am
Also check the indexes on the before and after databases.
Someone could have dropped an index (or two), which would account for the reduction in size.
March 20, 2012 at 2:45 am
I would guess that caching is the answer.
The first time you run BCP, all the rows have to be read into memory from disk.
The second time you run BCP, all...
March 20, 2012 at 1:53 am
Derek
I have 3 SQL Server 6.5 books gathering dust in my garage...
The SQL Server 6.5 Performance Tuning and Optimization guide by Ken England
Planning and Building a high performance database by...
March 14, 2012 at 3:59 am
Yes, still running/supporting a major system using SQL 2000.
The system uses multiple servers across the world, synchronized with Merge Replication, all containing sensitive data.
The cost of upgrading the SQL...
March 9, 2012 at 3:54 am
I know you're not going crazy 🙂
I was searching for the same information a few months ago, which was why I remembered it was in the SQL 2000 documentation.
March 1, 2012 at 10:03 am
From BOL for SQL 2000...
0 = Failed
1 = Succeeded
2 = Retry
3 = Canceled
4 = In progress
March 1, 2012 at 8:41 am
Doh... I didn't mean updated. I meant "inserted"
The trigger will give you access to 2 pseudo tables... deleted (which contains the contents of the rows before the update) and...
February 14, 2012 at 7:21 am
As it stands, your trigger is inserting all rows from the VCTM table that match the criteria into the KWTM table, not just those that have been updated by the...
February 14, 2012 at 6:02 am
Are you sure you are running the command against the correct instance of SQL Server?
You haven't specified the -S parameter, so you will be connecting to the default instance...
February 13, 2012 at 4:44 am
GilaMonster (2/3/2012)
Ian Scarlett (2/3/2012)
February 3, 2012 at 5:46 am
I hope you have a decent firewall... you've posted IP address, logon and password in your connection string!!
February 3, 2012 at 5:09 am
Viewing 15 posts - 76 through 90 (of 1,065 total)