Viewing 15 posts - 12,046 through 12,060 (of 49,562 total)
You began the transaction 600 times (GO 600), hence you need 600 commits to actually commit that transaction. Or one rollback to undo it.
May I suggest...
BEGIN TRANSACTION
GO
INSERT INTO t1 DEFAULT...
August 19, 2013 at 11:38 am
GilaMonster (8/19/2013)
What's in the SQL Server error log?
August 19, 2013 at 7:25 am
Have you considered backing up to disk and moving the backup to tape later?
August 19, 2013 at 6:30 am
dr.blowfin (8/19/2013)
August 19, 2013 at 6:30 am
From Object Explorer, Management -> SQL Server logs. You can't turn off error logging.
August 19, 2013 at 6:19 am
You need to restore the full backup, all the log backups taken after the full backup ending with the one that contains the deletion (that's why the STOPAT clause)
You're trying...
August 19, 2013 at 4:46 am
OnlyOneRJ (8/19/2013)
2) trying to attach log file to it in standby mode.. it gives error :w00t:
RESTORE LOG <database name> FROM DISK = <log backup location> WITH STANDBY = <standby file...
August 19, 2013 at 4:23 am
Unless you're in full recovery model and haven't taken a log backup since the delete, the log records describing that change will likey have been removed from the log (marked...
August 18, 2013 at 11:38 am
It depends.
Do you need to read the secondary? For example, offloading reports. If so, standby. If not, no recovery.
It's got nothing to do with what other people do. It's just...
August 18, 2013 at 7:53 am
Please don't cross post. It just wastes people's time and fragments replies.
No replies to this thread please. Direct replies to http://www.sqlservercentral.com/Forums/Topic1485549-391-1.aspx
August 18, 2013 at 2:13 am
If you have some form of auditing set up, then it depends on exactly what you're using to audit and how it's configured. If you don't have any auditing set...
August 18, 2013 at 2:03 am
Why are you shrinking a file that's already too small for the workload? Surely if the file's getting full all the time you'd want to make it larger, not smaller?
August 17, 2013 at 2:44 pm
Viewing 15 posts - 12,046 through 12,060 (of 49,562 total)