
- Forum
- Database
- SQL Server
- SQL-server. How do I insert millions of...
SQL-server. How do I insert millions of...
This is a discussion on SQL-server. How do I insert millions of... within the SQL Server forums, part of the Database category; ...records - whithout adding data to the transaction log file?...
-
03-19-2007, 07:10 AM #1
- Join Date
- Mar 2007
- Answers
- 1
SQL-server. How do I insert millions of...
...records - whithout adding data to the transaction log file?
-
This is not exactly an answer but more of an additional question: Why in the world would you want to do that? The logs are there for troubleshooting, recovery, and rebuilding lost data.
-
03-19-2007, 10:10 AM #3
- Join Date
- Mar 2007
- Answers
- 1
there are "minimally logged" operations in sql server (SEE LIST BELOW), but no TOTALLY "non-logged" operations.*SELECT INTO*BULK COPY and Bulk Copy Program (BCP)*CREATE INDEX*TRUNCATE*Certain text operations (WRITETEXT and UPDATETEXT)The first two in the list above can be used to insert data into a table...
-
Sponsored Ads

Reply With Quote





