<?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 Problem connecting with MS Access 2000 in Microsoft Integration with SAS</title>
    <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Problem-connecting-with-MS-Access-2000/m-p/46448#M699</link>
    <description>I am trying to import a table from MS Access. However the log indicates “ERROR: DBMS type ACCESS2000 not valid for import”. My MS access has 2000 file format. I am not sure why am I observing this error. I am using SAS 9.1.3 learning edition. I am also not sure if this is supported or needs some service pack (for learning edition). The code snippet is written below:&lt;BR /&gt;
&lt;BR /&gt;
*****************************************************************&lt;BR /&gt;
SAS Code&lt;BR /&gt;
*****************************************************************&lt;BR /&gt;
&lt;BR /&gt;
proc import table = 'student'&lt;BR /&gt;
		out = "table1"&lt;BR /&gt;
		dbms = access2000 replace;&lt;BR /&gt;
		database = 'C:\Documents and Settings\User\My Documents\vinay.mdb';&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
proc print data=table1;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
*****************************************************************&lt;BR /&gt;
Log file&lt;BR /&gt;
*****************************************************************&lt;BR /&gt;
&lt;BR /&gt;
1          ;*';*";*/;quit;run;&lt;BR /&gt;
2          OPTIONS PAGENO=MIN;&lt;BR /&gt;
3          %LET _CLIENTTASKLABEL=%NRBQUOTE(Code);&lt;BR /&gt;
4          %LET _EGTASKLABEL=%NRBQUOTE(Code);&lt;BR /&gt;
5          %LET _CLIENTPROJECTNAME=%NRBQUOTE();&lt;BR /&gt;
6          %LET _SASPROGRAMFILE=;&lt;BR /&gt;
7          &lt;BR /&gt;
8          ODS _ALL_ CLOSE;&lt;BR /&gt;
NOTE: Some of your options or statements may not be supported with the Activex or Java series of devices.  Graph defaults for these &lt;BR /&gt;
      drivers may be different from other SAS/GRAPH device drivers.  For further information, please contact Technical Support.&lt;BR /&gt;
9          OPTIONS DEV=ACTIVEX;&lt;BR /&gt;
10         ODS LISTING;&lt;BR /&gt;
11         FILENAME EGSR TEMP;&lt;BR /&gt;
NOTE: Writing TAGSETS.SASREPORT11(EGSR) Body file: EGSR&lt;BR /&gt;
12         ODS tagsets.sasreport11(ID=EGSR) FILE=EGSR STYLE=EGDefault&lt;BR /&gt;
12       ! STYLESHEET=(URL="file:///C:/Program%20Files/SAS/Shared%20Files/BIClientStyles/EGDefault.css") NOGTITLE NOGFOOTNOTE&lt;BR /&gt;
12       ! GPATH=&amp;amp;sasworklocation ENCODING=UTF8;&lt;BR /&gt;
13         &lt;BR /&gt;
14         %gaccessible;&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
15         proc import table = 'student'&lt;BR /&gt;
16         		out = "table1"&lt;BR /&gt;
17         		dbms = access2000 replace;&lt;BR /&gt;
ERROR: DBMS type ACCESS2000 not valid for import.&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           0.00 seconds&lt;BR /&gt;
      cpu time            0.00 seconds&lt;BR /&gt;
      &lt;BR /&gt;
18         		database = 'C:\Documents and Settings\User\My Documents\vinay.mdb';&lt;BR /&gt;
19         run;&lt;BR /&gt;
20         &lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
21         proc print data=table1;&lt;BR /&gt;
ERROR: File WORK.TABLE1.DATA does not exist.&lt;BR /&gt;
22         run;&lt;BR /&gt;
&lt;BR /&gt;
NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;
NOTE: PROCEDURE PRINT used (Total process time):&lt;BR /&gt;
      real time           0.00 seconds&lt;BR /&gt;
      cpu time            0.01 seconds&lt;BR /&gt;
      &lt;BR /&gt;
23         &lt;BR /&gt;
24         &lt;BR /&gt;
25         %LET _CLIENTTASKLABEL=;&lt;BR /&gt;
26         %LET _EGTASKLABEL=;&lt;BR /&gt;
27         %LET _CLIENTPROJECTNAME=;&lt;BR /&gt;
28         %LET _SASPROGRAMFILE=;&lt;BR /&gt;
29         &lt;BR /&gt;
30         ;*';*";*/;quit;run;&lt;BR /&gt;
31         ODS _ALL_ CLOSE;&lt;BR /&gt;
32         &lt;BR /&gt;
33         &lt;BR /&gt;
34         QUIT; RUN;&lt;BR /&gt;
35</description>
    <pubDate>Mon, 15 Sep 2008 19:45:42 GMT</pubDate>
    <dc:creator>deleted_user</dc:creator>
    <dc:date>2008-09-15T19:45:42Z</dc:date>
    <item>
      <title>Problem connecting with MS Access 2000</title>
      <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Problem-connecting-with-MS-Access-2000/m-p/46448#M699</link>
      <description>I am trying to import a table from MS Access. However the log indicates “ERROR: DBMS type ACCESS2000 not valid for import”. My MS access has 2000 file format. I am not sure why am I observing this error. I am using SAS 9.1.3 learning edition. I am also not sure if this is supported or needs some service pack (for learning edition). The code snippet is written below:&lt;BR /&gt;
