Is there any tool which can read a text file and insert the records that separated by tab characters in the file to a sql server table.
i can do that by developing a small c# application but i wonder if there is already a tool doing that.
Is there any tool which can read a text file and insert the records
Share
You can use bulk insert:
Have a look at this SO post: Import .txt file to SQL Server 2008
and
SQL SERVER – Import CSV File Into SQL Server Using Bulk Insert – Load Comma Delimited File Into SQL Server
Best Regards