Viewing 15 posts - 751 through 765 (of 3,221 total)
You might want to look at the undocumented DBCC command
DBCC log ({dbid|dbname}, [, type={-1|0|1|2|3|4}])
where dbid is either the dbid or the name of the database
and type is the...
January 5, 2012 at 6:40 pm
If you will post table definitions, sample data in a readily consumable format (To do so click on the first link in my signature block), some one will answer your...
January 5, 2012 at 6:11 pm
Ninja's_RGR'us (1/4/2012)
Revenant (1/4/2012)
Koen Verbeeck (1/4/2012)
Did I...
January 4, 2012 at 8:26 pm
Is it just me, or has anyone else noticed what happened to the entry in the left most frame linking to that series of SPACKLE[/B] articles, it seems to have...
January 3, 2012 at 9:32 pm
Thank goodness for Jeff Moden's writing in the series of articles called "SPACKLE"
Speakiing of thos short but SO INFORMATIVE ARTICLES, what happend to the entry in the left most...
January 3, 2012 at 9:21 pm
Incorrect answers: 40% (2)
Total attempts: 5
Nice, even if a rather simple question (but it does take one back to the basics and because of...
January 2, 2012 at 8:37 pm
Get it in your head .. hmm I had to take off my shoes and socks so I could continue counting on both my fingers and toes ......
January 2, 2012 at 10:47 am
Sapen (1/2/2012)
Thanks for the script. That really helps a lot. The sum(rowmodctr) column is returning records more than 45000 for some tables. But is there a way to know...
January 2, 2012 at 10:25 am
Why not build your own table. For example:
CREATE TABLE #Address(Id INT IDENTITY(1,1),Address VARCHAR(50));
DECLARE @N INT
SET @N = 1
WHILE @N < 100
BEGIN
...
December 31, 2011 at 2:53 pm
Taking into account okbangas post above:
You might wish to minimize those tables whose statistics you are going to update by running the following. Then examining the results, and...
December 31, 2011 at 1:36 pm
In your job are you using "UPDATE STATISTICS " or sp_updatestats ?
Are you defragmenting your indexes in that job as well ?
December 31, 2011 at 7:15 am
and
Prosperous New Year!!!
🙂+1
December 31, 2011 at 6:31 am
Viewing 15 posts - 751 through 765 (of 3,221 total)