&lt;BR /&gt;
*****************************************************************&lt;BR /&gt;
SAS Code&lt;BR /&gt;
*****************************************************************&lt;BR /&gt;
&lt;BR /&gt;
proc import table = 'student'&lt;BR /&gt;
		out = "table1"&lt;BR /&gt;
		dbms = access2000 replace;&lt;BR /&gt;
		database = 'C:\Documents and Settings\User\My Documents\vinay.mdb';&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
proc print data=table1;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
*****************************************************************&lt;BR /&gt;
Log file&lt;BR /&gt;
*****************************************************************&lt;BR /&gt;
&lt;BR /&gt;
1          ;*';*";*/;quit;run;&lt;BR /&gt;
2          OPTIONS PAGENO=MIN;&lt;BR /&gt;
3          %LET _CLIENTTASKLABEL=%NRBQUOTE(Code);&lt;BR /&gt;
4          %LET _EGTASKLABEL=%NRBQUOTE(Code);&lt;BR /&gt;
5          %LET _CLIENTPROJECTNAME=%NRBQUOTE();&lt;BR /&gt;
6          %LET _SASPROGRAMFILE=;&lt;BR /&gt;
7          &lt;BR /&gt;
8          ODS _ALL_ CLOSE;&lt;BR /&gt;
NOTE: Some of your options or statements may not be supported with the Activex or Java series of devices.  Graph defaults for these &lt;BR /&gt;
      drivers may be different from other SAS/GRAPH device drivers.  For further information, please contact Technical Support.&lt;BR /&gt;
9          OPTIONS DEV=ACTIVEX;&lt;BR /&gt;
10         ODS LISTING;&lt;BR /&gt;
11         FILENAME EGSR TEMP;&lt;BR /&gt;
NOTE: Writing TAGSETS.SASREPORT11(EGSR) Body file: EGSR&lt;BR /&gt;
12         ODS tagsets.sasreport11(ID=EGSR) FILE=EGSR STYLE=EGDefault&lt;BR /&gt;
12       ! STYLESHEET=(URL="file:///C:/Program%20Files/SAS/Shared%20Files/BIClientStyles/EGDefault.css") NOGTITLE NOGFOOTNOTE&lt;BR /&gt;
12       ! GPATH=&amp;amp;sasworklocation ENCODING=UTF8;&lt;BR /&gt;
13         &lt;BR /&gt;
14         %gaccessible;&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
15         proc import table = 'student'&lt;BR /&gt;
16         		out = "table1"&lt;BR /&gt;
17         		dbms = access2000 replace;&lt;BR /&gt;
ERROR: DBMS type ACCESS2000 not valid for import.&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           0.00 seconds&lt;BR /&gt;
      cpu time            0.00 seconds&lt;BR /&gt;
      &lt;BR /&gt;
18         		database = 'C:\Documents and Settings\User\My Documents\vinay.mdb';&lt;BR /&gt;
19         run;&lt;BR /&gt;
20         &lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
21         proc print data=table1;&lt;BR /&gt;
ERROR: File WORK.TABLE1.DATA does not exist.&lt;BR /&gt;
22         run;&lt;BR /&gt;
&lt;BR /&gt;
NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;
NOTE: PROCEDURE PRINT used (Total process time):&lt;BR /&gt;
      real time           0.00 seconds&lt;BR /&gt;
      cpu time            0.01 seconds&lt;BR /&gt;
      &lt;BR /&gt;
23         &lt;BR /&gt;
24         &lt;BR /&gt;
25         %LET _CLIENTTASKLABEL=;&lt;BR /&gt;
26         %LET _EGTASKLABEL=;&lt;BR /&gt;
27         %LET _CLIENTPROJECTNAME=;&lt;BR /&gt;
28         %LET _SASPROGRAMFILE=;&lt;BR /&gt;
29         &lt;BR /&gt;
30         ;*';*";*/;quit;run;&lt;BR /&gt;
31         ODS _ALL_ CLOSE;&lt;BR /&gt;
32         &lt;BR /&gt;
33         &lt;BR /&gt;
34         QUIT; RUN;&lt;BR /&gt;
35</description>
      <pubDate>Mon, 15 Sep 2008 19:45:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Problem-connecting-with-MS-Access-2000/m-p/46448#M699</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-09-15T19:45:42Z</dc:date>
    </item>
    <item>
      <title>Re: Problem connecting with MS Access 2000</title>
      <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Problem-connecting-with-MS-Access-2000/m-p/46449#M700</link>
      <description>I am newbie to SAS. Please Help.&lt;BR /&gt;
Thank You.</description>
      <pubDate>Mon, 15 Sep 2008 20:03:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Problem-connecting-with-MS-Access-2000/m-p/46449#M700</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-09-15T20:03:22Z</dc:date>
    </item>
    <item>
      <title>Re: Problem connecting with MS Access 2000</title>
      <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Problem-connecting-with-MS-Access-2000/m-p/46450#M701</link>
      <description>Review the SAS DOC for PROC IMPORT, specifically the keyword / syntax for what you are specify as TABLE= -- I see specific references to DATATABLE= but not TABLE= in the SAS 9.2 DOC (link below).&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
SAS/ACCESS(R) 9.2 Interface to PC Files: Reference&lt;BR /&gt;
&lt;BR /&gt;
Section....Microsoft Access Database Files&lt;BR /&gt;
&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/acpcref/59619/HTML/default/a003103770.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/acpcref/59619/HTML/default/a003103770.htm&lt;/A&gt;</description>
      <pubDate>Mon, 15 Sep 2008 20:13:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Problem-connecting-with-MS-Access-2000/m-p/46450#M701</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2008-09-15T20:13:17Z</dc:date>
    </item>
  </channel>
</rss>

