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

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

[resolved] ORA-00942: Table ou vue inexistante with tOracleInput

hi,
I'm trying to develop a job for updating a table in an Oracle database.
When I run that job I have this error "ORA-00942: Table ou vue inexistante" for my tOracleInput component
It seems that the table name is not valid.
If I change the query and put double quote to the table name it's work fine :
"select * from \"users\""
But I can't do this with a tOracleOutput
note : I have the same problem with column name
Who can I do to update this table without errors ?
Thank you
Labels (3)
1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

Thank you for your response
I just resolved my problem: the DB connection was good but the table was created like this :
CREATE
TABLE "REFERENTIAL"."users"
(
"lastName" NVARCHAR2(2000),
"username" NVARCHAR2(2000),
?
So I have to set the table name in tOracleinput with \"
And the same for column names in Db Column schema
Thank you for your help

View solution in original post

3 Replies
Anonymous
Not applicable
Author

Hi,
How do you set your DB connection? Do you follow the user guide?
Setting up a DB connection with four chapters General properties, Step A Connection, Table upload and Step A Schema definition.
Best regards
Sabrina
Anonymous
Not applicable
Author

Thank you for your response
I just resolved my problem: the DB connection was good but the table was created like this :
CREATE
TABLE "REFERENTIAL"."users"
(
"lastName" NVARCHAR2(2000),
"username" NVARCHAR2(2000),
?
So I have to set the table name in tOracleinput with \"
And the same for column names in Db Column schema
Thank you for your help
Anonymous
Not applicable
Author

Hi,
Thanks for sharing your experience with us! In addition, we have a component tCreateTable. Perhaps it will be useful for your working.
Best regards
Sabrina