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: 
talendtester
Creator III
Creator III

tOracleInput - Protocol violation - Cursor size limitation?

I have an Oracle database table with over 160M rows I want to dump to a delimited file.

 

When the tOracleInput advanced settings are set to Use cursor size 1,000,000 the jobs runs fine.

 

If I increase the cursor size to 1,500,000 or 2,000,000 the job fails with:

java.sql.SQLException: Protocol violation' error in tOracleInput component

 

 

1. Is the cursor size limited by a config on the Oracle database?

2. Is there a max cursor size limit expected by the tOracleInput  component?

Labels (4)
3 Replies
Anonymous
Not applicable

Hello,

Protocol violation itself is normally caused by the Oracle driver.

Can you please clarify in which Talend version/edition you are? Are you using ojdbc7 for Oracle 12C database?

Best regards

Sabrina

talendtester
Creator III
Creator III
Author

Using JDBC ( orai18n.jar )

 

Talend version: Version: 7.0.1

 

Oracle database

Oracle Database 12c Enterprise Edition Release 12.1.0.2.0 - 64bit Production
PL/SQL Release 12.1.0.2.0 - Production

Anonymous
Not applicable

looks like you *might* have found a bug in the oracle driver. according to their doc ( here: https://www.oracle.com/technetwork/database/enterprise-edition/jdbc-faq-090281.html#30_17 )

 

 

What does "Protocol Violation" mean?

The Thin driver throws this exception when it reads something from the RDBMS that it did not expect. 
This means that the protocol engine in the Thin driver and the protocol engine in the RDBMS are out of synch.
There is no way to recover from this error. The connection is dead. You should try to close it, but that will probably fail too. If you get a reproducible test case that generates this error, please file a TAR with Oracle Global Support.
Be sure to specify the exact version numbers of the JDBC driver and the RDBMS, including any patches.