Viewing 12 posts - 1 through 12 (of 12 total)
I get this error occasionally also. Same arrangement, SQL 2000 SP3. Usually this indicates that one or more indexes on the rogue table are corrupt. By running a dbcc dbreindex,...
October 2, 2003 at 9:35 am
You could take the results of the stored procedure and insert them into a temporary table. Then you can query the table yourself and get the columns you want.
Eg: spProc...
September 16, 2003 at 7:12 am
The dbcc shrinkfile command should also work for your datafile/mdf also. It will probably take a while, but it will shrink the file. All you would have to do is...
July 3, 2003 at 12:54 pm
I may be off base, but if you are using full logging on your database(I am not sure if you are or not), the log will remain intact until you...
July 2, 2003 at 7:41 pm
you could write your backup file to a common location, and write a service or job on each backup machine to grab the file and restore it. Copy the job...
June 23, 2003 at 10:52 am
If you are having problems with the disk signature getting out of sync, try using the following command line:
dumpcfg -s 865dda44 8
the dumpcfg part you should be able to download...
June 19, 2003 at 7:16 am
If you are stuck with having to use a cursor, then making them read only and static should help. You would have to test it for your situation, but I...
June 17, 2003 at 10:44 am
Does your maintenance plan run a dbcc checkdb or checktable? It sounds like it is running one of those process with a parameter such as repair_rebuild, repair_allow_data_loss or repair_fast. In...
June 17, 2003 at 10:35 am
Thanks for both of your input. I found the thread Jeremy suggested early this morning. I think what I will end up using is an insert into a separate table,...
April 4, 2003 at 7:55 am
I have used this option a number of times and had success with it. Sometimes performance improved by a factor of ten. It is something that needs to be tested...
December 4, 2002 at 2:50 pm
I think you would still need to have the statement Option (keepfixed plan) at the end of each statement. That tells SQL Server to use the previously established execution plan...
December 2, 2002 at 10:46 am
To reduce the recompiles, try adding
option (keepfixed plan)
at the end of each sql statement in the procedures.
November 25, 2002 at 6:32 am
Viewing 12 posts - 1 through 12 (of 12 total)