Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
Please let me know if i used EXIST in qvd load then is it optimized or un optimized Load?
Regards,
vinod
If you use Where Exists at the end of the table load
Ex:-
Load
*
From source Where Exists(Fieldname)
Exists(FIELDNAME) in the WHERE clause will keep the LOAD optimized.
Exists(FIELDNAME, Expression) in the WHERE clause will make the LOAD unoptimized.
Thanks it's helpful.