<?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: SAS Office Addin rdbms issue in Microsoft Integration with SAS</title>
    <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/SAS-Office-Addin-rdbms-issue/m-p/920253#M2790</link>
    <description>&lt;P&gt;Thanks all, there is some code stored within SAS EG which assigns my libraries and Macro - It appears that this needs to be run within the Addin before any code can be ran as the Addin doesn't run this automatically like EG does.&lt;/P&gt;</description>
    <pubDate>Thu, 14 Mar 2024 08:36:28 GMT</pubDate>
    <dc:creator>KMWWN156</dc:creator>
    <dc:date>2024-03-14T08:36:28Z</dc:date>
    <item>
      <title>SAS Office Addin rdbms issue</title>
      <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/SAS-Office-Addin-rdbms-issue/m-p/920113#M2787</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have attempted to use the SAS Addin for the first time and are receiving the following error when running code within excel.&amp;nbsp; I am a very basic user and imagine the answer will also, hopefully, be very simple.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;18 proc sql;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;19 connect to &amp;amp;rdbms as biw(&amp;amp;dbc_info);&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;_ _&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;22 79&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;200 200&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;WARNING: Apparent symbolic reference RDBMS not resolved.&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;WARNING: Apparent symbolic reference DBC_INFO not resolved.&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;ERROR 22-322: Expecting a name.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;ERROR 79-322: Expecting a ).&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;ERROR 200-322: The symbol is not recognized and will be ignored.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have code set to run each time I use SAS EG 8.3 and see rdbms refers to my auto Teradata log on.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How or what do I need to do within the Addin to get this to run?&lt;/P&gt;</description>
      <pubDate>Wed, 13 Mar 2024 13:06:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/SAS-Office-Addin-rdbms-issue/m-p/920113#M2787</guid>
      <dc:creator>KMWWN156</dc:creator>
      <dc:date>2024-03-13T13:06:55Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Office Addin rdbms issue</title>
      <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/SAS-Office-Addin-rdbms-issue/m-p/920170#M2788</link>
      <description>&lt;P&gt;Statements like this in the log:&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;WARNING: Apparent symbolic reference RDBMS not resolved.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;mean that no value has been assigned to the macro variable RDBMS (or what ever name the warning references).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Typically either you would have a statement prior similar to&lt;/P&gt;
&lt;P&gt;%let RDBMS= some text goes here that is used in place of the macro variable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or perhaps a macro parameter was left off of a call.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note: if you place your LOG entries into a text box opened on the forum using the &amp;lt;/&amp;gt; icon above the message window things like the underscore characters will appear where they should.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Mar 2024 18:45:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/SAS-Office-Addin-rdbms-issue/m-p/920170#M2788</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2024-03-13T18:45:23Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Office Addin rdbms issue</title>
      <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/SAS-Office-Addin-rdbms-issue/m-p/920176#M2789</link>
      <description>&lt;P&gt;This is not an issue with the addin, this is an issue with your SAS code. The macro variables have to be defined before you use them.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Mar 2024 18:58:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/SAS-Office-Addin-rdbms-issue/m-p/920176#M2789</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2024-03-13T18:58:43Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Office Addin rdbms issue</title>
      <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/SAS-Office-Addin-rdbms-issue/m-p/920253#M2790</link>
      <description>&lt;P&gt;Thanks all, there is some code stored within SAS EG which assigns my libraries and Macro - It appears that this needs to be run within the Addin before any code can be ran as the Addin doesn't run this automatically like EG does.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Mar 2024 08:36:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/SAS-Office-Addin-rdbms-issue/m-p/920253#M2790</guid>
      <dc:creator>KMWWN156</dc:creator>
      <dc:date>2024-03-14T08:36:28Z</dc:date>
    </item>
  </channel>
</rss>

