Viewing 15 posts - 391 through 405 (of 3,011 total)
If you don’t have a clustered index on a table, you can have serious problems with empty pages that never get de-allocated. I once found a heap table that...
November 2, 2012 at 10:56 am
scogeb (11/2/2012)
November 2, 2012 at 10:49 am
mgrubbs 50094 (11/2/2012)
Is there any risk to doing that?
Also, there are no varchar(max), but a...
November 2, 2012 at 8:12 am
You should run DBCC CHECKDB first to make sure there is no problem with the database.
If DBCC CHECKDB shows that the database is OK, then
Rebuild any tables with LOB columns...
November 2, 2012 at 7:51 am
Luis Cazares (11/1/2012)
Michael Valentine Jones (11/1/2012)
November 1, 2012 at 11:22 pm
There is a good chance that all the space is being used by the transaction log. If the database is in full recovery mode and you are not doing...
November 1, 2012 at 3:19 pm
capnhector (11/1/2012)
Michael Valentine Jones (11/1/2012)
It is probably best if you avoid triggers completely until you have a lot of experience with SQL Server.
i would tend to disagree. you need...
November 1, 2012 at 3:09 pm
It is probably best if you avoid triggers completely until you have a lot of experience with SQL Server.
November 1, 2012 at 1:53 pm
What is the code you tried that didn't work?
November 1, 2012 at 11:39 am
If the leaf level fragmentaion is low, it would probably be much faster to do an index reorganize(defrag), instead of a rebuild.
Or just leave it alone.
November 1, 2012 at 10:56 am
Yes. If you want, you can change the DB to read/write after the restore.
November 1, 2012 at 10:45 am
George M Parker (11/1/2012)
Love it, mind if I quote you the next time someone asks me that question?:-D
Follow-up question:
What are the properties of brown ACID?
November 1, 2012 at 8:27 am
Jeff Moden (10/31/2012)
Michael Valentine Jones (10/31/2012)
November 1, 2012 at 7:39 am
I like to ask a couple of easy trivial questions to get things started, and then ask one that a lot of senior DBA might stumble over. Just to...
October 31, 2012 at 10:22 pm
harri.reddy (10/26/2012)
my table need to store timestamp in 1 column, for the record,hwo to create timestamp in sql create table
Make sure you know what you mean by "timestamp".
TIMESTAMP is a...
October 26, 2012 at 3:07 pm
Viewing 15 posts - 391 through 405 (of 3,011 total)