<?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: SELECT secondary database SELECT * error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-secondary-database-select-error/m-p/9912353#M1794053</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello T S.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Can you paste the error screen shot here?&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 20 Dec 2013 02:53:14 GMT</pubDate>
    <dc:creator>Arun_Prabhu_K</dc:creator>
    <dc:date>2013-12-20T02:53:14Z</dc:date>
    <item>
      <title>SELECT secondary database SELECT * error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-secondary-database-select-error/m-p/9912351#M1794051</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have an Open SQL statement to select a secondary database. When using SELECT *, an error states that SQL error 207 when accessing table. If I specify the column names, the select statement works well. I want to know the underlining logic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;SELECT &lt;/SPAN&gt;*&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;INTO &lt;/SPAN&gt;CORRESPONDING &lt;SPAN class="L0S52"&gt;FIELDS &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;OF &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;TABLE &lt;/SPAN&gt;LT_MARA&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;FROM &lt;/SPAN&gt;MARA&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;CLIENT &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;SPECIFIED&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CONNECTION T01&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;WHERE &lt;/SPAN&gt;MANDT &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'100' &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S55"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S55"&gt;Best regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S55"&gt;ts.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Dec 2013 02:34:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-secondary-database-select-error/m-p/9912351#M1794051</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-12-20T02:34:56Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT secondary database SELECT * error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-secondary-database-select-error/m-p/9912352#M1794052</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Ts&lt;/P&gt;&lt;P&gt;when you use CONNECTION to a secondary database, see the last statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 10pt; font-family: Courier New;"&gt;... CONNECTION {con|(con_syntax)}&lt;/STRONG&gt; &lt;BR /&gt;&lt;/P&gt;&lt;H4&gt;&lt;SPAN style="color: #000080; font-size: 10pt;"&gt;Note &lt;/SPAN&gt;&lt;/H4&gt;&lt;P&gt;&lt;STRONG&gt;This addition is for internal use only. &lt;BR /&gt;It cannot be used in application programs &lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;H4&gt;&lt;SPAN style="color: #000080; font-size: 10pt;"&gt;Effect &lt;/SPAN&gt;&lt;/H4&gt;&lt;P&gt;The Open SQL command is not executed on the standard database but on the specified &lt;A href="https://community.sap.com/"&gt;secondary database connection&lt;/A&gt;. The database connection can be specified statically with &lt;STRONG style="font-size: 10pt; font-family: Courier New;"&gt;con&lt;/STRONG&gt; or dynamically as the content of &lt;STRONG style="font-size: 10pt; font-family: Courier New;"&gt;con_syntax&lt;/STRONG&gt;, where the field &lt;STRONG style="font-size: 10pt; font-family: Courier New;"&gt;con_syntax&lt;/STRONG&gt; must belong to the type &lt;STRONG style="font-size: 10pt; font-family: Courier New;"&gt;c&lt;/STRONG&gt; or &lt;STRONG style="font-size: 10pt; font-family: Courier New;"&gt;string&lt;/STRONG&gt;. &lt;STRONG&gt;The database connection must be specified with a name that is in column &lt;SPAN style="font-family: Courier New; font-size: 10pt;"&gt;CON_NAME&lt;/SPAN&gt; in table &lt;SPAN style="font-family: Courier New; font-size: 10pt;"&gt;DBCON&lt;/SPAN&gt;. &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;regards,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Archer&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Dec 2013 02:48:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-secondary-database-select-error/m-p/9912352#M1794052</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-12-20T02:48:07Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT secondary database SELECT * error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-secondary-database-select-error/m-p/9912353#M1794053</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello T S.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Can you paste the error screen shot here?&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Dec 2013 02:53:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-secondary-database-select-error/m-p/9912353#M1794053</guid>
      <dc:creator>Arun_Prabhu_K</dc:creator>
      <dc:date>2013-12-20T02:53:14Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT secondary database SELECT * error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-secondary-database-select-error/m-p/9912354#M1794054</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/347758" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/347819" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/347820" width="450" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Dec 2013 03:08:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-secondary-database-select-error/m-p/9912354#M1794054</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-12-20T03:08:03Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT secondary database SELECT * error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-secondary-database-select-error/m-p/9912355#M1794055</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG style="color: #666666; font-family: Arial, Helvetica, sans-serif; font-size: 12px;"&gt;SQL Server&lt;/STRONG&gt;&lt;SPAN style="color: #666666; font-family: Arial, Helvetica, sans-serif; font-size: 12px;"&gt;: Refer to Note 1630727 to prevent SQL error 207: "Invalid column name 'area'"&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Dec 2013 05:19:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-secondary-database-select-error/m-p/9912355#M1794055</guid>
      <dc:creator>sivaganesh_krishnan</dc:creator>
      <dc:date>2013-12-20T05:19:52Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT secondary database SELECT * error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-secondary-database-select-error/m-p/9912356#M1794056</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you have some ANIMAL_ORIGIN column in select as mentioned in dump first screen shot.?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Dec 2013 05:34:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-secondary-database-select-error/m-p/9912356#M1794056</guid>
      <dc:creator>nabheetscn</dc:creator>
      <dc:date>2013-12-20T05:34:06Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT secondary database SELECT * error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-secondary-database-select-error/m-p/9912357#M1794057</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, I just select data from MARA.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Dec 2013 06:17:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-secondary-database-select-error/m-p/9912357#M1794057</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-12-20T06:17:27Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT secondary database SELECT * error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-secondary-database-select-error/m-p/9912358#M1794058</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi TS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you check DBCON entries for this secondary database are maitnained. Secondly please make sure both table have same field in both databased. Please verify&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nabheet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Dec 2013 07:32:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-secondary-database-select-error/m-p/9912358#M1794058</guid>
      <dc:creator>nabheetscn</dc:creator>
      <dc:date>2013-12-20T07:32:14Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT secondary database SELECT * error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-secondary-database-select-error/m-p/9912359#M1794059</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, connection has been confirmed by remote log-in. The no difference on structures.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;ts&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Dec 2013 09:51:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-secondary-database-select-error/m-p/9912359#M1794059</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-12-20T09:51:31Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT secondary database SELECT * error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-secondary-database-select-error/m-p/9912360#M1794060</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you please paste your code here...? DBCON entries are maintained? Please check SM21 after the dump to see if it provides you some more details. Please paste it here.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Dec 2013 09:55:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-secondary-database-select-error/m-p/9912360#M1794060</guid>
      <dc:creator>nabheetscn</dc:creator>
      <dc:date>2013-12-20T09:55:47Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT secondary database SELECT * error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-secondary-database-select-error/m-p/9912361#M1794061</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It may come from the CORRESPONDING FIELDS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you execute the statement in a textile industry system and the native SQL statement in a non textile industry system. The list of corresponding field would come from calling database but the statement is executed on another database ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Dec 2013 10:01:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-secondary-database-select-error/m-p/9912361#M1794061</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2013-12-20T10:01:43Z</dc:date>
    </item>
  </channel>
</rss>

