Forum Replies Created

Viewing 15 posts - 61 through 75 (of 109 total)

  • RE: Database stuck "in recovery"

    Normally you can delete all the log files once a full or diff back has been done.... as i our env we've a staging area where all the backups get...

  • RE: Cross editions back-restore in sql server 2008

    See it seems to be some file mismatch issue.

    Try below

    1. Backup destination db.

    2. Delete this db. (Anyhow this will be overwritten)

    3. Restore the db using move options if you want...

  • RE: Back up is not recognized

    Adiga (8/4/2010)


    I assume you are trying to take the backup using SSMS and the destination is referring to the old location.

    Why not use this query instead of using the GUI?

    BACKUP...

  • RE: Backup using litespeed but database is present on another server

    I've never used light speed as such but used redgate and according to it... you can only backup & restore databases on the instance where redgate has been installed..... and...

  • RE: Restore Incomplete BAK file

    I too agree with Ashish as if this backup is native sql backup then only you shud use SSMS or query analyzer to restore this, if this is a redgate...

  • RE: Restore System DBs to Another SQL Instance

    See when you already have your prod server on a cluster and this exercise you're doing for the worst case scenario, then I don't think you need a more spare...

  • RE: RESTORE

    one more addition... you can also try snapshots as restoring from snapshot takes very less time as compared to full backup.

    But in this case u don't have choice my friend.....

    Rohit

  • RE: Update Statistic blocked by reorganization

    if you're defraging the indexes then the next step of this job should be updating the statistics.

    As defrag doesn't updates the statistics.... if ur reindexing it then no need to...

  • RE: Scenario

    jshailendra (3/29/2010)


    1) Never create any objects in system databases(specially in master)

    I agree but these thing are in place from last 5-7 years and it will be really tough for me...

  • RE: Scenario

    irena.bulatovic (3/29/2010)


    If you have functions or stored procedures in master you can script them and then create on new server.

    This I haven't tried as I'm not sure except logins and...

  • RE: Scenario

    Guys....... I'm not sure whether I was able to explain you as what exactly we're trying to do..... Lets start it all again....

    In our comp we're not having any DR...

  • RE: Scenario

    I don't need that backup as this was a fresh install and then I started to rebuild the server...

    irena.bulatovic (3/26/2010)


    We moved our database to several different servers till now but...

  • RE: HELP me please ....

    scott williams-465021 (1/19/2010)


    I could not run any checkdb commands either. Oddly enough the tables also seem to be completely screwed up - there are tables missing and those that...

  • RE: Updates System Catalogs

    try this.

    USE master

    EXEC sp_configure 'show advanced option', '1'

    go

    RECONFIGURE WITH OVERRIDE

    go

    EXEC sp_configure 'allow updates', '1'

    go

    RECONFIGURE WITH OVERRIDE

    go

    --Now update the table u wanna update

    begin tran

    update master.sys.sysdatabases set status = 16 where name...

  • RE: Log Shipping

    Guys one more thing.. if I restore differential backup on secondry in place of full backup will it work???

    Sudhakara it's always a good practice to post the solution also once...

Viewing 15 posts - 61 through 75 (of 109 total)