Forum Replies Created

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

  • RE: Transaction log restore with Standby Mode

    >> My question is why same size of t-log restore is taking different timings ?

    Good question. Taking your best case scenario, 7 GB in 34 minutes, that works...

  • RE: problem getting rid of a log file

    Amit, I think you should qualify your suggestions by stating that they are only applicable if the transaction log is not critical to the user. You really shouldn't be...

  • RE: Take database backup if it is not there.

    You could use the backup history tables for reference. The example below will list down all database which have not had a full backup taken in the last 24...

  • RE: Restore with stopat

    That is not possible. Restoring the transaction logs will always put the database in the state it was in at the end of that backup, or if using the...

  • RE: Restore with stopat

    After you restored from 'F:\MSSQL\BACKUP\my_test_log_02' with the STOPAT option, subsequent trx log restores need to start off from the same file i.e. restore 'F:\MSSQL\BACKUP\my_test_log_02' first without the STOPAT value, then...

  • RE: problem getting rid of a log file

    >> run back up log, dbcc shrinkfile emptyfile and alter database and it still won't remove the log, shrink it or whatever due to some data in there...

  • RE: Restore with stopat

    CREATE DATABASE TheForce

    GO

    USE TheForce

    GO

    BACKUP DATABASE TheForce TO DISK = 'c:\TheForce_full.bak' WITH FORMAT

    CREATE TABLE episodes (col1 int)

    DECLARE @starttime DATETIME

    SET @starttime = GETDATE()

    INSERT INTO episodes VALUES (4)

    WAITFOR DELAY '00:00:01'

    INSERT INTO episodes VALUES...

  • RE: Restore with stopat

    If your first STOPAT recovery was used with the STANDBY or NORECOVERY (which doesn't make much sense) options, you can restore subsequent transaction logs. You do need to start...

  • RE: Shrink Log File

    Being a development box, I can imagine the sort of things that gets thrown at it 🙂

    See the following links on how to find out how much of the transaction...

  • RE: Log Backup Failed.

    If the reasons Jeff mentioned were the cause of your issue, you can find out when those actions were performed by checking the SQL Server log. Recovery model changes...

  • RE: SQL Server 2005 Standby Database Backup?

    Just tried it, it isn't possible to back up a database that's in standby mode using the COPY_ONLY option. Given your situation, looks like you're already doing the only...

  • RE: Restore without having a backup

    Gail's probably won the bet as regards to your database's recovery model. If so, don't do anything else that would overwrite what's already in the active transaction log. ...

  • RE: SQL Server 2005 backup file

    laddu4700 (7/1/2010)


    How to mask the imp data on production database backup file

    I take it that your concern lies with the fact that you can simply open a SQL Server backup...

  • RE: Log truncation

    See this link on log truncation and shrinking.

  • RE: log sequence number (LSN) in REDO phase.

    >> How can the page LSN be greater than log LSN ?since the log LSN for that page should be equal

    One possibility may be when you restore individual pages...

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