Forum Replies Created

Viewing 15 posts - 166 through 180 (of 1,179 total)

  • RE: Heaps rebuild

    Good question, Igor. Enjoyed diging the inromation and basics.

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

  • RE: Does a restored DB bring its virtual file stats with it?

    Grant Fritchey (5/19/2014)


    free_mascot (5/19/2014)


    If you have doubt and server is not production you can enable trace for the specific database and check the activities going on?

    You can trace production too,...

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

  • RE: validate data

    You can check the status in Replication monitor

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

  • RE: Database IN RECOVERY

    Check if any disk SAN issue.

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

  • RE: Change Identity Property in T-SQL

    You can use ALTER TABLE command.

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

  • RE: CDC is disable

    Refer following link which might be useful:

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

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

  • RE: master db backup failed

    There are no direct relation between master backup failed and rebuild master.

    Have you checked why master backup is failing? Rebuilding the master is not a solution.

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

  • RE: Capacity Planning--CPU and Memory usage.

    try DMV sys.dm_os_ring_buffers which might help you to get CPU info.

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

  • RE: Running Out Of Foreign Keys

    Interesting one, thank you Andy.

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

  • RE: Where do I find SQL Server 2005 Standard Edition installation bits?

    Your IT department should must have kept a copy of the software which you are using?

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

  • RE: Records don't get deleted despite user having correct rights

    Can you post exact error while deleting records?

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

  • RE: Does a restored DB bring its virtual file stats with it?

    If you have doubt and server is not production you can enable trace for the specific database and check the activities going on?

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

  • RE: DMV to know my workload type

    For workload what are the things would like to monitor?

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

  • RE: How to make sum of values for the month?

    Also you can use following to trim result:

    SELECT

    SUBSTRING (CONVERT(nvarchar(15), GETDATE(), 6), 4,6) AS Month;

    GO

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

  • RE: How to make sum of values for the month?

    Try something like this:

    SELECT

    CONVERT(nvarchar(30), GETDATE(), 6) AS Month ;

    GO

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

Viewing 15 posts - 166 through 180 (of 1,179 total)