Link to home
Start Free TrialLog in
Avatar of team2005
team2005

asked on

Log file is full ?

Hi!

When i call a stored procedure, that import a txtfile i get this error message:
[Error Code: 9002, SQL State: S1000]  The transaction log for database 'Vectura' is full. To find out why space in the log cannot be reused, see the log_reuse_wait_desc column in sys.databases

How can i solve this ?
Avatar of Guy Hengel [angelIII / a3]
Guy Hengel [angelIII / a3]
Flag of Luxembourg image

to solve:
do a full backup of the database
implement a regular full AND a even more regular transaction log backups.

if you would not care about being able to recover to a point in time, and you would be happy with only full backups, you also could change your database to be indeed overwrite the transaction log file contents as it goes.
Avatar of team2005
team2005

ASKER

Hi!

How do i remove this error ?

if you would not care about being able to recover to a point in time, and you would be happy with only full backups, you also could change your database to be indeed overwrite the transaction log file contents as it goes.

HOW ?
SOLUTION
Avatar of Guy Hengel [angelIII / a3]
Guy Hengel [angelIII / a3]
Flag of Luxembourg image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thanks