<?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: Reading from an encrypted database in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Reading-from-an-encrypted-database/m-p/172122#M301589</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you saying that ODBC has to decrypt the data?&amp;nbsp; I am new at this so forgive me if I don't understand immediately.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 17 Feb 2015 17:11:33 GMT</pubDate>
    <dc:creator>jimtheobald</dc:creator>
    <dc:date>2015-02-17T17:11:33Z</dc:date>
    <item>
      <title>Reading from an encrypted database</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Reading-from-an-encrypted-database/m-p/172120#M301587</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have been asked to find out if SAS is capable of connecting to and reading from an encrypted non-SAS database if we have the encryption key.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Feb 2015 16:01:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Reading-from-an-encrypted-database/m-p/172120#M301587</guid>
      <dc:creator>jimtheobald</dc:creator>
      <dc:date>2015-02-17T16:01:25Z</dc:date>
    </item>
    <item>
      <title>Re: Reading from an encrypted database</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Reading-from-an-encrypted-database/m-p/172121#M301588</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How will you be connecting - ODBC driver for example.&amp;nbsp; On the connection string I should give the options of username and password e.g. in SQL passthrough:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; connect to oracle (user="xyz" password="zyx" schema=...);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; select * from connection to oracle (....);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; disconnect from oracle;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will also need SAS/Access licensed I believe.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Feb 2015 16:22:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Reading-from-an-encrypted-database/m-p/172121#M301588</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2015-02-17T16:22:54Z</dc:date>
    </item>
    <item>
      <title>Re: Reading from an encrypted database</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Reading-from-an-encrypted-database/m-p/172122#M301589</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you saying that ODBC has to decrypt the data?&amp;nbsp; I am new at this so forgive me if I don't understand immediately.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Feb 2015 17:11:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Reading-from-an-encrypted-database/m-p/172122#M301589</guid>
      <dc:creator>jimtheobald</dc:creator>
      <dc:date>2015-02-17T17:11:33Z</dc:date>
    </item>
    <item>
      <title>Re: Reading from an encrypted database</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Reading-from-an-encrypted-database/m-p/172123#M301590</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You'll have to clarify for me what "encrypted database" you are talking about.&amp;nbsp; Normally database's have access via drivers - ODBC is one type of driver.&amp;nbsp; This passes your credentials onto the database process which decrypts the information and returns it via the driver to the caller.&amp;nbsp; So, its a bit like a password protected zip file, except there is another layer, you put your credentials into the driver, the driver then passes it on and returns and found information.&amp;nbsp; Couple of interesting pages:&lt;/P&gt;&lt;P&gt;&lt;A class="active_link" href="http://support.sas.com/software/products/odbc/" title="http://support.sas.com/software/products/odbc/"&gt;http://support.sas.com/software/products/odbc/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/acreldb/63647/HTML/default/viewer.htm#a003113595.htm" title="http://support.sas.com/documentation/cdl/en/acreldb/63647/HTML/default/viewer.htm#a003113595.htm"&gt;SAS/ACCESS(R) 9.2 for Relational Databases: Reference, Fourth Edition&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/acreldb/63647/HTML/default/viewer.htm#a003113591.htm" title="http://support.sas.com/documentation/cdl/en/acreldb/63647/HTML/default/viewer.htm#a003113591.htm"&gt;SAS/ACCESS(R) 9.2 for Relational Databases: Reference, Fourth Edition&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Feb 2015 18:01:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Reading-from-an-encrypted-database/m-p/172123#M301590</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2015-02-17T18:01:56Z</dc:date>
    </item>
    <item>
      <title>Re: Reading from an encrypted database</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Reading-from-an-encrypted-database/m-p/172124#M301591</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks very much.&amp;nbsp; I will look at these articles. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Feb 2015 18:16:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Reading-from-an-encrypted-database/m-p/172124#M301591</guid>
      <dc:creator>jimtheobald</dc:creator>
      <dc:date>2015-02-17T18:16:39Z</dc:date>
    </item>
  </channel>
</rss>

