Viewing 15 posts - 781 through 795 (of 1,065 total)
I had a similar issue a while back, and found the easiest way to get round it was to wrap the query up in a stored procedure that I executed...
June 27, 2008 at 4:11 am
Backups are very unlikely to be CPU bound.
Are you backing up to the same machine the database is on?
If so, it sounds like you have some serious I/O problems...
June 27, 2008 at 2:05 am
The name of a stored procedure has a data type of "sysname", which is 128 characters.
The schemas for the replication metadata all use sysname, so MS have obviously decided to...
June 27, 2008 at 2:01 am
Have you got any triggers on Table B?
June 27, 2008 at 1:16 am
Any triggers on the table you are updating?
The query plan seems to be looking at a column called LastCallStatus. Do you have a trigger that does something like set the...
June 2, 2008 at 6:42 am
Which version of VS2008 are you using?
I'm sure I saw a comparison of the versions somewhere, and not all versions support TSQL debugging.
May 22, 2008 at 8:55 am
Another thing that I have seen make a big difference is the connection options e.g. ANSI_NULLS. Make sure query analyzer is using the same options as the connection from your...
September 28, 2007 at 3:39 am
Have a look at my earlier post about putting the set statements at the beginning of the procedure.
The bizarre solution was courtesy of Microsoft Support
April 13, 2007 at 10:36 am
SQL Server creates the pseudo inserted and deleted tables by reading the changes from the transaction log.
Performance is therefore going to be affected by the number of changes it has...
January 18, 2007 at 6:09 am
Delete the tables.
Don't forget, the tables are in Tempdb, so they will be removed every time you restart the instance, so you can do no harm by deleting the whole...
December 8, 2006 at 7:08 am
Where are you seeing this error?
This table (and a few others) are used to populate the information in Replication Monitor, and don't actually have anything to do with the replication...
December 8, 2006 at 6:28 am
Your understanding is partially correct, the only thing that you are missing is:-
You need to set the isolation level on the connection that is reading the data (your website), not...
December 23, 2005 at 4:44 am
Microsoft Press have produced a book 'SQL Server 2000 High Availability' (ISBN 0735619204) that explains clustering in huge detail. Search this site or Google, and you will find plenty of links/articles...
December 14, 2005 at 1:28 am
Clustering works by having disk storage that is attached to all of the nodes in a cluster. When a nodes running SQL Server fails, one of the other node takes control...
December 13, 2005 at 9:23 am
Viewing 15 posts - 781 through 795 (of 1,065 total)