<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: external oracle database connection in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/external-oracle-database-connection/m-p/829982#M43495</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I try this code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT T_DES INTO :tbr FROM ztwzt02_rol CONNECTION ('GBNET').&lt;/P&gt;&lt;P&gt;  write: / tbr.&lt;/P&gt;&lt;P&gt;ENDSELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but i get this syntax error "Wrong expression CONNECTION in FROM clause. WHERE condition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andrea&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 06 May 2004 17:54:40 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2004-05-06T17:54:40Z</dc:date>
    <item>
      <title>external oracle database connection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/external-oracle-database-connection/m-p/829972#M43485</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;have you never used DBCON table to connect to an external oracle database?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the con_env field of DBCON table I put the following connection string for oracle database:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;dbname=GBNET user=tzta password=tzta host=192.168.0.10 port=1521&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is it correct?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have to configure sap system and oracle to work togheter?&lt;/P&gt;&lt;P&gt;now it seems to be that the sap system is knowing only sap db(ADABAS D)!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can anyone help me?&lt;/P&gt;&lt;P&gt;thank's.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andrea&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 May 2004 12:30:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/external-oracle-database-connection/m-p/829972#M43485</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-05-04T12:30:25Z</dc:date>
    </item>
    <item>
      <title>Re: external oracle database connection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/external-oracle-database-connection/m-p/829973#M43486</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Andrea,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please do a F1 on CONNECTION in ABAP Editor. I believe the documentation given there will help you solve the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As I told earlier you donot use Native SQL statements to connect to external database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will say CONNECT and give the DBNAME as made in DBCON table, then you should have a table of similar structure and name in Datadictionary as far as I can understand that, and then you use your normal Open SQL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The connection statement is only indicating to the workprocess which connection is to be used.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 May 2004 05:05:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/external-oracle-database-connection/m-p/829973#M43486</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-05-05T05:05:20Z</dc:date>
    </item>
    <item>
      <title>Re: external oracle database connection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/external-oracle-database-connection/m-p/829974#M43487</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Pavan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is my small ABAP Program:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZDBASE                                  .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: tbr(50) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXEC SQL.&lt;/P&gt;&lt;P&gt;   CONNECT TO 'GBNET'&lt;/P&gt;&lt;P&gt;ENDEXEC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF SY-SUBRC NE 0.&lt;/P&gt;&lt;P&gt;  message s000(zf) with 'Imposible conectar a Gbnet'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXEC SQL.&lt;/P&gt;&lt;P&gt;  SET CONNECTION 'GBNET'&lt;/P&gt;&lt;P&gt;ENDEXEC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXEC SQL PERFORMING LOOP_OUTPUT.&lt;/P&gt;&lt;P&gt;  SELECT T_DES&lt;/P&gt;&lt;P&gt;  INTO :tbr&lt;/P&gt;&lt;P&gt;  FROM twzt02_rol&lt;/P&gt;&lt;P&gt;ENDEXEC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM LOOP_OUTPUT.&lt;/P&gt;&lt;P&gt;  write: / tbr.&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where GBNET is the connection name in DBCON table.&lt;/P&gt;&lt;P&gt;there is no help on CONNECTION or CONNECT in ABAP Editor!&lt;/P&gt;&lt;P&gt;how can i do a select statement on remote oracle database table with Open SQL?&lt;/P&gt;&lt;P&gt;Open SQL statements use current database connection "DEFAULT" that is R/3 DB (ADABAS D), while I want to read data from a remote oracle database table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andrea&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 May 2004 13:28:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/external-oracle-database-connection/m-p/829974#M43487</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-05-05T13:28:25Z</dc:date>
    </item>
    <item>
      <title>Re: external oracle database connection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/external-oracle-database-connection/m-p/829975#M43488</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Andrea,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try the following code in your program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The prerequisite for the same is as follows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Create the tables in Datadictionary, with the same structure as you want to access in the external database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONNECTION ('GBNET').&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;after this statement, you can fire your normal select queries to access data from the external database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope its clear, I dont think you will be using DBCON table in case of native SQL connect statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;External DB Connections can be done in two ways&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Open SQL&lt;/P&gt;&lt;P&gt;Native SQL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In case of Open SQL.&lt;/P&gt;&lt;P&gt;1. The DBCON table should be configured.&lt;/P&gt;&lt;P&gt;2. Declare tables of same type in Data dictionary as you want to access in the external system.&lt;/P&gt;&lt;P&gt;3. In the program use CONNECTION('conname') conname is the dbconnection name as given in DBCON table.&lt;/P&gt;&lt;P&gt;4. Use the normal Open SQL statements to access data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In case of Native SQL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Fire the CONNECT command giving all the parameters, it doesnt make use of the DBCON table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this is clear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 May 2004 20:14:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/external-oracle-database-connection/m-p/829975#M43488</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-05-05T20:14:28Z</dc:date>
    </item>
    <item>
      <title>Re: external oracle database connection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/external-oracle-database-connection/m-p/829976#M43489</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Pavan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;executing this code in my ABAP program:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZDBASE                                  .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: tbr(50) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES: ZTWZT02_ROL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONNECTION('GBNET').&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT T_DES INTO :tbr FROM ztwzt02_rol.&lt;/P&gt;&lt;P&gt;  write: / tbr.&lt;/P&gt;&lt;P&gt;ENDSELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I create the table ZTWZT02_ROL in ABAP Dictionary with the same structure of the external oracle table 'TWZT02_ROL' (the only difference is the table name because in abap must initial with character "Z").&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I get this syntax error message:&lt;/P&gt;&lt;P&gt;The syntax for a method specification is "objref-&amp;gt;method" or "class=&amp;gt;method".&lt;/P&gt;&lt;P&gt;After "GBNET", there must be a space or equivalent charecter (":",",",".").&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why?&lt;/P&gt;&lt;P&gt;seem to be wrong the statement CONNECTION!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andrea&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 May 2004 10:24:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/external-oracle-database-connection/m-p/829976#M43489</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-05-06T10:24:18Z</dc:date>
    </item>
    <item>
      <title>Re: external oracle database connection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/external-oracle-database-connection/m-p/829977#M43490</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Andrea,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to put spaces after the first braket and before the 2. braket.&lt;/P&gt;&lt;P&gt;In Abap (except arthmetic expressions) you have to insert spaces between the brakets, becouse a braket is a reserved word.&lt;/P&gt;&lt;P&gt;Hope i could help you.&lt;/P&gt;&lt;P&gt;BR&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 May 2004 10:39:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/external-oracle-database-connection/m-p/829977#M43490</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-05-06T10:39:09Z</dc:date>
    </item>
    <item>
      <title>Re: external oracle database connection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/external-oracle-database-connection/m-p/829978#M43491</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i try to put spaces like CONNECTION( 'GBNET' ) but i still have the same syntax error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andrea&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 May 2004 14:01:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/external-oracle-database-connection/m-p/829978#M43491</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-05-06T14:01:31Z</dc:date>
    </item>
    <item>
      <title>Re: external oracle database connection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/external-oracle-database-connection/m-p/829979#M43492</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please use CONNECTION ('GBNET') and let me know of the results. But i think you may not be able to access the table with that name, but try and see, I guess it should have the same name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 May 2004 16:42:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/external-oracle-database-connection/m-p/829979#M43492</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-05-06T16:42:28Z</dc:date>
    </item>
    <item>
      <title>Re: external oracle database connection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/external-oracle-database-connection/m-p/829980#M43493</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I try CONNECTION ('GBNET') but i get this syntax error "Statement CONNECTION is not defined. Check your spelling."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andrea&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 May 2004 16:59:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/external-oracle-database-connection/m-p/829980#M43493</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-05-06T16:59:19Z</dc:date>
    </item>
    <item>
      <title>Re: external oracle database connection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/external-oracle-database-connection/m-p/829981#M43494</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry about the confusion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz use the following syntax.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM &amp;lt;TABLE created&amp;gt; CONNECTION ('con name').&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This syntax can be used with any OPEN SQL statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Even I am learning external database connection now only, but as I dont have access to external database. Plz excuse any mistakes.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 May 2004 17:45:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/external-oracle-database-connection/m-p/829981#M43494</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-05-06T17:45:46Z</dc:date>
    </item>
    <item>
      <title>Re: external oracle database connection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/external-oracle-database-connection/m-p/829982#M43495</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I try this code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT T_DES INTO :tbr FROM ztwzt02_rol CONNECTION ('GBNET').&lt;/P&gt;&lt;P&gt;  write: / tbr.&lt;/P&gt;&lt;P&gt;ENDSELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but i get this syntax error "Wrong expression CONNECTION in FROM clause. WHERE condition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andrea&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 May 2004 17:54:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/external-oracle-database-connection/m-p/829982#M43495</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-05-06T17:54:40Z</dc:date>
    </item>
    <item>
      <title>Re: external oracle database connection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/external-oracle-database-connection/m-p/829983#M43496</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Which version of SAP are you using. I dont get any problem in execution of the code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 May 2004 18:03:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/external-oracle-database-connection/m-p/829983#M43496</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-05-06T18:03:02Z</dc:date>
    </item>
    <item>
      <title>Re: external oracle database connection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/external-oracle-database-connection/m-p/829984#M43497</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i'm using SAP WAS 6.10&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andrea&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 May 2004 19:31:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/external-oracle-database-connection/m-p/829984#M43497</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-05-06T19:31:50Z</dc:date>
    </item>
    <item>
      <title>Re: external oracle database connection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/external-oracle-database-connection/m-p/829985#M43498</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think the CONNECTION statement does not exist in ABAP.&lt;/P&gt;&lt;P&gt;The open sql select statement does not have the keyword CONNECTION.&lt;/P&gt;&lt;P&gt;Are you sure that I don't have to use native sql "CONNECT TO" statement to connect to an external database?&lt;/P&gt;&lt;P&gt;Did you never need to connect to an external database from an ABAP program?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andrea&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 May 2004 15:32:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/external-oracle-database-connection/m-p/829985#M43498</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-05-07T15:32:07Z</dc:date>
    </item>
    <item>
      <title>Re: external oracle database connection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/external-oracle-database-connection/m-p/829986#M43499</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Andrea,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'Connection' option is available only sincle WAS 6.20 !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Venky Varadadesigan&lt;/P&gt;&lt;P&gt;SAP NetWeaver consulting.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 May 2004 18:13:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/external-oracle-database-connection/m-p/829986#M43499</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-05-07T18:13:07Z</dc:date>
    </item>
    <item>
      <title>Re: external oracle database connection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/external-oracle-database-connection/m-p/829987#M43500</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ok.&lt;/P&gt;&lt;P&gt;then how can i do an external database connection with WAS 6.10?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ANdrea&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 May 2004 19:44:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/external-oracle-database-connection/m-p/829987#M43500</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-05-07T19:44:01Z</dc:date>
    </item>
    <item>
      <title>Re: external oracle database connection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/external-oracle-database-connection/m-p/829988#M43501</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think you have to use the Native SQL, but then I dont think you will have to specify all the connection parameters subsequently in the SQL query itself, you cant make use of the values presnet in DBCON table. I think that is only for using external database through OPEN SQL not NATIVE SQL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You might have to explore the external db connections from ADABAS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 May 2004 14:00:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/external-oracle-database-connection/m-p/829988#M43501</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-05-08T14:00:45Z</dc:date>
    </item>
    <item>
      <title>Re: external oracle database connection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/external-oracle-database-connection/m-p/829989#M43502</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when using syntax&lt;/P&gt;&lt;P&gt;SELECT * FROM &amp;lt;r3_table&amp;gt; CONNECTION ('con_name').&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;does &amp;lt;r3_table&amp;gt; created in sap system need to have the same name as external db table? if so, how is it possible to avoid conflict with sap db table names since customer namespace for objects starts with 'Z'?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--&lt;/P&gt;&lt;P&gt;best regards,&lt;/P&gt;&lt;P&gt;robert&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Aug 2005 10:55:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/external-oracle-database-connection/m-p/829989#M43502</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-17T10:55:09Z</dc:date>
    </item>
  </channel>
</rss>

