Thanks for the replies. Sorry I didn&#39;t give more details on the environment.<div><br></div><div>I am running on Windows, at the command line, both ogr2ogr and the python script.</div><div><br></div><div>Created an environment variable for ORACLE_SID=ORCL</div>
<div><br></div><div>I double-checked my OCI string by using sqlplus to connect:</div><div><br></div><div>    sqlplus scott/tiger@orcl</div><div><br></div><div>This works fine. I changed the script to use that in the call to ogr.Open(). No luck.</div>
<div><br></div><div>I imported gdal and sprinkled print &#39;Error:&#39;, gdal.GetLastErrorMsg() in my exception handlers. I got:</div><div><br></div><div><div>    Unable to open Oracle connection None</div><div>    Error:</div>
<div><br></div><div>Still no dice. If I take the same script and modify the GetDriverByName and Open to use a shapefile, it works perfectly.</div><div><br></div><div>-Eric</div><div><br></div></div><div><br></div><div><br clear="all">
-=--=---=----=----=---=--=-=--=---=----=---=--=-=-<br>Eric B. Wolf                    New! 720-334-7734<br>USGS Geographer<br>Center of Excellence in GIScience<br>PhD Student <br>CU-Boulder - Geography<br><br>GPG Public Key: <a href="http://www.h4h.net/ebwolf.public.key.txt">http://www.h4h.net/ebwolf.public.key.txt</a><br>

<br><br><div class="gmail_quote">On Fri, Feb 12, 2010 at 6:56 AM, Abhay <span dir="ltr">&lt;<a href="mailto:abhay.menon@gmail.com">abhay.menon@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
<br><br><div class="gmail_quote"><div><div></div><div class="h5">On Fri, Feb 12, 2010 at 2:48 PM, Eric Wolf <span dir="ltr">&lt;<a href="mailto:ebwolf@gmail.com" target="_blank">ebwolf@gmail.com</a>&gt;</span> wrote:<br></div>
</div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div></div><div class="h5">

<div>I&#39;m using GDAL/OGR 1.6.1 with ActivePython 2.6.4-10 and cx_Oracle-5.0.3-11g. I am trying to connect to an Oracle 11g instance.</div><div><br></div>This works:<div><br></div><div>    ogr2ogr -f &quot;KML&quot; emp.kml OCI:scott/tiger &quot;EMP&quot;</div>



<div><br></div><div>What am I doing wrong. This fails, ds is None:</div><div><br></div><div><div>from osgeo import ogr</div><div><br></div><div>try:</div><div>    d = ogr.GetDriverByName(&#39;OCI&#39;)</div><div>except:</div>



<div>    print &quot;Unable to GetDriverByName&quot;</div><div>    quit()</div><div><br></div><div>ds = None</div><div><br></div><div>try:</div><div>    ds = ogr.Open(&#39;OCI:scott/tiger&#39;)</div><div>except:</div><div>



    print &quot;Unable to open OCI connection&quot;</div><div>    quit()</div><div><br></div><div>if ds is None:</div><div>    print &quot;Unable to open Oracle connection&quot;, ds</div><div>    quit()</div><div><br></div>



<div>lyr = ds.GetLayerByName(&#39;EMP&#39;)</div><div>number = lyr.GetFeatureCount()</div><div><br></div><div>print &quot;Features: &quot; + str(number)</div><div><br></div><div><br></div><div><br></div><div><br></div>-=--=---=----=----=---=--=-=--=---=----=---=--=-=-<br>



Eric B. Wolf                    New! 720-334-7734<br>USGS Geographer<br>Center of Excellence in GIScience<br>PhD Student <br>CU-Boulder - Geography<br><br>GPG Public Key: <a href="http://www.h4h.net/ebwolf.public.key.txt" target="_blank">http://www.h4h.net/ebwolf.public.key.txt</a><br>




</div>
<br></div></div>_______________________________________________<br>
gdal-dev mailing list<br>
<a href="mailto:gdal-dev@lists.osgeo.org" target="_blank">gdal-dev@lists.osgeo.org</a><br>
<a href="http://lists.osgeo.org/mailman/listinfo/gdal-dev" target="_blank">http://lists.osgeo.org/mailman/listinfo/gdal-dev</a><br></blockquote></div><div><br></div>Hi Eric,<div><br></div><div>Form your mail it not clear what is cause of the problem.</div>


<div><br></div><div>There 2 scenario here </div><div><br></div><div>1) you are on a remote machine form where your trying to connect oracle server machine:</div><div><br></div><div>a) Have you installed any Oracle Client in your system. Considering that you are using the complete oracle client installation you can use the following  : </div>


<div>OCI:scott/tiger@&lt;Tnsname entry for eg. ORCL&gt;</div><div><br></div><div>b) if you are trying out with Instant client for 11g you should try either of the following</div><div><br></div><div>OCI:scott/tiger@//localhost/&lt;your ORACLE SERVICE IDENTIFIER for eg ORCL&gt;.</div>


<div><br></div><div>2) you are on the oracle server machine where </div><div><br></div><div>you must set the oracle SID. like the following </div><div>on windows </div><div>SET ORACLE_SID=ORCL</div><div>or</div><div>on *nix</div>


<div>export ORACLE_SID=ORCL</div><div><br></div><div>then try your implementation or use methods stated in 1) </div><div><br></div><div><br></div><div><br></div><div><br></div><div>Rgds.</div><div><br></div><font color="#888888"><div>
Abhay.</div>

</font></blockquote></div><br></div>