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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
master_student
Creator III
Creator III

no rows as a result

Hello Guys,

I need your help.

I have sql query that runs on green plum (SGBD) but whene i put in in qlikview the script execution finich without returning any rows.

please see the screen bellow :

here's the query :

select

SUBSTR(s.telephone_number, 4, 😎 as "Concern. MSISDN",

p.offer_name as "offer"

from p_xx_offer o

left join p_edxxriber s on o.subscriber_id =s.subscriber_id

left join p_edxxffer p on p.offer_id = o.offer_id

;

Capture.PNG

whene i add limit in the query it runs in qlik view

any idea on how to solve this issue please. I really need your guide

Thanks

19 Replies
master_student
Creator III
Creator III
Author

i dont post the second conncetion, I use oracle

Anonymous
Not applicable

Does the sql statement work, when using another tool instead of QlikView.

...for example Oracle SQL Developer?

Anil_Babu_Samineni

I am not sure. But, It may not the issue to get reload and fetch the DB. You may wrong connection or those are not existing. Can you test connection whether it is succeed nor not

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
master_student
Creator III
Creator III
Author

the query work on green plum

master_student
Creator III
Creator III
Author

the connection works well

Anonymous
Not applicable

I never used green plum.

Does it also use an ODBC Connection?

master_student
Creator III
Creator III
Author

yes

Anonymous
Not applicable

Did you try to create a view where all joins are done an then load the data from the view?

master_student
Creator III
Creator III
Author

how? i think it's problem of number of rows because whene i limit the number of rows to 1000 for example it works, perhaps the solution is to increase the amount of RAM on the server ?

Thanks

Anonymous
Not applicable

If you created a view at the oracle server, then you could just read the fields with a relatively simple select statement and then be sure, that it is no syntax problem.

Select A, B, C, D , E  from YourView...