Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
We have 4 tables named A1,A2,A3 and A4 , here all 4 tables having same data then How we load all 4 tables in a single load statement. If its possible or any one know please help me out.
Thanks in advance
Debabrata
Just use wildcard in your load statement as follows:
TableName:
Load A, B, C, D FROM A*.XLSX;
Just use wildcard in your load statement as follows:
TableName:
Load A, B, C, D FROM A*.XLSX;
Are all the tables in the same workbook on different sheets or are they all independent files?
It really does work 🙂
This is my load script, it loads three files called a1.xlsx, a2.xlsx and a3.xlsx
LOAD A, B
FROM [Z:\a*.xlsx] (ooxml, no labels, table is Sheet1);
Yes its working on multiple excel file.
if A1,A2,A3 and A4 will different sheet of one excel file then what we have to do.