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

Script result nothing

Hello Guys,

I really didn't get why my script doesn't work.

here is he script :

ODBC CONNECT32 TO vv_vv;

NoConcatenate

F_temp:

select

Tel,

p.off as "offer"

from p_edw.sub_off o

left join p_edw.subs s on o.subs_id =s.subs_id

left join p_edw.offp on p.off_id = o.off_id

where (current_date -1 between valid_from and valid_to );

exit script;

the result is nothing :

Capture.PNG

any help please

Thanks

12 Replies
master_student
Creator III
Creator III
Author

green plume is a dbms and the p is fixed in my query

Peter_Cammaert
Partner - Champion III
Partner - Champion III

You mean Greenplum dbms? That dbms is PostgresSQL-based and therefor has a query tool called psql. You can test your queries by starting psql with the name of your database, and then running the same query by copy/pasting it at the command prompt.

master_student
Creator III
Creator III
Author

thanks but it doesn't solve the pb