Hello, Team.
I have a table with a XMLType column.
I am just executing , using Toad 13.1.0.78, select * from schema1.table and I got the error:
Access violation at address 00007FFBA7ED53EE in module 'oraclient18.dll'. Read of address 0000000000000010
Thanks in advanced.
Regards,
In Toad version 13.3 that will work.
In 13.1, here are some workarounds:
- use this "SQL" instead:
edit tablename
- use this SQL instead:
select rowid, x.nonxmlcolumn, x.xmlcolumn.getclobval() as xmlcolumn from tablename x
- Hit F4 on tablename and go to data tab.
Thanks for your great help, John.
So, I will upgrade to 13.3 version.