Tagged Questions

4
votes
2answers
407 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: ...
4
votes
1answer
209 views

Recovering transaction log from corrupt SQL database

We have a database that is backed up weekly in simple mode. Yesterday, we had a crc error corrupt the mdf file and we were unable to save it. I restored the backup from last week, but now we have a ...
3
votes
4answers
419 views

Log SQL queries in production?

I'm having a dilemma on whether or not to log SQL queries in production as well. I don't know how slow writing files is in PHP. Probably some benchmarks could give some answers, but I wanted to see ...
2
votes
1answer
840 views

SQL Server: how to query when the last transaction log backup has been taken?

I would like to query for all databases (in SQL Server 2008 instance) date when the last transaction log backup has been taken. How to do that? I know that this information is somewhere, but I don't ...
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
2answers
4k views

View all transaction logs in SQL Server 2008

The problem is this: t0: Insert is made into my database t1: Delete is executed t2: Full backup is made t3: Transaction log backup is made How can i recover the deleted record after t3 (which is ...
2
votes
2answers
619 views

Audit whether stored proc was executed - in the transaction logs

We have SQL Server 2005 database with full backup and transaction logs. We have a problem with the database - and need the SQL CSI Forensic team to help. Is there a way to look at the transaction ...
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
1
vote
1answer
108 views

Performance for RBAR vs. set-based processing with varying transactional sizes

It is conventional wisdom that set based processing of tables should always be preferred over RBAR - especially when the tables grow larger and/or you need to update many rows. But does that always ...
1
vote
2answers
7k views

SQL Job having issues with transaction log

I have a SQL job that simply executes a stored procedure. Each morning when the job attempts to run, I get the following error: The current transaction cannot be committed and cannot support ...
0
votes
0answers
33 views

SQL Marked Transaction Log Confusion

I'm struggling to build a SQL DB sample where I restore a marked transaction log. What I did After ensuring that the DB is really in full recovery mode, I made a full backup, and then a transaction ...