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

Announcements
Qlik Connect 2026 Agenda Now Available: Explore Sessions
cancel
Showing results for 
Search instead for 
Did you mean: 
numensrl_it
Contributor
Contributor

Oracle OLE DB: Charset and FetchSize Configuration Issues

Hi,

one of our data sources is an Oracle database. We created an OLE DB data connection to run SELECT queries; however, we encountered some issues:

  1. When we use a simple connection string, for example:
    OLEDB CONNECT TO [Provider=OraOLEDB.Oracle;Data Source=mydatasource;]
    the connection works correctly and we do not experience any charset issues, but data extraction is very slow.

  2. When we add the FetchSize parameter to improve data extraction performance, for example:
    OLEDB CONNECT TO [Provider=OraOLEDB.Oracle;FetchSize=200000;Data Source=mydatasource;]
    the connection becomes significantly faster, but we encounter charset issues and had to force to cast NCHAR fields to NUMBER: (CAST(Cd_Campo as Number(12)) as Cd_Campo

  3. We attempted to explicitly force the charset in the OLE DB connection, for example:
    OLEDB CONNECT TO [Provider=OraOLEDB.Oracle;FetchSize=200000;Extended Properties="CharacterSet=UTF8";Data Source=mydatasource;]
    but this did not resolve the issue.

Labels (1)
0 Replies