Skip to main content
Announcements
YOUR OPINION MATTERS! Please take the Qlik Experience survey you received via email. Survey ends June 14.
cancel
Showing results for 
Search instead for 
Did you mean: 
bsbernabe
Creator
Creator

QSL oracle to Qlikview

Hello There,

I had another concern loading data to Qlikview, but before I create a query using at Oracle SQL  then now I need to do this in Qlikview.

Below is script created at SLQ Oracle

select to_char(Rdtl_sale_RPT(A.AGREEID,'L'),999999990.99) "PN ",
to_char(Rdtl_sale_RPT(A.AGREEID,'P'),999999990.99) "Total",
C.CUSTOMERNAME "BP Name"
from LBS_AGREE_DTL A.
CUSTOMER_M C

Any suggestions will be much appreciated!

Best Regards,

Bing

 

 

Labels (1)
1 Solution

Accepted Solutions
Arthur_Fong
Partner - Specialist III
Partner - Specialist III

Shouldn't be a problem if you have ODBC connection up.

https://help.qlik.com/en-US/connectors/Subsystems/ODBC_connector_help/Content/Connectors_ODBC/Oracle...

 

Script:

load *;

select to_char(Rdtl_sale_RPT(A.AGREEID,'L'),999999990.99) "PN ",
to_char(Rdtl_sale_RPT(A.AGREEID,'P'),999999990.99) "Total",
C.CUSTOMERNAME "BP Name"
from LBS_AGREE_DTL A.
CUSTOMER_M C

View solution in original post

1 Reply
Arthur_Fong
Partner - Specialist III
Partner - Specialist III

Shouldn't be a problem if you have ODBC connection up.

https://help.qlik.com/en-US/connectors/Subsystems/ODBC_connector_help/Content/Connectors_ODBC/Oracle...

 

Script:

load *;

select to_char(Rdtl_sale_RPT(A.AGREEID,'L'),999999990.99) "PN ",
to_char(Rdtl_sale_RPT(A.AGREEID,'P'),999999990.99) "Total",
C.CUSTOMERNAME "BP Name"
from LBS_AGREE_DTL A.
CUSTOMER_M C