![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
Is it possible to import from SQL Server or text file, to version 7, and turn off transaction logging? I'm failing for full tlog due to no drive space. |
#3
| |||
| |||
|
|
Hi M D, "M D" wrote: Is it possible to import from SQL Server or text file, to version 7, and turn off transaction logging? I'm failing for full tlog due to no drive space. you never can stop logging, but if you change the logging of the DB to Bulk-Logged, then you can run bulk loads with minimal logging. Then you can use bcp.exe or the bulk insert or the corresponding DTS task, to import data with minimal logging. See BOL for a description of "BULK_LOGGED RECOVERY" to understand the features and drawbacks. Helge |
#4
| |||
| |||
|
|
Helge Because the DB is SQL Server 7 did you mean to specify these options select into/bulkcopy and trunc. log on chkpt. Recovery models came in for SQL Server 2000 IIRC. |
|
"Helge C. Rutz" wrote: Hi M D, "M D" wrote: Is it possible to import from SQL Server or text file, to version 7, and turn off transaction logging? I'm failing for full tlog due to no drive space. you never can stop logging, but if you change the logging of the DB to Bulk-Logged, then you can run bulk loads with minimal logging. Then you can use bcp.exe or the bulk insert or the corresponding DTS task, to import data with minimal logging. See BOL for a description of "BULK_LOGGED RECOVERY" to understand the features and drawbacks. |
![]() |
| Thread Tools | |
| Display Modes | |
| |