As others have suggested, there is at least one expression that ORACLE is trying type convert a value to a numeric type and failing.
This could be an implicit data type conversion, where you have a column reference, string expression or literal value, which ORACLE is trying to convert to a numeric type.
For example:
select 1 from dual where 'abc' > 123
select 1 from dual where 'abc' + '123' = 22
Typically you will start by looking at the SQL statement being sent to ORACLE, and review expressions. Should a "table" referenced in the statement be a view, then you would need to review the view definition, in case the expression is there.
These are the typical scenarios to check first.
------------------------------
NIGEL CAMPBELL
------------------------------
Original Message:
Sent: Fri January 13, 2023 01:57 PM
From: Jenifer Broughton
Subject: Error: UDA-SQL-0107 A general exception has occurred during the operation "open result".ORA-01722: invalid number
Version 11.1.7
I am not having luck resolving this.
UDA-SQL-0107 A general exception has occurred during the operation "open result".ORA-01722: invalid number<br/>RSV-SRV-0042 Trace back:RSReportService.cpp(734): QFException: CCL_CAUGHT: RSReportService::processImpl()RSReportServiceMethod.cpp(262): QFException: CCL_RETHROW: RSReportServiceMethod::process(): asynchWait_RequestRSASyncExecutionThread.cpp(902): QFException: RSASyncExecutionThread::checkExceptionRSASyncExecutionThread.cpp(368): QFException: CCL_CAUGHT: RSASyncExecutionThread::runImpl(): promptPagingForward_RequestRSASyncExecutionThread.cpp(947): QFException: CCL_RETHROW: RSASyncExecutionThread::processCommand(): promptPagingForward_RequestExecution/RSRenderExecution.cpp(585): QFException: CCL_RETHROW: RSRenderExecution::executeAssembly/RSDocAssemblyDispatch.cpp(340): QFException: CCL_RETHROW: RSDocAssemblyDispatch::dispatchAssemblyAssembly/RSLayoutAssembly.cpp(79): QFException: CCL_RETHROW: RSLayoutAssembly::assembleAssembly/RSDocAssemblyDispatch.cpp(449): QFException: CCL_RETHROW: RSDocAssemblyDispatch::dispatchChildrenAssemblyForwardAssembly/RSReportPagesAssembly.cpp(185): QFException: CCL_RETHROW: RSReportPagesAssembly::assembleAssembly/RSDocAssemblyDispatch.cpp(385): QFException: CCL_RETHROW: RSDocAssemblyDispatch::dispatchAssemblyAssembly/RSPageAssembly.cpp(314): QFException: CCL_RETHROW: RSPageAssembly::assembleAssembly/RSDocAssemblyDispatch.cpp(385): QFException: CCL_RETHROW: RSDocAssemblyDispatch::dispatchAssemblyAssembly/RSTableRowAssembly.cpp(177): QFException: CCL_RETHROW: RSTableRowAssembly::assembleAssembly/RSDocAssemblyDispatch.cpp(385): QFException: CCL_RETHROW: RSDocAssemblyDispatch::dispatchAssemblyAssembly/RSTableCellAssembly.cpp(151): QFException: CCL_RETHROW: RSTableCellAssembly::assembleAssembly/RSDocAssemblyDispatch.cpp(449): QFException: CCL_RETHROW: RSDocAssemblyDispatch::dispatchChildrenAssemblyForwardAssembly/RSDocAssemblyDispatch.cpp(385): QFException: CCL_RETHROW: RSDocAssemblyDispatch::dispatchAssemblyRSResultSetIterator.cpp(1513): QFException: CCL_RETHROW: RSResultSetIterator::retrieveDataQFSPartialDataset.cpp(80): QFException: CCL_RETHROW: QFSPartialDataset::GetEdgeIteratorSource/QEDmResultSet.cpp(75): QFException: CCL_THROW: QE
------------------------------
Jenifer Broughton
------------------------------
#CognosAnalyticswithWatson