<?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: After Creating a Library, How do I get a Data Set Into It? in SAS Studio</title>
    <link>https://communities.sas.com/t5/SAS-Studio/After-Creating-a-Library-How-do-I-get-a-Data-Set-Into-It/m-p/366372#M2745</link>
    <description>&lt;P&gt;Please include screenshots of the Library in SAS Studio&lt;/P&gt;
&lt;P&gt;Please show your code and log, including the library assignment and the output from PROC DATASETS&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 13 Jun 2017 01:05:18 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2017-06-13T01:05:18Z</dc:date>
    <item>
      <title>After Creating a Library, How do I get a Data Set Into It?</title>
      <link>https://communities.sas.com/t5/SAS-Studio/After-Creating-a-Library-How-do-I-get-a-Data-Set-Into-It/m-p/248511#M199</link>
      <description>&lt;P&gt;I created a library called mydata, how do I import data into it so I can start running analyses? (Also, why is this so hard?) &amp;nbsp;OK, don't need to answer that second question. &amp;nbsp;I'm using SAS University, so are there some limitations I'm bumping against -- maybe it does not allow data to be read into it? &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks. &amp;nbsp;New User. &amp;nbsp;Previously used another stats system where this was, well, astonishingly easy, but my school has urged me to use SAS, and so I'm stuck on these basic things.&lt;/P&gt;</description>
      <pubDate>Sat, 06 Feb 2016 21:42:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/After-Creating-a-Library-How-do-I-get-a-Data-Set-Into-It/m-p/248511#M199</guid>
      <dc:creator>Sands7</dc:creator>
      <dc:date>2016-02-06T21:42:13Z</dc:date>
    </item>
    <item>
      <title>Re: After Creating a Library, How do I get a Data Set Into It?</title>
      <link>https://communities.sas.com/t5/SAS-Studio/After-Creating-a-Library-How-do-I-get-a-Data-Set-Into-It/m-p/248515#M200</link>
      <description>&lt;P&gt;Okay let us suppose that you have a data set and you added it to the shared folder, so you can see it under the "Server Files And Folders" directly or under another folder.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then you can use proc import&amp;nbsp;to import your data to your library like _suppose your new data is CSV file and its name is data1_:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc import datafile="/folders/myfolders/data1.csv"
     out=&lt;STRONG&gt;mydata&lt;/STRONG&gt;.data1
     dbms=csv
     replace;
     getnames=no;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;You need to specify your data file name in the &lt;STRONG&gt;datafile&lt;/STRONG&gt;&amp;nbsp;parameters. Then specify your library name in the &lt;STRONG&gt;out&lt;/STRONG&gt;&amp;nbsp;parameters with the name you choose for your data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope that help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also if you do not like to write the code each time you import new data. You can use import data option in SAS Studio and then edit the code by&amp;nbsp;your library name.&lt;/P&gt;</description>
      <pubDate>Sat, 06 Feb 2016 23:25:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/After-Creating-a-Library-How-do-I-get-a-Data-Set-Into-It/m-p/248515#M200</guid>
      <dc:creator>mohamed_zaki</dc:creator>
      <dc:date>2016-02-06T23:25:47Z</dc:date>
    </item>
    <item>
      <title>Re: After Creating a Library, How do I get a Data Set Into It?</title>
      <link>https://communities.sas.com/t5/SAS-Studio/After-Creating-a-Library-How-do-I-get-a-Data-Set-Into-It/m-p/248516#M201</link>
      <description>&lt;P&gt;Thanks. &amp;nbsp;When I tried suggested code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&lt;STRONG&gt;56 proc import datafile="/folders/myfolders/test.csv"&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&lt;STRONG&gt;57 out=test.data1&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&lt;STRONG&gt;58 dbms=csv&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&lt;STRONG&gt;59 replace;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&lt;STRONG&gt;60 getnames=no;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&lt;STRONG&gt;61 run;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;I got this error message:&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasError"&gt;&lt;STRONG&gt;ERROR: Library name is not assigned.&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV class="sasError"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasError"&gt;Within SAS Studio under Server Files and Folders I have My Folders. &amp;nbsp;What is probably incorrect above is the first line of code, which specifies "folders/myfolders/test.csv". &amp;nbsp;Thing is, I don't know how to specify where my little data file is. &amp;nbsp;Any help appreciated. &amp;nbsp;Thanks.&lt;/DIV&gt;&lt;DIV class="sasError"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasError"&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Sun, 07 Feb 2016 00:01:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/After-Creating-a-Library-How-do-I-get-a-Data-Set-Into-It/m-p/248516#M201</guid>
      <dc:creator>Sands7</dc:creator>
      <dc:date>2016-02-07T00:01:22Z</dc:date>
    </item>
    <item>
      <title>Re: After Creating a Library, How do I get a Data Set Into It?</title>
      <link>https://communities.sas.com/t5/SAS-Studio/After-Creating-a-Library-How-do-I-get-a-Data-Set-Into-It/m-p/248520#M202</link>
      <description>SAS UE is built on a VM so it makes a little diff than dealing with an application installed on your computer. The VM is unix and the path to the shared folders that you created in the setup is correct as specified above. &lt;BR /&gt;&lt;BR /&gt;If you remove test. From your program above you should be able to access your data. Have you tried any of the SAS tutorials? There's a YouTube series and the free SAS programming course. &lt;BR /&gt;&lt;BR /&gt;Or if you switch to process flow method you can use the GUI.</description>
      <pubDate>Sun, 07 Feb 2016 01:28:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/After-Creating-a-Library-How-do-I-get-a-Data-Set-Into-It/m-p/248520#M202</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-02-07T01:28:48Z</dc:date>
    </item>
    <item>
      <title>Re: After Creating a Library, How do I get a Data Set Into It?</title>
      <link>https://communities.sas.com/t5/SAS-Studio/After-Creating-a-Library-How-do-I-get-a-Data-Set-Into-It/m-p/248522#M203</link>
      <description>&lt;P&gt;"Test" is the name of my data file, so I'm pretty sure I can't remove it and actually access the file, because then my code would not have the name of the file it is tyring to access.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I actually figured out a work-around: &amp;nbsp;1) &amp;nbsp;Import CSV file into My Folders (easy); 2) Under Output Data select Change button; 3) Save As allows you to save file in Work folder in Libraries with distinct name; 4) Run statistics from table in Work folder.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I realize that this will need to be done each time since Work is a temporary folder, but after 5 hours of trying to figure out how to upload a CSV file, it's nice to run some numbers from my data.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If anyone has a solution to my original problem, how to actualy get a CSV File into the Library, I'm listening, but for now I'm OK to run my numbers this way. &amp;nbsp;And again, why does this take more than 30 seconds to figure out?&lt;/P&gt;</description>
      <pubDate>Sun, 07 Feb 2016 02:11:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/After-Creating-a-Library-How-do-I-get-a-Data-Set-Into-It/m-p/248522#M203</guid>
      <dc:creator>Sands7</dc:creator>
      <dc:date>2016-02-07T02:11:25Z</dc:date>
    </item>
    <item>
      <title>Re: After Creating a Library, How do I get a Data Set Into It?</title>
      <link>https://communities.sas.com/t5/SAS-Studio/After-Creating-a-Library-How-do-I-get-a-Data-Set-Into-It/m-p/248526#M204</link>
      <description>&lt;P&gt;1. Assign a library - in SAS a library is a directory that you can use to save files. You reference data sets via LIBNAME.DATASETNAME. If you assign the libname by clicking the cabinet icon under Server/Folders you can select an option for the library to stay assigned between sessions of SAS UE. Otherwise you can add the relevant line to your code each time.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname mylib '/folders/myfolders';&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;2. Import your CSV to SAS dataset.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc import out=mylib.mydata datafile='/folders/myfolders/test.csv' dbms=CSV replace; 
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;3. Data set is in the library - permanently. If you want to reference it in future programs, assign the libname and go to town.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc print data=mylib.mydata;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;4. Your file is ready for analysis in procs&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc freq data=mylib.mydata;
table _all_;
run;

