<?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: Library DBSDTM does not exist. in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Library-DBSDTM-does-not-exist/m-p/528565#M144281</link>
    <description>&lt;P&gt;Directory SDTM does not exist in that location.&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/237206"&gt;@Patelbb&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is the result from the submitted code. The file path I used was copied right from the file so not sure why it doesn't recognize it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;135&amp;nbsp; filename DIR pipe 'dir "C:\SAS 9.4\SAS-II Class\Raw Data\SDTM" ';&lt;BR /&gt;136&amp;nbsp; data null_;&lt;BR /&gt;137&amp;nbsp;&amp;nbsp;&amp;nbsp; infile DIR;&lt;BR /&gt;138&amp;nbsp;&amp;nbsp;&amp;nbsp; input;&lt;BR /&gt;139&amp;nbsp;&amp;nbsp;&amp;nbsp; put _infile_;&lt;BR /&gt;140&amp;nbsp; run;&lt;/DIV&gt;
&lt;DIV&gt;NOTE: The infile DIR is:&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Unnamed Pipe Access Device,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PROCESS=dir "C:\SAS 9.4\SAS-II Class\Raw Data\SDTM",&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RECFM=V,LRECL=32767&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;Volume in drive C is OS&lt;BR /&gt;&amp;nbsp;Volume Serial Number is 1A1D-B685&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;Directory of C:\SAS 9.4\SAS-II Class\Raw Data&lt;BR /&gt;Stderr output:&lt;BR /&gt;File Not Found&lt;BR /&gt;NOTE: 5 records were read from the infile DIR.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; The minimum record length was 0.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; The maximum record length was 46.&lt;BR /&gt;NOTE: The data set WORK.NULL_ has 5 observations and 0 variables.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; real time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.63 seconds&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cpu time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.06 seconds&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 19 Jan 2019 20:11:27 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2019-01-19T20:11:27Z</dc:date>
    <item>
      <title>Library DBSDTM does not exist.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Library-DBSDTM-does-not-exist/m-p/528225#M144128</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was wondering if anyone was willing to help me with this. I ran the following and got a note that states that DBSDTM does not exist and I can't figure out why. Any assistance would be appreciated. Thank you!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;105&amp;nbsp; libname dbsdtm 'C:\SAS 9.4\SAS-II Class\Raw Data\SDTM';&lt;BR /&gt;NOTE: Library DBSDTM does not exist.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Jan 2019 02:14:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Library-DBSDTM-does-not-exist/m-p/528225#M144128</guid>
      <dc:creator>Patelbb</dc:creator>
      <dc:date>2019-01-18T02:14:37Z</dc:date>
    </item>
    <item>
      <title>Re: Library DBSDTM does not exist.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Library-DBSDTM-does-not-exist/m-p/528232#M144133</link>
      <description>&lt;P&gt;Does the directory&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;C:\SAS 9.4\SAS-II Class\Raw Data\SDTM&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;exist on the computer?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Run:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;filename DIR pipe 'dir "C:\SAS 9.4\SAS-II Class\Raw Data\SD*" ';
data null_;
  infile DIR;
  input;
  put _infile_; 
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;and show the results&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Jan 2019 04:07:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Library-DBSDTM-does-not-exist/m-p/528232#M144133</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2019-01-18T04:07:51Z</dc:date>
    </item>
    <item>
      <title>Re: Library DBSDTM does not exist.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Library-DBSDTM-does-not-exist/m-p/528266#M144160</link>
      <description>&lt;P&gt;Which SAS setup are you using?&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;University Edition&lt;/LI&gt;
