Forum Replies Created

Viewing 15 posts - 631 through 645 (of 1,179 total)

  • RE: Log shipping Error

    Try this:

    Step 1:

    alter database dbname

    set single_user

    with rollback immediate

    Step 2: (Immediately after Step 1)

    Restore database dbname from device = '<filepath>'

    Your databae will be in multi_user mode after the restore. If not...

    ---------------------------------------------------
    "Thare are only 10 types of people in the world:
    Those who understand binary, and those who don't."

  • RE: Transaction Log Is Full

    Expand the log file size and set autogrow on; if your datatabase is production. If not you can put database in simple recovery mode.

    ---------------------------------------------------
    "Thare are only 10 types of people in the world:
    Those who understand binary, and those who don't."

  • RE: Automatically check results of DBCC CHECK DB

    If you have configured database mail; check your mail profile by sending test mail.

    http://msdn.microsoft.com/en-us/library/ms190307.aspx

    HTH

    ---------------------------------------------------
    "Thare are only 10 types of people in the world:
    Those who understand binary, and those who don't."

  • RE: temp db got big

    In addition to above, check if the SORT_IN_TEMPDB option is set to ON while rebuilding indexes than SQL Server will use tempdb.

    Check following article for further detail.

    http://msdn.microsoft.com/en-us/library/ms188281.aspx

    ---------------------------------------------------
    "Thare are only 10 types of people in the world:
    Those who understand binary, and those who don't."

  • RE: Query Tuning

    Thanks Jeff, good question.

    ---------------------------------------------------
    "Thare are only 10 types of people in the world:
    Those who understand binary, and those who don't."

  • RE: How to implement alert message to mobile

    Yes, you can configure Database Mail or SQL Mail. I prefer Database mail.

    ---------------------------------------------------
    "Thare are only 10 types of people in the world:
    Those who understand binary, and those who don't."

  • RE: BCP Table to table help

    Sonds good.

    You can also disable any constraints, business rues, checks etc before BCP and once BCP is done enable it. Also if possible you can use TABLOCK hint.

    HTH

    ---------------------------------------------------
    "Thare are only 10 types of people in the world:
    Those who understand binary, and those who don't."

  • RE: How to transfer the logins and the passwords between instances of SQL Server 2005 and SQL Server 2008

    You can use SSIS to transfer logins.

    ---------------------------------------------------
    "Thare are only 10 types of people in the world:
    Those who understand binary, and those who don't."

  • RE: How to implement alert message to mobile

    You need to check with your mobile service provider and ask for mail address for your mobile number. e.g. in some of the case mobilenumber@serviceprovider.com where you need to put...

    ---------------------------------------------------
    "Thare are only 10 types of people in the world:
    Those who understand binary, and those who don't."

  • RE: Large terabyte database move to different server

    As explained above, if you do not have space issue go with LS. This will help you to minimize the donwtime too.

    ---------------------------------------------------
    "Thare are only 10 types of people in the world:
    Those who understand binary, and those who don't."

  • RE: Database upgarde from SQL 2000 to SQL 2008

    Both collation are same. There is no difference in collation eventhough SQL Server version changes. I prefer to install the same collation of SQL SERVER 2008 as SQL Server 2000.

    Cheers!

    ---------------------------------------------------
    "Thare are only 10 types of people in the world:
    Those who understand binary, and those who don't."

  • RE: log shipping doesnt work properly

    You are correct LS is ont timezone aware and it based on LSN.

    What you can do here is you need to set up LS manually or write step of restore...

    ---------------------------------------------------
    "Thare are only 10 types of people in the world:
    Those who understand binary, and those who don't."

  • RE: Fragmentation and backup/restore ??

    Option 1:[/u] You can either perform rebuild/defrag indexes on existing box before do the full backup

    or

    Option 2: rebuild/defrag indexes on the new box after the restore.

    Now, if your existing...

    ---------------------------------------------------
    "Thare are only 10 types of people in the world:
    Those who understand binary, and those who don't."

  • RE: Deadlock event

    Enable traceflag 3605 which will help you to capture the information in sql log. Refer following link for further detail:

    http://support.microsoft.com/kb/832524

    HTH

    ---------------------------------------------------
    "Thare are only 10 types of people in the world:
    Those who understand binary, and those who don't."

  • RE: Table Access Order

    Nice Question!!!

    ---------------------------------------------------
    "Thare are only 10 types of people in the world:
    Those who understand binary, and those who don't."

Viewing 15 posts - 631 through 645 (of 1,179 total)