proc means data=mylib.mydata;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 07 Feb 2016 03:29:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/After-Creating-a-Library-How-do-I-get-a-Data-Set-Into-It/m-p/248526#M204</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-02-07T03:29:15Z</dc:date>
    </item>
    <item>
      <title>Re: After Creating a Library, How do I get a Data Set Into It?</title>
      <link>https://communities.sas.com/t5/SAS-Studio/After-Creating-a-Library-How-do-I-get-a-Data-Set-Into-It/m-p/366371#M2744</link>
      <description>&lt;P&gt;If i has old datasets means which were created on sas 9.2,how to use them in sas studio.I assigned a library ------&amp;gt;&lt;/P&gt;&lt;P&gt;libname Data &amp;nbsp;'/folders/myfolders/'; but i cant see any datasets which were saved in that folder.I'm attaching a screen shot how my datssets look like in a folder..&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/13932i81D7BCE088BD7588/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="Screenshot (1).png" title="Screenshot (1).png" /&gt;</description>
      <pubDate>Tue, 13 Jun 2017 00:54:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/After-Creating-a-Library-How-do-I-get-a-Data-Set-Into-It/m-p/366371#M2744</guid>
      <dc:creator>Bhargav_Movva</dc:creator>
      <dc:date>2017-06-13T00:54:33Z</dc:date>
    </item>
    <item>
      <title>Re: After Creating a Library, How do I get a Data Set Into It?</title>
      <link>https://communities.sas.com/t5/SAS-Studio/After-Creating-a-Library-How-do-I-get-a-Data-Set-Into-It/m-p/366372#M2745</link>
      <description>&lt;P&gt;Please include screenshots of the Library in SAS Studio&lt;/P&gt;
