<?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: Importing MS Access 07 to SAS data set in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Importing-MS-Access-07-to-SAS-data-set/m-p/65679#M7639</link>
    <description>Hi:&lt;BR /&gt;
  If you followed the steps in the blog post and things work; but then you try the generated code and things don't work, you might want to open a track with Tech Support. It was my understanding that the blog post recommended using SAS/Access to ODBC to get to a Microsoft Access database file. But, does the EG generated code, actually reference DBMS=ACCESS or DBMS=ACCESSCS??? Just like this note shows the use of ExcelCS, you may have to use ACCESSCS instead of the "plain" Access driver???&lt;BR /&gt;
&lt;A href="http://support.sas.com/kb/37/479.html" target="_blank"&gt;http://support.sas.com/kb/37/479.html&lt;/A&gt;&lt;BR /&gt;
 &lt;BR /&gt;
  That would actually be something you could find out from Tech Support -- as your operating system version, your Office version -and- your various servers might come into play in addition to your EG version.&lt;BR /&gt;
&lt;BR /&gt;
  You might also want to post this question in the Enterprise Guide forum, where more EG folks and the author of that original blog all hang out.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
    <pubDate>Sat, 29 Jan 2011 22:55:28 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2011-01-29T22:55:28Z</dc:date>
    <item>
      <title>Importing MS Access 07 to SAS data set</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Importing-MS-Access-07-to-SAS-data-set/m-p/65674#M7634</link>
      <description>Been trying to do this on enterprise guide using code but its not working.&lt;BR /&gt;
&lt;BR /&gt;
I tried the steps from here:&lt;BR /&gt;
&lt;A href="http://blogs.sas.com/sasdummy/index.php?/archives/24-Using-SAS-Enterprise-Guide-to-read-Microsoft-Office-2007-files.html" target="_blank"&gt;http://blogs.sas.com/sasdummy/index.php?/archives/24-Using-SAS-Enterprise-Guide-to-read-Microsoft-Office-2007-files.html&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
And this allowed me to open up the access file in SAS format (under work), however I still cant save this file down so I can use it for calculations and other functions.&lt;BR /&gt;
&lt;BR /&gt;
Just wondering if there are any solutions to do this on code? (The code gives me a error message that my libname is invalid, when it clearly isnt. Just using the proc import function dmbs=access etc.)&lt;BR /&gt;
&lt;BR /&gt;
Cheers</description>
      <pubDate>Tue, 25 Jan 2011 00:02:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Importing-MS-Access-07-to-SAS-data-set/m-p/65674#M7634</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2011-01-25T00:02:39Z</dc:date>
    </item>
    <item>
      <title>Re: Importing MS Access 07 to SAS data set</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Importing-MS-Access-07-to-SAS-data-set/m-p/65675#M7635</link>
      <description>Might be a good Idea that you supply the code and Log so someone can help you...</description>
      <pubDate>Tue, 25 Jan 2011 00:16:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Importing-MS-Access-07-to-SAS-data-set/m-p/65675#M7635</guid>
      <dc:creator>twocanbazza</dc:creator>
      <dc:date>2011-01-25T00:16:17Z</dc:date>
    </item>
    <item>
      <title>Re: Importing MS Access 07 to SAS data set</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Importing-MS-Access-07-to-SAS-data-set/m-p/65676#M7636</link>
      <description>PROC IMPORT DATAFILE="XXX" &lt;BR /&gt;
OUT=test DBMS=access REPLACE;&lt;BR /&gt;
GETNAMES=YES;&lt;BR /&gt;
DATAROW=2;&lt;BR /&gt;
RUN;&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
NOTE: Unable to open parameter catalog: SASUSER.PARMS.PARMS.SLIST in update mode. Temporary parameter values will be saved to &lt;BR /&gt;
WORK.PARMS.PARMS.SLIST.&lt;BR /&gt;
Unable to sample external file, no data in first 5 records.&lt;BR /&gt;
NOTE: Import Cancelled.&lt;BR /&gt;
NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;
NOTE: PROCEDURE IMPORT used (Total process time):&lt;BR /&gt;
      real time           1.03 seconds&lt;BR /&gt;
      user cpu time       0.04 seconds&lt;BR /&gt;
      system cpu time     0.09 seconds&lt;BR /&gt;
      Memory</description>
      <pubDate>Tue, 25 Jan 2011 00:59:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Importing-MS-Access-07-to-SAS-data-set/m-p/65676#M7636</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2011-01-25T00:59:22Z</dc:date>
    </item>
    <item>
      <title>Re: Importing MS Access 07 to SAS data set</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Importing-MS-Access-07-to-SAS-data-set/m-p/65677#M7637</link>
      <description>Hi.&lt;BR /&gt;
Your proc import syntax is wrong for the Access file .&lt;BR /&gt;
For the detail about it,search it in support.sas.com.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Ksharp</description>
      <pubDate>Tue, 25 Jan 2011 04:57:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Importing-MS-Access-07-to-SAS-data-set/m-p/65677#M7637</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2011-01-25T04:57:46Z</dc:date>
    </item>
    <item>
      <title>Re: Importing MS Access 07 to SAS data set</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Importing-MS-Access-07-to-SAS-data-set/m-p/65678#M7638</link>
      <description>umm still cant get it to work. Using enterprise guide 4.1

Message was edited by: solarity</description>
      <pubDate>Sat, 29 Jan 2011 00:13:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Importing-MS-Access-07-to-SAS-data-set/m-p/65678#M7638</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2011-01-29T00:13:21Z</dc:date>
    </item>
    <item>
      <title>Re: Importing MS Access 07 to SAS data set</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Importing-MS-Access-07-to-SAS-data-set/m-p/65679#M7639</link>
      <description>Hi:&lt;BR /&gt;
  If you followed the steps in the blog post and things work; but then you try the generated code and things don't work, you might want to open a track with Tech Support. It was my understanding that the blog post recommended using SAS/Access to ODBC to get to a Microsoft Access database file. But, does the EG generated code, actually reference DBMS=ACCESS or DBMS=ACCESSCS??? Just like this note shows the use of ExcelCS, you may have to use ACCESSCS instead of the "plain" Access driver???&lt;BR /&gt;
&lt;A href="http://support.sas.com/kb/37/479.html" target="_blank"&gt;http://support.sas.com/kb/37/479.html&lt;/A&gt;&lt;BR /&gt;
 &lt;BR /&gt;
  That would actually be something you could find out from Tech Support -- as your operating system version, your Office version -and- your various servers might come into play in addition to your EG version.&lt;BR /&gt;
&lt;BR /&gt;
  You might also want to post this question in the Enterprise Guide forum, where more EG folks and the author of that original blog all hang out.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Sat, 29 Jan 2011 22:55:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Importing-MS-Access-07-to-SAS-data-set/m-p/65679#M7639</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2011-01-29T22:55:28Z</dc:date>
    </item>
    <item>
      <title>Re: Importing MS Access 07 to SAS data set</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Importing-MS-Access-07-to-SAS-data-set/m-p/65680#M7640</link>
      <description>Hi.&lt;BR /&gt;
Sorry .I did not notice you are using access07, I think proc import can not support Office2007,you need  libname xxx odbc '...' just as Cynthia mentioned to import data set.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Ksharp</description>
      <pubDate>Mon, 21 Feb 2011 06:10:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Importing-MS-Access-07-to-SAS-data-set/m-p/65680#M7640</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2011-02-21T06:10:35Z</dc:date>
    </item>
  </channel>
</rss>

