dudeNumber4
dudeNumber4

Reputation: 4727

Can't bulk insert file

I have a 5GB file that I need to bulk insert into a SQL Server database (2005 SP2). When I attempt to do so (using a format file that worked in the past for the same import file), I get the error:

The transaction log for database 'tempdb' is full. To find out why space in the log cannot be reused, see the log_reuse_wait_desc column in sys.databases

When I run the command

select log_reuse_wait_desc from sys.databases where [name] = 'MyDB'

I get "ACTIVE_TRANSACTION", but there are no open transactions.

Following are things I've tried to no avail:

Upvotes: 2

Views: 996

Answers (1)

Broken Link
Broken Link

Reputation: 2406

Increase the data-allocation size for Tempdb and try.

Upvotes: 1

Related Questions