&lt;P&gt;Please show your code and log, including the library assignment and the output from PROC DATASETS&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jun 2017 01:05:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/After-Creating-a-Library-How-do-I-get-a-Data-Set-Into-It/m-p/366372#M2745</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-06-13T01:05:18Z</dc:date>
    </item>
    <item>
      <title>Re: After Creating a Library, How do I get a Data Set Into It?</title>
      <link>https://communities.sas.com/t5/SAS-Studio/After-Creating-a-Library-How-do-I-get-a-Data-Set-Into-It/m-p/366375#M2746</link>
      <description>&lt;P&gt;My situation is like this,earlier i used to practice on sas9.2 on windows 32 bit ,as my laptop is not working i moved to other one on which windows 8.1 is installed and it is also a 64 bit platform.I tried to install same sas version i had earlier and failed after that i came to know that there exists some differences between 32 bit and 64 bit.So i moved to sas university version and i copied my datasets on previous computer to folders of sas univ edition via pen drive.so i assigned a library by using libname statment to the same folder where i saved my datsets,but can't see ant datasets inside it.. I'm attching screenshots with a serial number&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/13933i32FFC817E0472428/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="code i used.png" title="code i used.png" /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/13934iD5D73A365F114916/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="Data saved location.png" title="Data saved location.png" /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/13935i729316F636683DFC/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="log.png" title="log.png" /&gt;</description>
      <pubDate>Tue, 13 Jun 2017 01:23:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/After-Creating-a-Library-How-do-I-get-a-Data-Set-Into-It/m-p/366375#M2746</guid>
      <dc:creator>Bhargav_Movva</dc:creator>
      <dc:date>2017-06-13T01:23:05Z</dc:date>
    </item>
    <item>
      <title>Re: After Creating a Library, How do I get a Data Set Into It?</title>
      <link>https://communities.sas.com/t5/SAS-Studio/After-Creating-a-Library-How-do-I-get-a-Data-Set-Into-It/m-p/366376#M2747</link>
      <description>&lt;P&gt;What happens when you run the following, just paste the log in please, I don't like downloading attachments.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname myData '/folders/myfolders/';

