Jun 3, 2005 #1 dBjason Programmer Mar 25, 2005 355 US SQL Server 7 I have 3 tab-delimited text files that I need to somehow suck into a new table in SQL Server. How can I do this? Thanks, Jason
SQL Server 7 I have 3 tab-delimited text files that I need to somehow suck into a new table in SQL Server. How can I do this? Thanks, Jason
Jun 3, 2005 #2 mrdenny Programmer May 27, 2002 11,595 You have several options. Ordered by Ease of use. Import Wizzard DTS Bulk Insert BCP To use the Import Wizzard in Enterprise Manager, right click on the database select All Tasks, Import Data. Then follow the wizzard. DTS (same idea put you do it manually). For Bulk Insert and BCP check Books OnLine for the syntax. Denny MCSA (2003) / MCDBA (SQL 2000) --Anything is possible. All it takes is a little research. (Me) http://www.mrdenny.com (Not quite so old any more.) Upvote 0 Downvote
You have several options. Ordered by Ease of use. Import Wizzard DTS Bulk Insert BCP To use the Import Wizzard in Enterprise Manager, right click on the database select All Tasks, Import Data. Then follow the wizzard. DTS (same idea put you do it manually). For Bulk Insert and BCP check Books OnLine for the syntax. Denny MCSA (2003) / MCDBA (SQL 2000) --Anything is possible. All it takes is a little research. (Me) http://www.mrdenny.com (Not quite so old any more.)
Jun 3, 2005 #4 JayKusch MIS Oct 30, 2001 3,199 US For Speed I would use Bulk Insert! Thanks J. Kusch Upvote 0 Downvote