Forum Replies Created

Viewing 15 posts - 226 through 240 (of 340 total)

  • RE: Problem with 2005 maintenance plan

    are you able to delete using xp_delete_file procedure manually running it, coz thats the procedure they are calling in the cleanup task.......

    [font="Verdana"]- Deepak[/font]

  • RE: how to create stand by server?

    The standby servers act as a backup server.....if your production server is highly critical and you cant tolerate any downtime you can make use of the standby server.Unfortunately if the...

    [font="Verdana"]- Deepak[/font]

  • RE: Help on deleting old backup files

    you can make use of xp_cmdshell to delete the old files,

    xp_cmdshell 'del path\.bak' will remove all the .bak files in the particular path you specify......xp_delete_file works well in sql 2005.....it...

    [font="Verdana"]- Deepak[/font]

  • RE: Backup job can''''t start because previous backup is still running

    just try to restart your sql server agent may be your agent is hanged state......

    [font="Verdana"]- Deepak[/font]

  • RE: Uninstalling SQL 2nd Instance - safe to do ?

    no issues just select the correct instance you wish to uninstall and press ok it shud be fine coz i have 3 instances and i do it frequently..........

    [font="Verdana"]- Deepak[/font]

  • RE: Standby/Read-only DB state

    i dunno if am right   this is wat comes to my mind, since log shipping is configured i believe the db is in...

    [font="Verdana"]- Deepak[/font]

  • RE: Mirroring on one server through different instasnce

    Hey you need to use Trace flag 1400 for SQL server RTM versions i believe......even i had this issue.......go to sql server configuration manager and choose sql 2005 services and...

    [font="Verdana"]- Deepak[/font]

  • RE: Next run date and time - not updated

    your sql server agent is in hanged state so just restart your sql server agent service all will be fine i guess......thanks

    [font="Verdana"]- Deepak[/font]

  • RE: Mirroring on one server through different instasnce

    you can refer this link,

    http://dumthata.com/sqlchn/articles/install/insql.htm

    refer the step 9 in that link you need to choose named instance option there and specify any name asper your desire.......cool

    [font="Verdana"]- Deepak[/font]

  • RE: Mirroring on one server through different instasnce

    In one singlre server you can create 3 seperate instances and configure dataabse mirroring.....even i had done the same it works....Just run through the setup.exe as you did for installing...

    [font="Verdana"]- Deepak[/font]

  • RE: backup error

    Karthik,

    Just do as mentioned below,

    Restore database DBname from disk='Path of your backup file\Fullbackup.bak'

    with norecovery

    Restore database DBname from disk='Path of your backup file\Differentialbackup.bak'

    with recovery

    may be you...

    [font="Verdana"]- Deepak[/font]

  • RE: backup error

    karhtik, you need to restore the full backup with either norecovery or with standby option so that the additional tranlogs backups or differential backups cud be applied......

    restore the full backup with...

    [font="Verdana"]- Deepak[/font]

  • RE: SQL 2000 Failover/Failback procedure

    just backup the tail end of the tran log using with norecovery option......so that the primary will be in restoring state and further tran logs cud be applied.........restore it in...

    [font="Verdana"]- Deepak[/font]

  • RE: Moving master, model, msdb dbs on SQL 2005

    yes sometimes even i faced this issue but it always works from command prompt.........just start sql server in single use mode as follows,

    net start mssqlserver /c /m /T3608

    then detach the...

    [font="Verdana"]- Deepak[/font]

  • RE: NO_TRUNCATE

    using NO_TRUNCATE option will not truncate the transaction log and is used in situations where db is damaged but in simple recovery model all the inactive transactions will be flushed out.......

    [font="Verdana"]- Deepak[/font]

Viewing 15 posts - 226 through 240 (of 340 total)