Viewing 15 posts - 301 through 315 (of 860 total)
Yes, its an expensive operation. Change the recovery model to Bulk logged when you are rebuilding your indexes which will be logged minimally.
April 7, 2009 at 5:52 am
fminns (4/7/2009)
RESTORE PAGE is not...
April 7, 2009 at 5:45 am
Right click on your database -> Tasks -> Generate scripts and follow up the wizard
April 7, 2009 at 4:46 am
vrabhadram (4/6/2009)
hi,i've doubt how can i detect that the particular page is corrupted.
By running regular DBCC commands as part of your maintenance plan.
You could also check suspect_pages table in the...
April 7, 2009 at 4:40 am
iqtedar (4/6/2009)
thanks Krishna..things look much better now...krishna tday i changed the recovery mode to bulk logged mode and will monitor if that helps..thanks..
No Problem.
Was your databases in Full Recovery model?,...
April 7, 2009 at 4:27 am
Joseph (4/6/2009)
HaiCan we change master db compativity level from 90 to 80
Absolutely not. Why you want to try this anyway?
April 6, 2009 at 7:02 pm
How about this one:
SELECT DB_NAME(database_id), LastRead = MAX(CASE
WHEN last_user_seek > last_user_scan AND last_user_seek > last_user_lookup
THEN last_user_seek
WHEN last_user_scan > last_user_seek AND last_user_scan > last_user_lookup
THEN last_user_scan
ELSE last_user_lookup
END
), LastWrite = MAX(last_user_update) FROM
(
SELECT
database_id,
last_user_seek =...
April 6, 2009 at 6:56 pm
True whatever Grant advised.
But my two cents:
Its a deadlock between SPID 287 wich has Update lock and SPID 399 which has IX lock and SPID 287 has been chosen as...
April 6, 2009 at 6:45 pm
paul.starr (4/6/2009)
sql 2000
Oops you are in the wrong forum then. it works only for 2005.
I am not so sure how you can implement in 2000, lets wait for other members.
April 6, 2009 at 12:32 pm
paul.starr (4/6/2009)
not working, in what database am i suppose to run this in?error is Invalid object name 'sys.dm_db_index_usage_stats'.
Is it SQL 2000 or 2005 you are running?
Any database.
April 6, 2009 at 12:28 pm
wayne.mcdaniel (4/6/2009)
"The log scan number (xxxx) passed to log scan in database...
April 6, 2009 at 11:34 am
True, I tried to set it up too but never had success :~(.
I think gmail offers you some package for small organizations with some little amount to pay. that might...
April 6, 2009 at 11:24 am
Basically, in any recovery model Tlog can be reused. Tlog is divided into number of VLF's when one VLF becomes full it uses another VLF. For the sql server to...
April 6, 2009 at 11:18 am
oh thanks for correcting it Gail !
also this might be useful there's a live webcast today on fragmentation, check this out:
April 6, 2009 at 8:18 am
radek (4/6/2009)
April 6, 2009 at 8:06 am
Viewing 15 posts - 301 through 315 (of 860 total)