Situation:
Right now I have several excel files that need to be populated to databases. Like usual, first I tried to import files using
import task
in SSMS, but it failed when I tried to edit the mapping and proceed to the next step. (Here I am guessing it is because of the size of excel that cannot process in the cache?), then I switch to using SSIS, but still, the excel connection manager does not allow me to preview or just finish connecting to the file. (after few minutes, it give me error says source does not exist?)
I tried to break the file into small size, it worked.
Here are my question :
what is the max number of rows that SSIS or SSMS could pre-load the file from excel?
Instead of breaking the big file into small piece (not sure what is the exact size I need to distribute each time), is there any other way to import big size excel file? Because it is kind of not doable when having lots of files.
Thanks