Forum Replies Created

Viewing 15 posts - 121 through 135 (of 162 total)

  • RE: reasons for a truncate taking forever

    Probably there is some resource that is acquiring lock on the table which is preventing the truncate statement on the table.

    You may debug using SQL Profiler to verify if there...

  • RE: Backup and Restore FileGroups

    I guess you cannot recover the table2 from the filegroup as the filegroup recovery will need a T-Log backup. If you take a T-log backup, that will also contain the...

  • RE: An internal consistency error occurred.

    Try using :

    RESTORE VERIFYONLY FROM < backup_device > [ ,...n ]

    This only checks the backup to see if the backup file you have is complete.

    --Kishore

     

     

  • RE: Backup and Restore FileGroups

    You will have to take a Transaction Log backup of the database before restoring any file/filegroup backup on the database. This is the normal behaviour of Sql Server 2k.

    Also...

  • RE: Trans Logs in the same File

    when are your full backups been taken ?

    I would recommend having separate T-Log backup files. Since you have 1 per hour, you could have 24 in a day, depending on...

  • RE: Log Shipping - Easy problem if you know the answer.

    You can have a maximum of 32,767 databases per Instance of Sql Server 7.0 and SQL Server 2000.

    --Kishore

  • RE: Log Shipping - Easy problem if you know the answer.

    You can configure log shipping only on one database at a time. If you select more than one database, the log shipping option on the wizard is disabled.

    --Kishore

     

  • RE: Replication viability

    I am not sure, but I guess, when you remove the network cable of the Publisher, the transaction log backups will contiue to happen (provided your T-log backups destination is on...

  • RE: assigning a maintainence plan for databases.

    What kind of maintainence plans are you looking for ? You can use some of the DBCC commands like DBCC checkdb, DBCC dbreindex, etc. in ur plan....

    --Kishore

     

  • RE: SQL server differential restore problem!!

    Can you list all the backup files U have at present and their backup datetime. We can then help you better....

    --Kishore

     

  • RE: Simple Issue - but confused

    Yes. You can use the use backup database command in QA. But if you need to schedule it for future use, you can schedule a job rather than everytime passing...

  • RE: Unique CMS

    Can you provide more information like the table structure and what exactly you want in your output. So that we can help you better.

    --Kishore

  • RE: Simple Issue - but confused

    Yes at times I have also got similar problems. What you can do is that still mention the path of the drive and folder name manually and try taking a...

  • RE: How to connect to remote sql server by EM

    Under EM, right click on SQL Server Group and click on 'New SQl Server Registration'. Then you can mention the name of the remote server and connect either using Windows...

  • RE: Maint plan won''''t delete .trn logs as scheduled

    Yes. If the job script file contains the -DelBkUps parameter, then the .trn files should be deleted at the scheduled interval.

    However, if the job itself is failing, then...

Viewing 15 posts - 121 through 135 (of 162 total)