<?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: Difference &amp;gt;&amp;lt;   Open Sql and Native SQL in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-gt-lt-open-sql-and-native-sql/m-p/2856923#M669760</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The main difference is that open SQL is transportable between SAP systems running different databases. Native SQL is particular to the database being used.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As a result open SQL doesn't support all the syntaxes of native SQL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 04 Oct 2007 17:48:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-04T17:48:34Z</dc:date>
    <item>
      <title>Difference &gt;&lt;   Open Sql and Native SQL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-gt-lt-open-sql-and-native-sql/m-p/2856922#M669759</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the Difference &amp;gt;&amp;lt;  OPEN SQL and NATIVE SQL ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2007 17:44:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-gt-lt-open-sql-and-native-sql/m-p/2856922#M669759</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-04T17:44:11Z</dc:date>
    </item>
    <item>
      <title>Re: Difference &gt;&lt;   Open Sql and Native SQL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-gt-lt-open-sql-and-native-sql/m-p/2856923#M669760</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The main difference is that open SQL is transportable between SAP systems running different databases. Native SQL is particular to the database being used.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As a result open SQL doesn't support all the syntaxes of native SQL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2007 17:48:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-gt-lt-open-sql-and-native-sql/m-p/2856923#M669760</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-04T17:48:34Z</dc:date>
    </item>
    <item>
      <title>Re: Difference &gt;&lt;   Open Sql and Native SQL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-gt-lt-open-sql-and-native-sql/m-p/2856924#M669761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Avi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Open SQL - ABAP specific SQL&lt;/P&gt;&lt;P&gt;Native SQL - DB specific SQL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Open SQL allows you to access database tables declared in the ABAP Dictionary regardless of the database platform that you R/3 System is using. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Native SQL allows you to use database-specific SQL statements in an ABAP program. This means that you can use database tables that are not administered by the ABAP Dictionary, and therefore integrate data that is not part of the R/3 System.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As a rule, an ABAP program containing database-specific SQL statements will not run under different database systems. If your program will be used on more than one database platform, only use Open SQL statements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Harini.S&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2007 17:49:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-gt-lt-open-sql-and-native-sql/m-p/2856924#M669761</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-04T17:49:12Z</dc:date>
    </item>
    <item>
      <title>Re: Difference &gt;&lt;   Open Sql and Native SQL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-gt-lt-open-sql-and-native-sql/m-p/2856925#M669762</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Avi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is an interface between our R/3 system and Database. &lt;/P&gt;&lt;P&gt;Using this interface. You can write open SQL statements to accsess Database. Here we don't bother whether it is Oracle, Informix etc. So the statement syntax will not be dependent on Database underlying.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Native Sql we don't access thru Interface.Directly we access Database.So we need to Write the statements in the correct syntax. i.e Database dependent.This is faster but if you use this there will be some inconsistency. So always better use Open SQL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regds,&lt;/P&gt;&lt;P&gt;Mukesh Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2007 17:50:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-gt-lt-open-sql-and-native-sql/m-p/2856925#M669762</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-04T17:50:02Z</dc:date>
    </item>
  </channel>
</rss>

