<?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 How to import password protected MS Access tables to SAS in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-import-password-protected-MS-Access-tables-to-SAS/m-p/725120#M225189</link>
    <description>&lt;P&gt;Hello all,&lt;/P&gt;
&lt;P&gt;I wish to import some tables from an Access DB which is password protected and am encountering some problems. Maybe someone can help:&lt;/P&gt;
&lt;PRE&gt;I get the following error message when I run the code below:

ERROR: CLI error trying to establish connection: [Microsoft] [ODBC driver for Microsoft Access] General error The registry key 'Temporary (volatile) Ace DSN for process 0x273c Thread 0x1814 DBC 0x7f82b4
   Jet 'cannot be opened..
ERROR: Error in the LIBNAME statement.
ERROR: Connection Failed.  See log for details.&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc import out= lib.myoutdat
           datatable= "patient" 
           dbms=accesscs replace;
     database= "mypath.\mydb"; 
     scanmemo=yes;
     usedate=no;
     scantime=yes;
	dbpwd='&amp;amp;mypassword';
	 run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 10 Mar 2021 13:13:33 GMT</pubDate>
    <dc:creator>Anita_n</dc:creator>
    <dc:date>2021-03-10T13:13:33Z</dc:date>
    <item>
      <title>How to import password protected MS Access tables to SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-import-password-protected-MS-Access-tables-to-SAS/m-p/725120#M225189</link>
      <description>&lt;P&gt;Hello all,&lt;/P&gt;
&lt;P&gt;I wish to import some tables from an Access DB which is password protected and am encountering some problems. Maybe someone can help:&lt;/P&gt;
&lt;PRE&gt;I get the following error message when I run the code below:

ERROR: CLI error trying to establish connection: [Microsoft] [ODBC driver for Microsoft Access] General error The registry key 'Temporary (volatile) Ace DSN for process 0x273c Thread 0x1814 DBC 0x7f82b4
   Jet 'cannot be opened..
ERROR: Error in the LIBNAME statement.
ERROR: Connection Failed.  See log for details.&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc import out= lib.myoutdat
           datatable= "patient" 
           dbms=accesscs replace;
     database= "mypath.\mydb"; 
     scanmemo=yes;
     usedate=no;
     scantime=yes;
	dbpwd='&amp;amp;mypassword';
	 run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Mar 2021 13:13:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-import-password-protected-MS-Access-tables-to-SAS/m-p/725120#M225189</guid>
      <dc:creator>Anita_n</dc:creator>
      <dc:date>2021-03-10T13:13:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to import password protected MS Access tables to SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-import-password-protected-MS-Access-tables-to-SAS/m-p/725247#M225227</link>
      <description>&lt;P&gt;Your password macro variable won't resolve inside single quotes. Try double quotes:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc import out= lib.myoutdat
           datatable= "patient" 
           dbms=accesscs replace;
     database= "mypath.\mydb"; 
     scanmemo=yes;
     usedate=no;
     scantime=yes;
	dbpwd="&amp;amp;mypassword";
	 run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 10 Mar 2021 19:19:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-import-password-protected-MS-Access-tables-to-SAS/m-p/725247#M225227</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2021-03-10T19:19:40Z</dc:date>
    </item>
  </channel>
</rss>

