Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

63
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 ...
5
votes
1answer
2k views

SQL Server Tempdb LOG file growing

On a SQL Server 2000 system, I have a templog.ldf file that seems to grow without bound! But when I check, there are never any open transaction in the tempdb (using DBCC OPENTRAN), nor do I ever use ...
4
votes
2answers
342 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
195 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
1answer
198 views

Don't quite understand SQL Server transaction logs

I've read up on SQL Server transaction logs, but still not entirely comfortable with how to use/manage them. I get that they are important for things like transaction rollbacks, mirroring, replication ...
3
votes
4answers
335 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
4answers
401 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 ...
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!
3
votes
1answer
889 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
1answer
374 views

Microsoft SQL Server 2008 Log analysis

I have a SQL Server 2008 database with a transaction log that grows very rapidly each day. Is anyone aware of any tool that could be used to analyze in greater detail what transactions that make up ...
2
votes
3answers
286 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
561 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
756 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
138 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
263 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
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
613 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
945 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 ...
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
2answers
92 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
96 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
235 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
133 views

Is there are a way to check the last time a shrink operation was done on a SQL Server 2000 transaction log

Title says it all really. I've got a database running on a clients SQL Server 2000 box where the transaction log file is only 1MB in size. This seems very perculiar. I can't find any Database ...
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
280 views

SQL Server: what is the virtual log file?

What is the Virtual Transaction Log file in SQL Server?
1
vote
3answers
792 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 ...
1
vote
1answer
82 views

Creating a table with volatile columns at first to reduce log size

I am not sure about this, but I think I read it before, and I would like to know if that is true or false: When creating tables, it is better to put volatile columns first and then the static ...
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
2answers
142 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
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
480 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
4answers
839 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 ...
1
vote
1answer
679 views

SQL - shrink database log file

I am trying to shrink my database log file. I have tried to run: USE databasename BACKUP log databasename WITH truncate_only DBCC shrinkfile (databasename_log, 1) I get the error message: Msg ...
1
vote
2answers
864 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
302 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
2answers
4k views

How do you read the Oracle transaction log

Instead of placing triggers on tables everywhere in an Oracle database, is there a Java API that I can use to read transactions off the Oracle transaction log? My purpose is to be able to detect ...
1
vote
5answers
2k views

MS-SQL 2000: Turn off logging during stored procedure

Here's my scenario: I have a simple stored procedure that removes a specific set of rows from a table (we'll say about 30k rows), and then inserts about the same amount of rows. This generally ...
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
58 views

Can't shrink my SQL Server 2008 Log files - 260GB currently [closed]

My database log files have grown to 260GB and I need to shrink them. I have tried numerous scripts such as: DBCC SHRINKFILE ('HM_Log', 0) As well as using the Shrink option in SQL Server Management ...
0
votes
0answers
27 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 ...
0
votes
2answers
61 views

view the changed values after an update statement

just wondering if it is possible to view the changes of an update command on a table after it has happened? would the transaction log store this kind of information i.e this is the previous/current ...
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
174 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
349 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
124 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
219 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 ...

1 2