Forum Replies Created

Viewing 15 posts - 601 through 615 (of 1,539 total)

  • RE: What is log backup date format represents?

    I did setup log shipping and following were some of the files generated.

    My db name is pubs_2000. Date on my machine while i tested this was 29th dec 2009. I...

  • RE: What is log backup date format represents?

    I think what sanderstad wrote is correct. I just verified that by creating a maintainence plan. Can u check if the server time is different from your local system time?

  • RE: How to Copy log backups to other serevr as soon as the log backup job finishes?

    Declare @src varchar(100)

    Declare @dest varchar(100)

    declare @str1 varchar(200)

    --Declare source and destination paths

    set @src='c:\backup\AdventureWorks_log_'+convert(varchar,getdate(),112)+left(convert(varchar,getdate(),108),2)+substring(convert(varchar,getdate(),108),4,2)+'.trn'

    set @dest='c:\Develop\AdventureWorks_log_'+convert(varchar,getdate(),112)+left(convert(varchar,getdate(),108),2)+substring(convert(varchar,getdate(),108),4,2)+'.trn'

    --Backup the log

    backup log AdventureWorks to disk=@src

    --Declare the string to copy the log file

    set @str1='copy '+@src + '...

  • RE: Transaction job and optimization job

    Krasavita (7/28/2009)


    I have Transaction job running at 4:00 and optimization job running from 3:40 to 4:40. Can they run at the same time?Thank you

    If the optimization job is running from...

  • RE: delet database but still fixed space

    if you're sure the database wont grow to its original size in near future, you can proceed with shrinking or else leave it at that size as it'll eventually grow...

  • RE: Shrinking Database

    trayalacheruvu (7/28/2009)


    Actually i want to show management after cleaning up the database this size got reduced from Ex: 200 GB to 150 GB.

    If you are sure the db...

  • RE: Shrinking Database

    trayalacheruvu (7/28/2009)


    hi,

    Thanks for your quick update update.. Actually i am rebuilding the indexes every during the non-working hours.. ok after Shrink the Database i need to rebuild the indexes. the...

  • RE: sys.credentials does not exist. Why?

    Didnt understand your language. Can u state the problem in English please as most of the members use english here....

  • RE: dts

    Duplicate post. Pls post your replies here.

  • RE: dts

    Duplicate post. Pls post your replies here.

  • RE: dts

    charipg (7/28/2009)


    please suggest the good links for learning 'DTS'.

    BOL should be the place to start with, later you can search for additional resources.

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

  • RE: Shrinking Database

    EDIT-double post due to internet issue.

  • RE: Shrinking Database

    trayalacheruvu (7/28/2009)


    Hi,

    is there any performance issue by Shrinking the DB.Please update your inputs here.

    Thanks,

    Thulasi.

    Yes, you'll face performance issues. This is due to the fact that shrinking causes fragmentation of...

  • RE: Recover data of a Dropped Table

    sashikanta.mishra (7/28/2009)


    Hello Guys,

    How can i recover a table (data and Structure) after i drop that table.

    I am Using SQL EXPRESS 2005 version.I have recovery model set as FULL for the...

  • RE: Deattach or take offline the DB to copy

    tushaar.kudalkar (7/27/2009)


    Hi

    U need to stop the server services or else u will not be able to move ur .mdf and .ldf files

    Do we really need to stop the services? i...

Viewing 15 posts - 601 through 615 (of 1,539 total)