Viewing 15 posts - 121 through 135 (of 341 total)
>> 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...
July 8, 2010 at 11:01 pm
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...
July 8, 2010 at 2:23 am
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...
July 7, 2010 at 10:06 pm
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...
July 7, 2010 at 9:59 pm
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...
July 7, 2010 at 9:31 pm
>> 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...
July 7, 2010 at 8:26 pm
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...
July 7, 2010 at 1:34 pm
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...
July 7, 2010 at 12:34 pm
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...
July 2, 2010 at 7:18 pm
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...
July 2, 2010 at 7:11 pm
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...
July 2, 2010 at 8:15 am
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. ...
July 1, 2010 at 5:53 pm
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...
July 1, 2010 at 5:45 pm
>> 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...
June 20, 2010 at 1:54 am
Viewing 15 posts - 121 through 135 (of 341 total)