<?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 Sas viya 4 default snippet DQLOAD macro error in SAS Viya</title>
    <link>https://communities.sas.com/t5/SAS-Viya/Sas-viya-4-default-snippet-DQLOAD-macro-error/m-p/941401#M2551</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We are trying to use the DQLOAD macro in the default 'Identify Gender' snippet within SAS Viya. However we get the below error. Is this because DQLOAD requires additional parameters as input such as the QKB location? In this case how do we identify the QKB location in our SAS Viya Environment?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Code:&lt;/P&gt;
&lt;P&gt;%dqload(dqlocale=(ENUSA));&lt;/P&gt;
&lt;P&gt;Data _null_;&lt;/P&gt;
&lt;P&gt;Length name$100;&lt;/P&gt;
&lt;P&gt;Length gender $20;&lt;/P&gt;
&lt;P&gt;Name='Mrs. Sallie Mae Pavlik'&lt;/P&gt;
&lt;P&gt;Gender=dqgender(name,'Name','ENUSA');&lt;/P&gt;
&lt;P&gt;PUT GENDER;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Log:&lt;/P&gt;
&lt;P&gt;NOTE: DQLOAD macro beginning&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;WORK&amp;nbsp;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;"SASGOPT&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;ERROR: ERROR in the FILENAME statement&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;NOTE: DQLOAD macro ending&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks in advance!&lt;/P&gt;</description>
    <pubDate>Wed, 28 Aug 2024 12:27:30 GMT</pubDate>
    <dc:creator>devi001</dc:creator>
    <dc:date>2024-08-28T12:27:30Z</dc:date>
    <item>
      <title>Sas viya 4 default snippet DQLOAD macro error</title>
      <link>https://communities.sas.com/t5/SAS-Viya/Sas-viya-4-default-snippet-DQLOAD-macro-error/m-p/941401#M2551</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We are trying to use the DQLOAD macro in the default 'Identify Gender' snippet within SAS Viya. However we get the below error. Is this because DQLOAD requires additional parameters as input such as the QKB location? In this case how do we identify the QKB location in our SAS Viya Environment?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Code:&lt;/P&gt;
&lt;P&gt;%dqload(dqlocale=(ENUSA));&lt;/P&gt;
&lt;P&gt;Data _null_;&lt;/P&gt;
&lt;P&gt;Length name$100;&lt;/P&gt;
&lt;P&gt;Length gender $20;&lt;/P&gt;
&lt;P&gt;Name='Mrs. Sallie Mae Pavlik'&lt;/P&gt;
&lt;P&gt;Gender=dqgender(name,'Name','ENUSA');&lt;/P&gt;
&lt;P&gt;PUT GENDER;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Log:&lt;/P&gt;
&lt;P&gt;NOTE: DQLOAD macro beginning&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;WORK&amp;nbsp;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;"SASGOPT&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;ERROR: ERROR in the FILENAME statement&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;NOTE: DQLOAD macro ending&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks in advance!&lt;/P&gt;</description>
      <pubDate>Wed, 28 Aug 2024 12:27:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Viya/Sas-viya-4-default-snippet-DQLOAD-macro-error/m-p/941401#M2551</guid>
      <dc:creator>devi001</dc:creator>
      <dc:date>2024-08-28T12:27:30Z</dc:date>
    </item>
    <item>
      <title>Re: Sas viya 4 default snippet DQLOAD macro error</title>
      <link>https://communities.sas.com/t5/SAS-Viya/Sas-viya-4-default-snippet-DQLOAD-macro-error/m-p/941569#M2552</link>
      <description>&lt;P&gt;Typically you use the DQSETUPLOC parameter to specify the file location in the call to DQLOAD like so:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%DQLOAD(DQLOCALE=(ENUSA), DQSETUPLOC='/MyFolder/SASQualityKnowledgeBase/CI/CI30_qkb1');&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Talk to your SAS administrator if you don't know the QKB location.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Aug 2024 01:16:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Viya/Sas-viya-4-default-snippet-DQLOAD-macro-error/m-p/941569#M2552</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2024-08-29T01:16:57Z</dc:date>
    </item>
  </channel>
</rss>

