Viewing 15 posts - 3,136 through 3,150 (of 4,745 total)
I am not aware of anything that tells you an actual date when a rebuild was run, but if rebuild has been run then the statistics will also have been...
December 13, 2009 at 12:41 pm
Steve Jones - Editor (12/13/2009)
December 13, 2009 at 9:26 am
ah, have i misunderstood it, it matters when you have more than one query within a transaction?
December 13, 2009 at 8:58 am
--run in context of db you want size info for
declare @dbname sysname
SET @dbName = DB_NAME()
-- Create a temporary table to store the DBCC SQLPERF results.
...
December 13, 2009 at 8:16 am
If you are creating temp tables and loading large amounts of data into them that activity into tempdb has to be logged, hence the growth in the tempdb transaction log....
December 13, 2009 at 5:38 am
Its a moot point as to whether you consider deadlocks a performance issue (I would) but should there not at least be consistency in the order objects are accessed to...
December 13, 2009 at 4:26 am
I would agree that you should not be connecting to SQL with the sa account, or the windows account the SQL service runs under for that matter, but as someone...
December 12, 2009 at 4:39 pm
you need to set the correct default database, correct default language and reassign any server level permissions (sp_addsrvrolemember)
You would be better off using sp_help_revlogin. then the code you posted, there...
December 12, 2009 at 10:47 am
DB in simple mode?
no full backup taken yet?
December 11, 2009 at 5:26 pm
for my money the latest cumulative hotfix you should apply after SQL 2000 SP4 is rollup 2187 - the file is called 266223_ENU_i386_zip.exe
you should then apply security hotfix MS08-040 which...
December 11, 2009 at 7:21 am
If its a one off you may as well use the gui, that way its never in clear text on the screen.
You wont have to change the service account or...
December 9, 2009 at 11:48 am
because you have specified detailed you are getting the non-leaf levels of the index as well. return the index_level column as well or use LIMITED.
fragmentation of non leaf nodes wont...
December 9, 2009 at 11:10 am
Must mean in relation to AWE or even possibly 64bit
see
though I note this is in the SQL 2000 forum, so note AWE is not dynamic for SQL2000 and available in...
December 9, 2009 at 8:52 am
jts_2003 (12/9/2009)
December 9, 2009 at 8:39 am
Viewing 15 posts - 3,136 through 3,150 (of 4,745 total)