Forum Replies Created

Viewing 15 posts - 976 through 990 (of 1,179 total)

  • RE: ldf file path in server ?

    Yes, you can add where clause in the above query:

    select db_name(database_id),type_desc,physical_name from sys.master_files where type_desc = 'LOG'

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

  • RE: log shipping error messages

    What's frequency of log backup?

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

  • RE: How to check which account executes statement?

    I guess you are loged on with your domain\yourusername and running the backup so it's giving your info in profiler. Now in schedular you are using SSA so you just...

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

  • RE: Moving jobs from sql 2000 t0 2005

    I guess you need to change server name as you would like to execute it on new server but make sure and test it on dev or test environment before...

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

  • RE: Maintanance Plan

    You need to add "Maintenance Cleanup Task" with desire retention period of Database Bakup.

    HTH

    Cheers

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

  • RE: Help, my database is corrupt. Now what?

    Thank you, Gila for clarification and prompt reply.

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

  • RE: how to set up mirroring in sqlserver 2005 & what are the h/w and s/w requirements for it

    Refer link:

    http://technet.microsoft.com/hi-in/library/cc917680(en-us).aspx

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

  • RE: Help, my database is corrupt. Now what?

    Thank you Gail for such a Wonderful article 🙂

    A quick question:

    ???If database is corrept and we are taking backup.... does backup too have corruption?

    ???If we are restoring the database with...

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

  • RE: Error in job activity monitor

    however you need to creat "History clean up task" to clear history else it will there and unless and untill manually deleted it.

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

  • RE: Transaction log in a mirrored database environment

    Also I doubt that mirroring is not in sync hence unable to truncate the data from log on production.

    Make sure your mirroring is working find before taking any steps.

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

  • RE: How can one be a proper DBA these days when everything is scripted?

    No terry,

    Still there are lost of new features are there which DBA can target. eg. high availability like mirroring, Snapshot, service broker, clr intigrity, xml and much more etc....

    I feel...

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

  • RE: importing and exporting constraints

    Best way to do this is use Data modeling tool like ERwin.

    Alternate is creat Script for the same.

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

  • RE: shrinking logfile in SQL 2008

    If your database is Production than after changing db back to Full recovery mode do not forget to take full backup.

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

  • RE: Trying to delete old log files

    can you try following code:

    -----------------------

    DECLARE @cmd nvarchar(2000)

    SET @cmd = 'EXEC master.dbo.xp_delete_file 0,N''\\ServerName\C$\SQL Data\MSSQL.1\MSSQL\LOG\'',

    N''txt'',N''' + CONVERT(nvarchar(256),Dateadd (dd, -6, getdate()), 101) + ''''EXEC (@cmd)

    ---------------------------

    HTH

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

  • RE: Best practices / guide for setting up a new SQL 05 box from scratch?

    Think about the Packaging of SQL Server 2005.

    It will help you to retain the standard as well as minimal knowledge.

    HTH

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

Viewing 15 posts - 976 through 990 (of 1,179 total)