Viewing 15 posts - 541 through 555 (of 860 total)
aomanakkuttan (3/17/2009)
How can i move the stystem databases?
Can i restore master...
March 17, 2009 at 2:15 pm
I would drop the database and recreate it from the backup but does it make difference I am not so sure. Either ways database is going to be in the...
March 17, 2009 at 1:55 pm
ALIF (3/17/2009)
How do i enable the trace flag 1222?Thanks
DBCC TRACEON(1222,-1)- Enabled the flag globally.
You get the graph in the Error log. copy it to a text file and post...
March 17, 2009 at 8:25 am
Script out all your objects at the source and then run it against your destination table.
March 17, 2009 at 8:15 am
Is it possible to transfer the database directly from 2005 server to 2000 server?
No, not through backup and restore method, instead you can script out your 2005 database and then...
March 17, 2009 at 8:14 am
Poll your table using the dmv ' _physical_stats' and organize your maintenance plan.
As a genral rule of thumb Fillfactor should be:
100% for no activity
90% for low activity
70% for medium activity
50%...
March 17, 2009 at 7:12 am
t.walker (3/17/2009)
Krishna (3/17/2009)
As a genral rule of thumb Fillfactor should be:100% for no activity
90% for low activity
70% for medium activity
50% for higher activity or more
I'm not sure you can have...
March 17, 2009 at 7:00 am
You can never downgrade your database. it is not possible to restore a 2005 backupfile onto a 2000 server, same thing with the 2005 and 2008.
March 17, 2009 at 6:54 am
That sounds good to me, but how heavy is the table getting modified. 90% FIllfacotr prone to more page splits, if have this setting and if there is huge...
March 17, 2009 at 6:48 am
as ALZDBA suggested put your DB in single user model it should kick everyone out and then restore the database and fix the Orphan users
March 17, 2009 at 6:39 am
Ratheesh.K.Nair (3/17/2009)
Krishna,Just try that and see what happens
You are trying to truncate the Transaction log. tempdb is recreated each time the sql server starts. You should always size your tempdb...
March 17, 2009 at 6:33 am
Ratheesh.K.Nair (3/17/2009)
Krishna,Just try that and see what happens
Helo Ratheesh,
I would not want to try that. I want to know what you are trying to do? I did so, and I...
March 17, 2009 at 6:26 am
Viewing 15 posts - 541 through 555 (of 860 total)