Hi I am trying to connect Oracle 10g(Source/Target) from ssis using connection string as Data Source=Qrgo;User ID=sy;password=sa;Provider=MSDAORA.1; Qrgo is Servicename

getting error Test connection failed because of an error in initializing provider. ORA-12520: TNS:listener could not find available handler for requested type of server

Please advise how to resolve this. Thanks

I have tried

1.tnsping

it is successful

2.Attempt a connection to the instance

Once you have proven that the tnsnames is talking to the listener properly, the next step is to attempt a full connection to the instance. To do this we.ll use sqlplus:

sqlplus [username]/[password]@ it is successful

but ,while trying to configure from ssis it is throughing an error

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Error: ORA-12520

Text: TNS:listener could not find available handler for requested type of server

Cause: None of the known and available service handlers for requested type of server (dedicated or shared) are appropriate for the client connection.

Action: Run "lsnrctl services" to ensure that the instance(s) have registered with the listener and that the appropriate handlers are accepting connections.

Possible solution:

http://www.shutdownabort.com/errors/ORA-12520.php

link|improve this answer
try to run lsnrctl on cmd(windows xp) C:\>LSNRCTL 'LSNRCTL' is not recognized as an internal or external command, operable program or batch file. – rmdussa Jul 13 '10 at 6:48
I think you do not have LSNRCTL set in your path. Try to search for it in your box. Here's a succinct description of LSNRCTL - ucertify.com/article/… | remote-dba.net/t_advanced_oradim_utility.htm – Leniel Macaferi Jul 13 '10 at 7:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.