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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
chetanpatel
Contributor III
Contributor III

How to use Qlik view ReloadTime() function for SQL function or script

want to use  qlick view ReloadTime()  in sql script

Labels (1)
1 Solution

Accepted Solutions
edwin
Master II
Master II

sorry for the typo:

... you have your conn here
...
load *, ReloadTime() as ReloadDt;
sql select .... from ....;  //this is your sql load



View solution in original post

2 Replies
edwin
Master II
Master II

reloadtime is a qlikview function.  if your intent is to add it to the table with your sql result try:

... you have your conn here
...
load *, ReloadTime() as ReloadDt;
sel select .... from ....;  //this is your sql load
edwin
Master II
Master II

sorry for the typo:

... you have your conn here
...
load *, ReloadTime() as ReloadDt;
sql select .... from ....;  //this is your sql load