Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
plz tell me know about the load Inline
Hi,
I am using In line load to optimise application which helps to select required data just like we used where clause.
e.g.
A:
LOAD * Inline
[
status
IF];
Left Join
LOAD Data,
status
FROM
(ooxml, embedded labels, table is Sheet1);
You also can use inline load to load the data directly into application just like given below...
e.g.
B:
LOAD * Inline
[
Numbers
1
2
3
4
];
This may help you..