Forum Replies Created

Viewing 15 posts - 451 through 465 (of 1,179 total)

  • RE: Network Drive mapping-Automation-Production issue

    After the restart the server your script run successfully to do the mapping. But when SQL Server runs the backup it won't able to access the path as SQL do...

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

  • RE: UPDATE , DELETE result is blocking

    Update and Delete both required exclusive lock hence it is natural. To avoid you can BCP data to archieve/delete during offpeack hours.

    HTH

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

  • RE: Log Shipping - secondary database path showing wrong location

    The possible reason could be you might have restoed the database without move option on secondary database. If you do not specify move option while restore it will restore the...

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

  • RE: help me to schedule this index degragmentation query

    check this out from BOL:

    -- Ensure a USE <databasename> statement has been executed first.

    SET NOCOUNT ON;

    DECLARE @objectid int;

    DECLARE @indexid int;

    DECLARE @partitioncount bigint;

    DECLARE @schemaname nvarchar(130);

    DECLARE @objectname nvarchar(130);

    DECLARE @indexname nvarchar(130);...

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

  • RE: The Worst Code

    All 5 fingures are not equal. The same way all developers are not equal and their skills vary based on interest, knowledge and experience. As all human are unique could...

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

  • RE: 17GB of data. Database is 290GB. Why???

    What is the datafile and logfile size?

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

  • RE: Permitted no of bytes per row

    Easy one. Thanks Anoo.

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

  • RE: Consideration for Azure for Bisness intelligence

    What will be the size of the database?

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

  • RE: Free space after rows removed

    Execute sp_clean_db_free_space to clean gost record and again check.

    If your server is production be careful running this. Also advisable to take full backup before executing this command. Prefer to execute...

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

  • RE: How to get sql server ip address

    Check firewall settings of the remote machine.

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

  • RE: How Many Passwords?

    I am having around 75!

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

  • RE: Please help me

    Is this production server?

    First of all check the history of Snapshot Agent.

    If snapshot agent failed collect the information why it failed from history and log.

    Also check the schedule...

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

  • RE: Index reorg or Index Rebuild

    It all depend on your environment. You can do Reindexing but advisable to have low activity on the server. You can have reorg + reindexing of highly fregmented indexes. Least...

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

  • RE: OPENQUERY-1

    Bit tricky, like the questions. Thanks, Carlo.

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

  • RE: Database Mirroring scenario

    Do not club concept of Logshipping with Mirroring. Refer the following MS link for better understanding:

    http://technet.microsoft.com/en-us/library/ms189852.aspx

    HTH

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

Viewing 15 posts - 451 through 465 (of 1,179 total)