.NET unable to connect to Oracle DB using Oracle proxy user - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T08:14:02Z http://stackoverflow.com/feeds/question/142211 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/142211/net-unable-to-connect-to-oracle-db-using-oracle-proxy-user 0 .NET unable to connect to Oracle DB using Oracle proxy user minty 2008-09-26T21:53:05Z 2008-09-27T06:08:04Z <p>I am setting up a test version of my website against a new schema. I am trying to connect using the proxy connection and am getting the following error: </p> <blockquote> <p>ORA-28150: proxy not authorized to connect as client</p> </blockquote> <p>my connect string has the following form:</p> <blockquote> <p>Data Source=<em>Instance</em>; User Id=<em>user</em>; Proxy User Id=<em>prxy_usr</em>;Proxy Password=<em>prxy_pass</em>; Min Pool Size = 0; Connection Timeout = 30</p> </blockquote> <p>Do you have any idea what might be wrong?</p> http://stackoverflow.com/questions/142211/net-unable-to-connect-to-oracle-db-using-oracle-proxy-user/142265#142265 2 Answer by EddieAwad for .NET unable to connect to Oracle DB using Oracle proxy user EddieAwad 2008-09-26T22:03:20Z 2008-09-26T22:03:20Z <p>According to <a href="http://download.oracle.com/docs/cd/B28359_01/server.111/b28278/e24280.htm#ORA-28150" rel="nofollow">the docs</a>: Grant the proxy user permission to perform actions on behalf of the client by using the ALTER USER ... GRANT CONNECT command.</p> http://stackoverflow.com/questions/142211/net-unable-to-connect-to-oracle-db-using-oracle-proxy-user/142366#142366 2 Answer by minty for .NET unable to connect to Oracle DB using Oracle proxy user minty 2008-09-26T22:32:05Z 2008-09-27T01:30:52Z <p>EddieAwad's answer was correct but here is the specific code to run:</p> <blockquote> <p>ALTER USER <em>username</em> GRANT CONNECT THROUGH <em>proxyUserName</em>;</p> </blockquote> <p>The THROUGH keyword is the part I couldn't find in the documentation.</p> http://stackoverflow.com/questions/142211/net-unable-to-connect-to-oracle-db-using-oracle-proxy-user/143103#143103 2 Answer by EddieAwad for .NET unable to connect to Oracle DB using Oracle proxy user EddieAwad 2008-09-27T06:08:04Z 2008-09-27T06:08:04Z <p>Here is the <a href="http://download.oracle.com/docs/cd/B28359_01/server.111/b28286/statements_4003.htm" rel="nofollow">ALTER USER documentation</a>. You will find the CONNECT THROUGH clause there as well as some proxy users examples. </p>