<?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 Export MS Access 2000 in Unix in Microsoft Integration with SAS</title>
    <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Export-MS-Access-2000-in-Unix/m-p/65252#M882</link>
    <description>Hi all,&lt;BR /&gt;
&lt;BR /&gt;
I have to export the SAS dataset to MS Access 2000 using SAS Unix. When I try to run the job, I am getting the following error. &lt;BR /&gt;
&lt;BR /&gt;
&lt;I&gt;ERROR: DBMS type ACCESS2000 not valid for export.&lt;/I&gt;&lt;BR /&gt;
&lt;BR /&gt;
I am using SAS 9.1.2 version.&lt;BR /&gt;
&lt;BR /&gt;
Request your help on resolving this error.&lt;BR /&gt;
&lt;BR /&gt;
Thanks,&lt;BR /&gt;
Satya</description>
    <pubDate>Tue, 18 Aug 2009 16:15:04 GMT</pubDate>
    <dc:creator>deleted_user</dc:creator>
    <dc:date>2009-08-18T16:15:04Z</dc:date>
    <item>
      <title>Export MS Access 2000 in Unix</title>
      <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Export-MS-Access-2000-in-Unix/m-p/65252#M882</link>
      <description>Hi all,&lt;BR /&gt;
&lt;BR /&gt;
I have to export the SAS dataset to MS Access 2000 using SAS Unix. When I try to run the job, I am getting the following error. &lt;BR /&gt;
&lt;BR /&gt;
&lt;I&gt;ERROR: DBMS type ACCESS2000 not valid for export.&lt;/I&gt;&lt;BR /&gt;
&lt;BR /&gt;
I am using SAS 9.1.2 version.&lt;BR /&gt;
&lt;BR /&gt;
Request your help on resolving this error.&lt;BR /&gt;
&lt;BR /&gt;
Thanks,&lt;BR /&gt;
Satya</description>
      <pubDate>Tue, 18 Aug 2009 16:15:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Export-MS-Access-2000-in-Unix/m-p/65252#M882</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-08-18T16:15:04Z</dc:date>
    </item>
    <item>
      <title>Re: Export MS Access 2000 in Unix</title>
      <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Export-MS-Access-2000-in-Unix/m-p/65253#M883</link>
      <description>Please share the SAS-generated log with your SAS program code revealed.&lt;BR /&gt;
&lt;BR /&gt;
Also, this SAS website DOC may be useful:&lt;BR /&gt;
&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/acpcref/61891/HTML/default/a000611258.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/acpcref/61891/HTML/default/a000611258.htm&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.</description>
      <pubDate>Tue, 18 Aug 2009 17:14:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Export-MS-Access-2000-in-Unix/m-p/65253#M883</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2009-08-18T17:14:10Z</dc:date>
    </item>
    <item>
      <title>Re: Export MS Access 2000 in Unix</title>
      <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Export-MS-Access-2000-in-Unix/m-p/65254#M884</link>
      <description>Please find the code snippets used for exporting the data set&lt;BR /&gt;
&lt;BR /&gt;
PROC EXPORT DATA = My_data_set&lt;BR /&gt;
	OUTTABLE= GMP &lt;BR /&gt;
	DBMS=ACCESS2000 REPLACE;&lt;BR /&gt;
	DATABASE="/tmp/mydata.mdb";&lt;BR /&gt;
	RUN; &lt;BR /&gt;
&lt;BR /&gt;
The log message is,&lt;BR /&gt;
&lt;BR /&gt;
590      !  PROC EXPORT DATA = My_data_set&lt;BR /&gt;
591        	OUTTABLE= GMP&lt;BR /&gt;
592        	DBMS=ACCESS2000 REPLACE;&lt;BR /&gt;
ERROR: DBMS type ACCESS2000 not valid for export.&lt;BR /&gt;
NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;
NOTE: PROCEDURE EXPORT used (Total process time):&lt;BR /&gt;
      real time           0.00 seconds&lt;BR /&gt;
      cpu time            0.00 seconds</description>
      <pubDate>Tue, 18 Aug 2009 17:19:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Export-MS-Access-2000-in-Unix/m-p/65254#M884</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-08-18T17:19:26Z</dc:date>
    </item>
    <item>
      <title>Re: Export MS Access 2000 in Unix</title>
      <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Export-MS-Access-2000-in-Unix/m-p/65255#M885</link>
      <description>The pasted DOC link has a reference you want to review - it has the solution, which is to use LIBNAME - should still apply although here is the SAS 9.1.2 DOC point:&lt;BR /&gt;
&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/onlinedoc/91pdf/index_912.html" target="_blank"&gt;http://support.sas.com/documentation/onlinedoc/91pdf/index_912.html&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.</description>
      <pubDate>Tue, 18 Aug 2009 17:49:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/Export-MS-Access-2000-in-Unix/m-p/65255#M885</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2009-08-18T17:49:10Z</dc:date>
    </item>
  </channel>
</rss>

