When attempting to query a table with XMLTYPE as one of the column datatypes, the following error appears:
"Access violation at address 6053BE83 in module orageneric10.dll. read of address 00000008." or
"Access violation at address 148DF589 in module OraClient11.Dll. Read of address 00000008" or
"Access violation at address 000007FEDE9CC8BA in module 'oraclient12.dll'. Read of address 0000000000000010"
The data in the table is valid and also the error can occur, even if there is no data in the table.
In addition, version 12.9 can also hang, after the Access Violation, requiring Toad to be killed.
XMLTYPE is not supported in Toad 10 and upwards, due to the conflict with the OCI unicode flag. The error is coming from Oracle and is related to the OCI unicode flag. This is enabled by Toad for general unicode support but this also brings up the OCI's conflicts with XMLTYPE. The issue generally only occurs if the XMLTYPE column is stored as a binary and is not specific to the Oracle Client version used.
WORKAROUND 1:
Omit the XMLTYPE column on the select or use the getCLOBVal() function to view this column.
The select with the getCLOBVal() function would be like this:
select y.XMLTYPE_COLUMN.getCLOBVal() from EXAMPLE_TABLE y;
where EXAMPLE_TABLE is the table with the XMLTYPE column and XMLTYPE_COLUMN is the XMLTYPE column.
Note if there is a table with a lot of columns and you can't do 'select * from' because of getCLOBVal, then you can get the full 'select * from' query from the Schema Browser:
WORKAROUND 2:
Try running the query one or more times, the data may display after 3 query attempts. (This workaround does not apply version 12.9, as Toad hangs after the access violation
STATUS:
This issue has been fixed in Toad Data Point 13.2. This version can be downloaded from the downloads section of our website, which you can access by clicking here.
** Note: This change request is for handling the access violation and subsequent hanging. This will not be for the underlying issue, which is an Oracle issue.
© 2025 Quest Software Inc. ALL RIGHTS RESERVED. Terms of Use Privacy Cookie Preference Center