&lt;LI&gt;On Demand For Academics&lt;/LI&gt;
&lt;LI&gt;Server-based with SAS Studio&lt;/LI&gt;
&lt;LI&gt;Server-based with SAS Enterprise Guide&lt;/LI&gt;
&lt;LI&gt;Single machine, everything on your desktop, either with Enterprise Guide or Display Manager&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;?&lt;/P&gt;</description>
      <pubDate>Fri, 18 Jan 2019 08:31:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Library-DBSDTM-does-not-exist/m-p/528266#M144160</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-01-18T08:31:39Z</dc:date>
    </item>
    <item>
      <title>Re: Library DBSDTM does not exist.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Library-DBSDTM-does-not-exist/m-p/528542#M144269</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is the result from the submitted code. The file path I used was copied right from the file so not sure why it doesn't recognize it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;135&amp;nbsp; filename DIR pipe 'dir "C:\SAS 9.4\SAS-II Class\Raw Data\SDTM" ';&lt;BR /&gt;136&amp;nbsp; data null_;&lt;BR /&gt;137&amp;nbsp;&amp;nbsp;&amp;nbsp; infile DIR;&lt;BR /&gt;138&amp;nbsp;&amp;nbsp;&amp;nbsp; input;&lt;BR /&gt;139&amp;nbsp;&amp;nbsp;&amp;nbsp; put _infile_;&lt;BR /&gt;140&amp;nbsp; run;&lt;/DIV&gt;&lt;DIV&gt;NOTE: The infile DIR is:&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Unnamed Pipe Access Device,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PROCESS=dir "C:\SAS 9.4\SAS-II Class\Raw Data\SDTM",&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RECFM=V,LRECL=32767&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;Volume in drive C is OS&lt;BR /&gt;&amp;nbsp;Volume Serial Number is 1A1D-B685&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;Directory of C:\SAS 9.4\SAS-II Class\Raw Data&lt;BR /&gt;Stderr output:&lt;BR /&gt;File Not Found&lt;BR /&gt;NOTE: 5 records were read from the infile DIR.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; The minimum record length was 0.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; The maximum record length was 46.&lt;BR /&gt;NOTE: The data set WORK.NULL_ has 5 observations and 0 variables.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; real time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.63 seconds&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cpu time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.06 seconds&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Sat, 19 Jan 2019 16:50:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Library-DBSDTM-does-not-exist/m-p/528542#M144269</guid>
      <dc:creator>Patelbb</dc:creator>
      <dc:date>2019-01-19T16:50:58Z</dc:date>
    </item>
    <item>
      <title>Re: Library DBSDTM does not exist.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Library-DBSDTM-does-not-exist/m-p/528565#M144281</link>
      <description>&lt;P&gt;Directory SDTM does not exist in that location.&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/237206"&gt;@Patelbb&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is the result from the submitted code. The file path I used was copied right from the file so not sure why it doesn't recognize it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;135&amp;nbsp; filename DIR pipe 'dir "C:\SAS 9.4\SAS-II Class\Raw Data\SDTM" ';&lt;BR /&gt;136&amp;nbsp; data null_;&lt;BR /&gt;137&amp;nbsp;&amp;nbsp;&amp;nbsp; infile DIR;&lt;BR /&gt;138&amp;nbsp;&amp;nbsp;&amp;nbsp; input;&lt;BR /&gt;139&amp;nbsp;&amp;nbsp;&amp;nbsp; put _infile_;&lt;BR /&gt;140&amp;nbsp; run;&lt;/DIV&gt;
&lt;DIV&gt;NOTE: The infile DIR is:&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Unnamed Pipe Access Device,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PROCESS=dir "C:\SAS 9.4\SAS-II Class\Raw Data\SDTM",&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RECFM=V,LRECL=32767&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;Volume in drive C is OS&lt;BR /&gt;&amp;nbsp;Volume Serial Number is 1A1D-B685&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;Directory of C:\SAS 9.4\SAS-II Class\Raw Data&lt;BR /&gt;Stderr output:&lt;BR /&gt;File Not Found&lt;BR /&gt;NOTE: 5 records were read from the infile DIR.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; The minimum record length was 0.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; The maximum record length was 46.&lt;BR /&gt;NOTE: The data set WORK.NULL_ has 5 observations and 0 variables.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; real time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.63 seconds&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cpu time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.06 seconds&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 19 Jan 2019 20:11:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Library-DBSDTM-does-not-exist/m-p/528565#M144281</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-01-19T20:11:27Z</dc:date>
    </item>
  </channel>
</rss>

