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

Announcements
Discover how organizations are unlocking new revenue streams: Watch here
cancel
Showing results for 
Search instead for 
Did you mean: 
rajesh90
Contributor
Contributor

Oracle Insert Using tOracleRow

Team, I'm using the below insert query to insert data into a table. But I'm getting syntax error not sure what I'm missing here, "insert into employee (emp_id,dept_id,emp_nm,emp_address,insert_date) values(@EMP_ID,(select max(dept_id) + 1 as dept_id from department),@EMP_NM,NULL,to_char(sysdate(),”DD-MM-YYYY”))” Getting error as “tOraclerow - ORA-00936 missing expression” Please help on this issue.
Labels (2)
2 Replies
TRF
Champion II
Champion II

Protection double quotes (") by "\" in the request.
Where defined the @variables?
rajesh90
Contributor
Contributor
Author

Can you be more elaborate ? Basically i'm getting the columns in the flow till the tOracelrow component, I need to know what is the coding or procedure on how to access the same in the query written inside the tOraclerow component?