Tagged Questions

65
votes
20answers
140k 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 ...
3
votes
4answers
339 views

Does the transaction log drive need to be as fast as the database drive?

We are telling our client to put a SQL Server database file (mdf), on a different physical drive than the transaction log file (ldf). The tech company (hired by our client) wanted to put the ...
3
votes
1answer
69 views

SQL Server - What's in that log backup?

So I noticed that one of my log backups is about 1000x larger than normal. I'd like to see what is in there. Is there something I can use to read it? Thanks!
2
votes
3answers
294 views

Finding what is writing to the Transaction Log in SQL Server?

Is there a way to see what is writing to the transaction log? I have a log file that has grown 15 Gigs in the last 20 minutes. Is there a way for me to track down what is causing this?
2
votes
2answers
568 views

Rollback a delete operation using transaction logs

Need to roll back a delete operation from the transaction logs in sql server 2008 but unsure how to do this. Can anyone give me a point in the right direction for the correct syntax for this ...
2
votes
1answer
764 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
4answers
849 views

DBCC shrinkfile gives error

I am trying to shrink my log file using DBCC SHRINKFILE(db_2.ldf), which is the name for log file It gives me error every time: 8985, Level 16, State 1, Line 1 Could not locate file 'FIelD' for ...
2
votes
2answers
614 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
947 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
6answers
10k views

How Can I Manage SQL Server Log Size

I'm trying to manage the size of a SQL Server 2008 log file. I have a reporting database that is loaded once a day. The Simple recovery model is the best fit as there are no transactions other than ...
1
vote
2answers
102 views

Restore SQL Server DB without transaction log

Is there any way, given a SQL Server 2008 .bak file, to restore a database from the .bak file without the transaction log? The reason I'm asking is that the transaction log file size of this ...
1
vote
1answer
98 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
1answer
236 views

Are ad-hoc read-only queries stored in SQL Server transaction log?

In SQL Server 2008 with the database recovery model configured to full, are queries such as select col1,col2,col3 from TableName logged to the transaction log files. In other words, can I ...
1
vote
1answer
2k views

How to view transaction logs in sql server 2008

I need to view the transaction logs of a database on sql server 2008 in order to find a delete transaction and hopefully roll it back. Unfortunately I have no clue where to start, and I'm finding it ...
1
vote
1answer
283 views

SQL Server: what is the virtual log file?

What is the Virtual Transaction Log file in SQL Server?
1
vote
2answers
298 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
3answers
1k views

SQL Server 2008 log file size is large and growing quickly

Most of the time users will hit the database to read news. There are very few number of queries executed under transactions. 95% of the database hits would be for read-only purposes. My database log ...
1
vote
2answers
483 views

Sql Server: chunking deletes still fills up transaction log; on fail all deletes are rolled back - why?

Here is my scenario: we have a database, let's call it Logging, with a table that holds records from Log4Net (via MSMQ). The db's recovery mode is set to Simple: we don't care about the transaction ...
1
vote
2answers
870 views

TSQL: How do I get the size of the transaction log?

How do I get the current size of the transaction log? How do I get the size limit? I'd like to monitor this so I can determine how often I need to backup the transaction log. I usually have a ...
1
vote
2answers
303 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) ...
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 ...
1
vote
3answers
3k views

SQL Server: How do I increase the size of the transaction log?

How do I increase the size of the transaction log? Is is also possible to temporarily increase the transaction log? Let's say I have the following scenario. I have a Delete operation that's too big ...
1
vote
7answers
3k views

Microsoft SQL Server - What does it mean that a Transaction Log is Full?

What does it mean that a Transaction Log is Full? I have it the file set to grow 20% when needed. I have 4GBs left on the drive. How do I solve this issue permanently? Running these commands solves ...
0
votes
1answer
61 views

Is it possible to find out the last backup location used for a transaction log file in SQL 2005 or higher

We have a product which uses a database and whenever a major release is done one of the upgrade scripts used on the database calls one of our stored procedures whose job is to drop and then recreate ...
0
votes
2answers
178 views

Methods of Reading SQL Server Transaction Log

I want to discuss about the Transaction Log of SQL Server, and I searched around, found some product which is accomplished, for example, Lumigent Log Explorer. But I am still interested about it. ...
0
votes
1answer
363 views

DBCC SHRINKFILE on log file not reducing size even after BACKUP LOG TO DISK

I've got a database, [My DB], that has the following info: SQL Server 2008 MDF size: 30 GB LDF size: 67 GB I wanted to shrink the log file as much as possible and so I started my quest to figure ...
0
votes
1answer
126 views

Transaction log shipping together with backup job = conflict?

There is already a backup job plan that runs every 15 minutes. I created transaction log shipping process but after 1 or two restored logs this job stops working (error: it can't find matching log). ...
0
votes
4answers
220 views

Can a large transaction log cause cpu hikes to occur

I have a client with a very large database on Sql Server 2005. The total space allocated to the db is 15Gb with roughly 5Gb to the db and 10 Gb to the transaction log. Just recently a web application ...
0
votes
2answers
212 views

SQL Server 2008 Transaction Log: Date/Time

Need to roll back a delete query, so I'm sifting through the transaction logs without really knowing what the meanings of most of the headers are. TO ME, it looks like Current LSN, and possibly ...
0
votes
1answer
135 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
5answers
611 views

Cannot shrink transaction log,no matter what I do

I have a database whose tlog has grown to 4.5 GB. The db is in full recovery mode and I have tried several transaction log backups coupled with DBCC shrinkfile. And it will not shrink. Does anyone ...
0
votes
3answers
215 views

SQL Server full log issue — how to update the database?

I am working with SQL Server 2000, and trying to change the data type of a field from varchar to nvarchar, so that it can handle international characters. However, there is already a lot of data in ...
0
votes
5answers
433 views

Why SQL Server seems to be so attached to transaction logs

OK, here is goes. I’m not a database guru or admin. In fact, besides some occasional index / query tuning, I don’t poke around too often in databases. One of the things which often eludes me is the ...
0
votes
2answers
1k views

How to get the logical name of the transaction log in SQL Server 2005

I am trying to write a T-SQL routine that shrink the transaction log file using DBCC SHRINKFILE based on the logical name of the database. The DB_NAME() function gives you the logical name of the ...
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 ...