Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
The following error happens when sending an insert statement to Oracle database.
Error: QVX_UNEXPECTED_END_OF_DATA: Unable to get column information for the fields that are used in the query:
Object reference not set to an instance of an object.
It happens only in the central node server but not in Rim node.
What can be the reason?Can anyone help in this?
I have the same issue trying to execute a procedure.
How did you solve the problem?
Vegar
Before I update to Feb/2019 version my script was working well.
I'm just calling a procedure to execute. Loot to my script
LIB CONNECT TO 'Oracle MDLog (qliksense_administrador)';
SQL {CALL infomlog."TST_MONITORACAO_PEDIDOS_VENDA"}; //the error appears here
QVX_UNEXPECTED_END_OF_DATA: Unable to get column information for the fields that are used in the query: Referência de objeto não definida para uma instância de um objeto.: SQL {CALL infomlog."TST_MONITORACAO_PEDIDOS_VENDA"}
I changed the connection to OLE DB and the problem was solved.
Before I was using a direct oracle connection.
This is my script:
LIB CONNECT TO 'Oracle MDLog OleDB (qliksense_administrador)';
SQL {CALL infomlog."TST_MONITORACAO_PEDIDOS_VENDA"};