I've got a txt file with thousands of words separated by a ";", but it could change for another special character in the future.
How can I use that txt file as input into an SQL query so I create a mass insert?, is it possible?.
I've got a txt file with thousands of words separated by a ";", but it could change for another special character in the future.
How can I use that txt file as input into an SQL query so I create a mass insert?, is it possible?.
Since a txt file with values seperated by a ';' or other delimiter is pretty much a csv file this seems to be a duplicate of Generate Insert SQL statements from a csv file
You can use SSIS. In SSIS you have source text file component with separator character definition. Also by SSIS you can convert your file in SQL Server, Oracle, Access, Excel, etc.