Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Zurich on Sept 24th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Joining Oracle and Excel data source

Hi,

I am trying to join an Oracle data source and an excel data source. How can I do this in QlikView script?

By 'join' I mean combining columns from the two data sources based on a common key column.

Any help will be greatly appreciated.

Thank you,

Viral Mehta

1 Reply
Anonymous
Not applicable
Author

Hi Viral,

Yes, it is joining...  If the primary source is Oracle, and Excel is for adding columns:

CONNECT... // connect string for Oracle

Data:
SQL SELECT
Key,
A,
B,
...
FROM MyOracleTable;

//

LEFT JOIN (Data) LOAD
Key,
X,
Y
FROM <whatever your wizard will built here for Excel>

Regards,
Michael