excuse me for posting again but this was one of the missing.
how can i shrink _log.ldf file? it is about 1,39 gb. thanks...You can always do a quick bodge ... shut down the database service (not machine!) delete the log and then start the service again.
If you can also use a maintainence script or stored procedure that will backup the database and then 'flush the log' file.|||i tried that but it did not create a new log file and the working programs halted. so i had to restore it from backup.
by the way where will i write the script? never mind, :) i understand nothing from sql server.|||Run
BACK TRAN DBNAME WITH NOLOG
AFTER THIS
USE DBNAME
DBCC SHRINKFILE(LOGFILENAME,TRUNCATEONLY)|||in the command prompt?|||Thats a Transact-SQL Reference.
nice one sqlserver2k .|||It would be BACKUP TRAN...|||yet i do not know what to do. could you please tell me step by step like telling to a dummy, eheh. i am just a student and the guys who are responsible from server are on vacation. thanks..|||Go to the Query Analyzer and
run the query,also make sure that you replace the DBNAME by your database name and Log file name with the name of the Log file of the database.|||This ONLY works for the TEMPDB log file. Be careful of the advice you give.
Originally posted by WingMan
You can always do a quick bodge ... shut down the database service (not machine!) delete the log and then start the service again.
If you can also use a maintainence script or stored procedure that will backup the database and then 'flush the log' file.|||Hi,
I replied for this some days back, but I dont know why the info. is missing here?
Here is the simple and Quick Solution. But the database will not be available for awhile.
Use detach and attachdb
1. First detach the database by using
Example : EXEC sp_detach_db 'pubs', 'true'
2. Delete the log file (or) To be safe ,Rename the log file to some name
3. Attach the database without log file.
EXEC sp_attach_db @.dbname = N'pubs',
@.filename1 = N'c:\Program Files\Microsoft SQL Server\MSSQL\Data\pubs.mdf',
@.filename2 = N'c:\Program Files\Microsoft SQL Server\MSSQL\Data\pubs_log.ldf'
Make sure the paths are correct.
When you attach without log file, the SQL Server will automatically create a log file with small in size , ithink it will be 1mb.
Try it . I will appreciate a response.
Have fun.
Varad01|||hi to all.
i opened the query analyzer and wrote the code:
BACK TRAN DBNAME WITH NOLOG
AFTER THIS
USE DBNAME
DBCC SHRINKFILE(LOGFILENAME,TRUNCATEONLY)
instead of dbname i wrote CariH. instead of logfilename, I wrote CariH_log, this is the big file. I got the following message: incorrect syntax near the keyword tran
friend varad01, in the announcement there is written why some posts are missing. and i did not tried your solution yet will i write this one also in the query analyzer?
thanks...Regards...|||Use the Dump tran DataBaseName with no_log ... This would do the trick for the query u asked ...|||Basically "Dump Tran" is a Command used in SQL Server 6.5 which is equivalent to "Backup Tran" in SQL Server 7.0 and 2000.
Dump Tran/Backup Tran with "NO_LOG" will clear the log file which must be used only at critical times if you dont worry about losing data.
Dump Tran/Backup Tran will not reduce the size of the log file, unless you have enabled "Auto Shrink" for the database. I can say in 2 steps the same thing, 1. Clear transactions in log files and then 2. Shrink the log file.Thats the concept involved on this.
Varad01|||Originally posted by cutcopypaste
excuse me for posting again but this was one of the missing.
how can i shrink _log.ldf file? it is about 1,39 gb. thanks...
Assuming that you are using SQL 2000, what may be happening is that the log file will not shrink unless the database is backed up. Microsofts new "feature" that makes you use the SQL backup.
The best way to keep the log file from ever becoming large is to create a backup device and then set a regularly scheduled backup for your database.
When we upgraded to SQL 2000 we had a similar problem on a database.
To setup a backup device:
Open Enterprise Manager, open Management
right click on backup and select new backup device
pick a name, then select Filename and select where you want the file stored then select ok.
Now that you have a backup device.
open databases
right click on your database, all tasks, backup database
select add...
Click on backup device, then select your device from the list, select ok
Select Database complete (or database differential if size is a concern and using this as an additional restore option is unimportant).
Select Overwrite existing media
click in the schedule checkbox then open the schedule screen
select recurring then setup how often you want this to occur. Keep in mind that this will overwrite your existing file, but sounds like this is not your primary backup.
"ok" out of everything and you should be set.
Brent|||Originally posted by cutcopypaste
excuse me for posting again but this was one of the missing.
how can i shrink _log.ldf file? it is about 1,39 gb. thanks...
Make sure you back up your dayabase before you start and immediaetl after you finish. Use the following procedure:
Using Enterprise manager:
RH click on database required.
1 All Tasks: Backup Database
2 All Tasks: Shrink Database
3 All Tasks: Truncate Log
4 All Tasks: Backup database.
This will shrink you transaction log to your pre defined optione.
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment