Forum Replies Created

Viewing 15 posts - 541 through 555 (of 860 total)

  • RE: SQL Server Movement

    aomanakkuttan (3/17/2009)


    I have a SQL Server2005 SP2 'A'.Due to performance issues i want to move/replicate the same to Second Server 'B'.

    How can i move the stystem databases?

    Can i restore master...

  • RE: Restoring SUSPECT database _from backup_

    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...

  • RE: "Transaction was deadlocked on lock"

    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...

  • RE: Create database using Backup file

    No problem at all.

  • RE: Create database using Backup file

    Yes, you can do it either way

  • RE: Table Copy

    Script out all your objects at the source and then run it against your destination table.

  • RE: Create database using Backup file

    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...

  • RE: Indexes Won't Defrag

    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%...

  • RE: Indexes Won't Defrag

    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...

  • RE: Create database using Backup file

    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.

  • RE: Indexes Won't Defrag

    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...

  • RE: How do i stop active connections before restore?

    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

  • RE: TEMPLOG

    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...

  • RE: TEMPLOG

    Please give us some clarity.

  • RE: TEMPLOG

    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...

Viewing 15 posts - 541 through 555 (of 860 total)