Tagged Questions
67
votes
20answers
145k views
How do you clear the transaction log in a SQL Server 2005 database?
I'm not a SQL expert, and I'm reminded of the fact every time I need to do something beyond the basics. I have a test database that is not large in size, but the transaction log definitely is. How do ...
4
votes
2answers
410 views
How can I delete expired data from a huge table without having the log file grow out of control?
I have a huge table (3 billion rows), which unfortunately contains mostly expired data. I want to simply delete all of these expired rows, and keep the rest.
I can execute a statement like this:
...
3
votes
1answer
920 views
SQL Server 2005 Transaction Log too big
I am running SQL Server 2005.
My db backup scheme is:
Recovery model: FULL
Backup Type: Full
Backup component: Database
Backup set will expire: after 0 days
Overwrite media: Back up to the existing ...
2
votes
3answers
907 views
How do I undo an update statement I made to a database
It's a test environment, I needed some data to test an Update query, but accidentally updated a column in all rows to have wrong data. Must I use a backup to restore the data back to the previous ...
2
votes
1answer
144 views
SQL Server 2005 - How to find out what transaction log files have been restored
How can you find out what transaction log backup files have been restored using SQL in SQL Server 2005?
2
votes
1answer
281 views
SQL Server 2005 transaction log is always too big
I've read other posts and have done hours of research but am still none the wiser.
I have a database that is 65 gig in the data file, and currently 230 gig in the log file. I'm trying to redesign the ...
2
votes
3answers
965 views
SQL Server database backup plan and log truncation
I have a SQL Server 2005 database that is backed up nightly. There backup consists of:
1 FULL backup of the database.
1 backup of the transaction log.
These are currently two separate jobs.
The log ...
2
votes
3answers
2k views
How to truncate and shrink log files?
How to truncate and shrink large log files in SQL Server 2005? How to apply truncation at regular intervals?
Is there any difference between truncation and shrinking?
Thanks in advance
2
votes
3answers
5k views
How to undo a delete operation in SQL Server 2005?
Our Test DB is suddenly missing rows. We want them back.
Is there a way to sift through everything that has happened to the database today? Each SQL statement? I presume this kind of stuff is in the ...
1
vote
1answer
305 views
1
vote
2answers
308 views
Log Chains and SQL Server Transaction Log - sanity check
I'm helping with a rather ad-hoc disaster recovery, and we've restored a database backup from a few weeks ago and then restored transactions from a transaction log backup.
We did this using SQL ...
1
vote
2answers
145 views
SQL Server 2005 failed backup effect on transaction logs
I have an SQL Server 2005 instance whose full backup (.BAK) failed due to low disk space. However half hourly transaction log backups continue (.TRN). Assuming I have an older full backup, could ...
1
vote
2answers
309 views
SQL Server 2005 Transaction Log Entry : LOP_Format_Page
I am investigating an issue relating to a large log expansion during an ETL process, even though the database is set in bulk logged mode (and it is not running in psuedo simple but truely bulk logged)
...
0
votes
1answer
679 views
How can I view SQL Server 2005 Transaction log file
How can I view the SQL Server Transaction Log File (.trn)?
I'd like to be able to look inside the trn file at the individual transactions. Some records were deleted from a database and I need to know ...
0
votes
2answers
148 views
Is transaction log shipping affected by long running redgate script
I have a long running redgate script that is applying a bunch of schema type changes to a database. It is going to take 3 hours to run. This script will be run on a production database that has ...
0
votes
3answers
383 views
Update query on millions of rows fills the transaction log
I need to update millions of rows as part of my next release, but doing so fills the transaction log and fails. I have a few ideas but I'm not a SQL expert so I'm sure there will be gotchas that I'm ...
0
votes
1answer
141 views
How does SSMS get the transaction log usage?
When you right-click on database, Reports...Disk Usage, I get a report. Because I have limited permissions, I only get the top portion, which shows "Transaction Log Space Usage" - that number alone ...
0
votes
0answers
462 views
SQL Server 2005 No Space for Transaction Log Backup [closed]
Possible Duplicate:
SQL Server 2005 Transaction Log too big
I am running SQL Server 2005.
My db backup scheme is:
Recovery model: FULL
Backup Type: Full
Backup component: Database
Backup set ...
0
votes
1answer
505 views
Why is my SQL Server 2005 transaction log not growing/updating?
I have SQL Server 2005 Database where the transaction log has not updated in a week. The transaction log has recently been truncated due to a situation that used up all available disk space. I have a ...
0
votes
8answers
5k views
Shrinking the transaction log of a mirrored SQL Server 2005 database
I've been looking all over the internet and I can't find an acceptable solution to my problem, I'm wondering if there even is a solution without a compromise...
I'm not a DBA, but I'm a one man team ...