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: 
Anonymous
Not applicable

tOracleOutput_1 - ORA-00928: missing SELECT keyword

Hi 

We are getting below error in toracleoutput component when we are trying to read data from cdv file and inserting data in NESTED table.

 

ORA-00928: missing SELECT keyword
[ERROR]: artemis_dev.test3_0_1.Test3 - tOracleOutput_1 - ORA-00928: missing SELECT keyword

 

Please suggest.

 

Regards,

Vivek

Labels (2)
5 Replies
Anonymous
Not applicable
Author

This error seems to be related to creating views which is strange given what you have described. Can you give us a screenshot of your job and the configuration of your Oracle Output component (basic and advanced)? The other thing to try as a test, is to see if you can use the tOracleRow to do this insert. You will likely need to prepare the insert in a tJava type component first.

Anonymous
Not applicable
Author

I am giving "NT_PP1,table (ob_pp1)"  in table name feild in toracleoutout component ,now getting below error.

 

ORA-00926: missing VALUES keyword
[ERROR]: artemis_dev.test3_0_1.Test3 - tOracleOutput_1 - ORA-00926: missing VALUES keyword

 

 

Regards,

Vivek

Anonymous
Not applicable
Author

I suspect that this component is not compatible with nested tables. I will investigate this. Have you tried using the tOracleRow to get around this?

akumar2301
Specialist II
Specialist II

Nested table works with tOracleRow as suggested here. 

 

Prepare your statement like 

"INSERT INTO nested_table VALUES (" + row1.id + ", sub_table(" + row1.subtablecol + "))"

 

for input like 

5; 'A'
6; 'B', 'C'

 

you can use prepared statement as suggested.

 

Anonymous
Not applicable
Author

Hi,

 

Is there any other way to insert data into nested table.I am reading data from different csv files with dynamic data type.Each csv file data need to insert into different nested table.

Thus looking for more Suitable solution.

 

Regards,

Vivek