Viewing 15 posts - 1 through 15 (of 45 total)
I realize this is an old thread, but wanted to add.
The query is great, thanks Ian.
On one of my systems it was leaving out some open transactions so I made...
October 14, 2016 at 10:54 am
I see that in our environment for tables will a small rowcount. Apparently if it only takes a fraction of a page it shows as fragmented.
June 5, 2006 at 3:58 am
I also had an instance where the database was one version 7.0 and the client tools were another 2000 that did the exact same thing.
October 20, 2004 at 2:50 pm
If you append to your transaction log backup file you will also need to use the FILE= argument.
I have done this and programatically incremented the file number to restore multiple...
October 17, 2004 at 8:31 pm
I am glad it worked for you.
Every DBA has a little anxiety now and then....
October 14, 2004 at 1:10 pm
msdb contains the history of you job execution among other things. If you are interested in keeping this up to date then I would back up msdb as often as...
October 14, 2004 at 1:04 pm
You might try sp_attach_db and see if you can reattach the database.
October 14, 2004 at 12:57 pm
If this is all the records in the table you could truncate instead in seconds.
The time for a delete depends a great deal on your hardware and the other users...
October 14, 2004 at 12:55 pm
Perform a full backup again and then the tran log backups should work. If the full backup has an error the tran log backups have no reference point and the...
October 14, 2004 at 12:53 pm
I read the test requirements from the microsoft mcp site and read books online, Inside SQL, and worked with the product, then took the tests. It is work but it...
October 12, 2004 at 12:45 pm
It may be a memory issue. Do a search for "locks option" in BOL.
October 11, 2004 at 2:34 pm
execute select @@version. you may need to scroll to the right to see the part you are interested in.
October 11, 2004 at 10:50 am
First find out what table has the error:
select object_name(181575685)
You will need to run this for the correct database. You may be able to see which database was being checked...
October 11, 2004 at 10:47 am
Here is an article that talks about the error and the cause: http://www.standardio.org/article.aspx?id=215
October 8, 2004 at 6:05 pm
Viewing 15 posts - 1 through 15 (of 45 total)