Link to home
Start Free TrialLog in
Avatar of jig thakkar
jig thakkarFlag for Canada

asked on

[Oracle][ODBC][Ora]ORA-01013: user requested cancel of current operation

hi

We have hp unix 11.0 and oracle 11.o database in background. Front end we have iis 6 and .net application internal portal called intranet. We connect INTRANET with oracle client 11.2 odbc driver.

sometimes whenever we try to connect oracle database using our internal portal webpage we are getting below mentioned error

Microsoft OLE DB Provider for ODBC Drivers error '80040e31'
[Oracle][ODBC][Ora]ORA-01013: user requested cancel of current operation
/quote/QuoteBrowse.asp, line 823

sometimes page open and sometimes getting above error message.

We are using oracle 11.2 clients in clients computer and intranet server.

Need help to resolve this issue.

thanks
ASKER CERTIFIED SOLUTION
Avatar of OP_Zaharin
OP_Zaharin
Flag of Malaysia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Geert G
it looks like your using the microsoft provider, not the oracle provider
Microsoft OLE DB Provider for ODBC Drivers

the oracle OLE DB provider is part of the oracle client
what part are you installing of the oracle client ?
http://www.oracle.com/technetwork/database/windows/index-089115.html
Avatar of slightwv (䄆 Netminder)
slightwv (䄆 Netminder)

>>We connect INTRANET with oracle client 11.2 odbc driver.

I strongly encourage you to move to ODP.Net for your data provider and forget about ODBC and ANY Microsoft drivers to connect to Oracle.

http://www.oracle.com/technetwork/developer-tools/visual-studio/downloads/index.html

If you must use ODBC, use native Oracle drivers.
Avatar of jig thakkar

ASKER

i am using ODBC system dsn using oracle in oraclient11g version11.02.00.. i have installed oracle client with administration options in INTRANET server.

As per zahrin suggetion i uncheck enable query timeout at this moment..i will keep it under observation and post here...

Do u think my issue is related to oracle Database from oracle server?

Also i have attached my current ODBC settings from INTRANET WEB PORTAL SERVER..

thanks all..
odbc-settings-for-TRLV-database.docx
hi slightwv

i am using oracle odbc from oracle 11.2 not ms drivers..what is ODP.Net? how and where to configure? on INTRANET server..u mean stop using odbc and install odp.net only??
>>i am using oracle odbc from oracle 11.2 not ms drivers..

What threw me was the first part of the error "Microsoft OLE DB Provider for ODBC Drivers error '80040e31'"

>>what is ODP.Net?

Oracle's .Net data access provider.

http://www.oracle.com/technetwork/developer-tools/visual-studio/downloads/index.html

>>u mean stop using odbc and install odp.net only??

Yes.  This is a native .Net provider and you will have much greater flexibility over ODBC.
solved