Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
kond.mohan
Posting Yak Master
213 Posts |
Posted - 2012-11-06 : 03:46:14
|
Dear all,i have created ssis package to load the data from orcle to Sqlse server throuh SQL AGENT JOB on daily basis .job execution will take more than 4 hrs(LOADING AND CREATING INDEXES ...)today job execution we got this error The transaction log for database 'mydabase(nottempdb)' is full. To find out why space in the log cannot be reused, see the log_reuse_wait_desc column in sys.databases".i think this database shrinking Related issue.my database large databasehow to resolve the issue anybody know explaing me |
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2012-11-06 : 12:23:18
|
its your database log getting full. I think you're doing some high volume trsnsactions in your package. See if you can split high volume transaction into batches so that it doesnt fill up log space. See if you can filter down the data and reduce it to small working set which you're really interested in!Also check with DBA if server volume having logfiles have sufficient space for log to grow.------------------------------------------------------------------------------------------------------SQL Server MVPhttp://visakhm.blogspot.com/ |
|
|
|
|
|