Good morning.
I need to import a large amount of information into a table in a flat file .txt
and the information is separated by |
. Using the statement bulk..insert..with..etc
; it was not possible to import, because the data exceeds the size of rows:
Can not create a row of size 15817 which is greater than the maximum allowable row size of 8060. The statement has been terminated.).
It is possible to make a type of select
to the flat file, and the result is to import it into the table I want, since I do not really need all the columns that are in the file.
I appreciate your help, I have already searched a lot and I have not found how to do it.