proc datasets lib=myData;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;For example I get:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;ARTICLE id="IDX"&gt;
&lt;TABLE class="table"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TH class="rowheader" scope="row"&gt;Libref&lt;/TH&gt;
&lt;TD class="data"&gt;MYDATA&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="rowheader" scope="row"&gt;Engine&lt;/TH&gt;
&lt;TD class="data"&gt;V9&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="rowheader" scope="row"&gt;Physical Name&lt;/TH&gt;
&lt;TD class="data"&gt;/folders/myfolders&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="rowheader" scope="row"&gt;Filename&lt;/TH&gt;
&lt;TD class="data"&gt;/folders/myfolders&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="rowheader" scope="row"&gt;Inode Number&lt;/TH&gt;
&lt;TD class="data"&gt;5285176&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="rowheader" scope="row"&gt;Access Permission&lt;/TH&gt;
&lt;TD class="data"&gt;rwxr-xr-x&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="rowheader" scope="row"&gt;Owner Name&lt;/TH&gt;
&lt;TD class="data"&gt;UNKNOWN&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="rowheader" scope="row"&gt;File Size&lt;/TH&gt;
&lt;TD class="data"&gt;3KB&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="rowheader" scope="row"&gt;File Size (bytes)&lt;/TH&gt;
&lt;TD class="data"&gt;2720&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;/ARTICLE&gt;
&lt;ARTICLE id="IDX1"&gt;
&lt;TABLE class="table"&gt;&lt;CAPTION&gt;&amp;nbsp;&lt;/CAPTION&gt;&lt;COLGROUP&gt;&lt;COL /&gt;&lt;/COLGROUP&gt;&lt;COLGROUP&gt;&lt;COL /&gt;&lt;COL /&gt;&lt;COL /&gt;&lt;COL /&gt;&lt;/COLGROUP&gt;
&lt;THEAD&gt;
&lt;TR&gt;
&lt;TH class="r b header" scope="col"&gt;#&lt;/TH&gt;
&lt;TH class="b header" scope="col"&gt;Name&lt;/TH&gt;
&lt;TH class="b header" scope="col"&gt;Member Type&lt;/TH&gt;
&lt;TH class="r b header" scope="col"&gt;File Size&lt;/TH&gt;
&lt;TH class="b header" scope="col"&gt;Last Modified&lt;/TH&gt;
&lt;/TR&gt;
&lt;/THEAD&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;1&lt;/TH&gt;
&lt;TD class="data"&gt;CLASS&lt;/TD&gt;
&lt;TD class="data"&gt;DATA&lt;/TD&gt;
&lt;TD class="r data"&gt;128KB&lt;/TD&gt;
&lt;TD class="data"&gt;2017-05-24 01:58:45&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;2&lt;/TH&gt;
&lt;TD class="data"&gt;CLASS_PERMANENT&lt;/TD&gt;
&lt;TD class="data"&gt;DATA&lt;/TD&gt;
&lt;TD class="r data"&gt;128KB&lt;/TD&gt;
&lt;TD class="data"&gt;2016-08-20 22:31:13&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;3&lt;/TH&gt;
&lt;TD class="data"&gt;DATEN_EM2012_DUMMIES&lt;/TD&gt;
&lt;TD class="data"&gt;DATA&lt;/TD&gt;
&lt;TD class="r data"&gt;128KB&lt;/TD&gt;
&lt;TD class="data"&gt;2016-04-21 19:37:04&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;4&lt;/TH&gt;
&lt;TD class="data"&gt;XXXXXXXXXXXXX&lt;/TD&gt;
&lt;TD class="data"&gt;DATA&lt;/TD&gt;
&lt;TD class="r data"&gt;19MB&lt;/TD&gt;
&lt;TD class="data"&gt;2016-06-10 23:24:25&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;5&lt;/TH&gt;
&lt;TD class="data"&gt;FORMATS&lt;/TD&gt;
&lt;TD class="data"&gt;CATALOG&lt;/TD&gt;
&lt;TD class="r data"&gt;24KB&lt;/TD&gt;
&lt;TD class="data"&gt;2016-12-29 02:46:21&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;6&lt;/TH&gt;
&lt;TD class="data"&gt;ZZZZZZZZZZZZZZZ&lt;/TD&gt;
&lt;TD class="data"&gt;DATA&lt;/TD&gt;
&lt;TD class="r data"&gt;832KB&lt;/TD&gt;
&lt;TD class="data"&gt;2016-10-05 04:01:08&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;7&lt;/TH&gt;
&lt;TD class="data"&gt;OUT&lt;/TD&gt;
&lt;TD class="data"&gt;DATA&lt;/TD&gt;
&lt;TD class="r data"&gt;128KB&lt;/TD&gt;
&lt;TD class="data"&gt;2016-06-16 00:00:35&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;8&lt;/TH&gt;
&lt;TD class="data"&gt;PROSTATECANCER&lt;/TD&gt;
&lt;TD class="data"&gt;DATA&lt;/TD&gt;
&lt;TD class="r data"&gt;145KB&lt;/TD&gt;
&lt;TD class="data"&gt;2011-01-07 04:25:02&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;9&lt;/TH&gt;
&lt;TD class="data"&gt;SASMACR&lt;/TD&gt;
&lt;TD class="data"&gt;CATALOG&lt;/TD&gt;
&lt;TD class="r data"&gt;28KB&lt;/TD&gt;
&lt;TD class="data"&gt;2016-09-22 18:51:54&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;/ARTICLE&gt;</description>
      <pubDate>Tue, 13 Jun 2017 01:29:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/After-Creating-a-Library-How-do-I-get-a-Data-Set-Into-It/m-p/366376#M2747</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-06-13T01:29:19Z</dc:date>
    </item>
    <item>
      <title>Re: After Creating a Library, How do I get a Data Set Into It?</title>
      <link>https://communities.sas.com/t5/SAS-Studio/After-Creating-a-Library-How-do-I-get-a-Data-Set-Into-It/m-p/366378#M2748</link>
      <description>&lt;DIV class="dijitContentPane dijitBorderContainer-child dijitBorderContainer-dijitContentPane dijitBorderContainerPane dijitAlignCenter dijitContentPaneSingleChild"&gt;&lt;DIV class="dijitBorderContainer dijitContainer row-fluid dijitLayoutContainer"&gt;&lt;DIV class="dijitContentPane dijitAlignCenter dijitContentPaneSingleChild dijitBorderContainer-child dijitBorderContainer-dijitContentPane dijitBorderContainerPane"&gt;&lt;DIV class="tabs dijitBorderContainer dijitContainer dojoDndTarget dijitLayoutContainer sasStudioTabsParentContainer dojoDndContainerOver"&gt;&lt;DIV class="dijitTabContainer dijitTabContainerTop dijitContainer dijitLayoutContainer tabStrip-disabled sasStudioTabsTabContainer sasStudioTabsTabContainerVertical sasStudioTabsTop dijitBorderContainer-child dijitBorderContainer-dijitTabContainerTop dijitBorderContainerPane dijitAlignCenter"&gt;&lt;DIV class="dijitTabPaneWrapper dijitTabContainerTop-container dijitAlignCenter"&gt;&lt;DIV class="dijitTabContainerTopChildWrapper dijitVisible"&gt;&lt;DIV class="dijitBorderContainer dijitContainer sasStudioTabsTabContainerChild dijitTabPane dijitTabContainerTop-child dijitTabContainerTop-dijitBorderContainer dijitLayoutContainer"&gt;&lt;DIV class="dijitBorderContainer dijitContainer dojoDndTarget dijitBorderContainer-child dijitBorderContainer-dijitBorderContainer dijitBorderContainerPane dijitAlignCenter dijitLayoutContainer dojoDndContainerOver"&gt;&lt;DIV class="dijitTabContainer dijitTabContainerTop dijitContainer dijitLayoutContainer tabStrip-disabled sasSuiteTabs dijitBorderContainer-child dijitBorderContainer-dijitTabContainerTop dijitBorderContainerPane dijitAlignCenter"&gt;&lt;DIV class="dijitTabPaneWrapper dijitTabContainerTop-container dijitAlignCenter"&gt;&lt;DIV class="dijitTabContainerTopChildWrapper dijitVisible"&gt;&lt;DIV class="dijitBorderContainer dijitContainer dijitTabPane dijitTabContainerTop-child dijitTabContainerTop-dijitBorderContainer dijitLayoutContainer"&gt;&lt;DIV class="dijitBorderContainer dijitContainer dijitBorderContainer-child dijitBorderContainer-dijitBorderContainer dijitBorderContainerPane dijitAlignCenter dijitLayoutContainer"&gt;&lt;DIV class="dijitContentPane dijitBorderContainer-child dijitBorderContainer-dijitContentPane dijitBorderContainerPane dijitAlignCenter"&gt;&lt;DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;61&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;62 proc datasets lib=data;&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;WARNING: No matching members in directory.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;63 run;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;64&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;65 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;78&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="dijitContentPane statusBar dijitBorderContainer-child dijitBorderContainer-dijitContentPane dijitBorderContainerPane dijitAlignBottom"&gt;&lt;DIV class="statusBarMessage"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 13 Jun 2017 01:32:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/After-Creating-a-Library-How-do-I-get-a-Data-Set-Into-It/m-p/366378#M2748</guid>
      <dc:creator>Bhargav_Movva</dc:creator>
      <dc:date>2017-06-13T01:32:45Z</dc:date>
    </item>
    <item>
      <title>Re: After Creating a Library, How do I get a Data Set Into It?</title>
      <link>https://communities.sas.com/t5/SAS-Studio/After-Creating-a-Library-How-do-I-get-a-Data-Set-Into-It/m-p/366380#M2749</link>
      <description>&lt;P&gt;Can you upload a dataset?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm wondering if the 32/64 bit is the issue. I feel like it shouldn't be, but you may have needed to use PROC XPORT/CPORT to transfer the files properly.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jun 2017 01:39:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/After-Creating-a-Library-How-do-I-get-a-Data-Set-Into-It/m-p/366380#M2749</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-06-13T01:39:15Z</dc:date>
    </item>
  </channel>
</rss>

