<?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 load an aes encrypted sas dataset in visual analytics in SAS Visual Analytics</title>
    <link>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-load-an-aes-encrypted-sas-dataset-in-visual-analytics/m-p/264737#M3933</link>
    <description>&lt;P&gt;I am having difficulty loading an AES encrypted dataset created from enterprise guide into SAS visual analytics. Can someone help me&lt;/P&gt;</description>
    <pubDate>Tue, 19 Apr 2016 09:01:33 GMT</pubDate>
    <dc:creator>naveenraj</dc:creator>
    <dc:date>2016-04-19T09:01:33Z</dc:date>
    <item>
      <title>How to load an aes encrypted sas dataset in visual analytics</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-load-an-aes-encrypted-sas-dataset-in-visual-analytics/m-p/264737#M3933</link>
      <description>&lt;P&gt;I am having difficulty loading an AES encrypted dataset created from enterprise guide into SAS visual analytics. Can someone help me&lt;/P&gt;</description>
      <pubDate>Tue, 19 Apr 2016 09:01:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-load-an-aes-encrypted-sas-dataset-in-visual-analytics/m-p/264737#M3933</guid>
      <dc:creator>naveenraj</dc:creator>
      <dc:date>2016-04-19T09:01:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to load an aes encrypted sas dataset in visual analytics</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-load-an-aes-encrypted-sas-dataset-in-visual-analytics/m-p/264739#M3934</link>
      <description>&lt;P&gt;The topic of AES encryption on third party files has been covered several times:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/forums/searchpage/tab/message?filter=labels&amp;amp;q=aes" target="_blank"&gt;https://communities.sas.com/t5/forums/searchpage/tab/message?filter=labels&amp;amp;q=aes&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To my mind this is part of the transfer process, and the file should be un-encrypted as part of your import process, either by IT, through the recieving application, or by you using a tool for the job. &amp;nbsp;It is not a SAS implementation. &amp;nbsp;If you really need to do it in SAS then you would call a command line application to un-encrypt the data something like:&lt;/P&gt;
&lt;P&gt;x "c:\aesdecrpt c:\your_file.txt c:\outputfile.txt";&lt;/P&gt;
&lt;P&gt;And then import the un-encypted file.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Apr 2016 09:08:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-load-an-aes-encrypted-sas-dataset-in-visual-analytics/m-p/264739#M3934</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2016-04-19T09:08:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to load an aes encrypted sas dataset in visual analytics</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-load-an-aes-encrypted-sas-dataset-in-visual-analytics/m-p/264740#M3935</link>
      <description>&lt;P&gt;hi rw9,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is not my requirement. I have created a dataset through encrypt option present within sas enterprise guide. Now i need to load this dataset into sas visual analytics. We are not using an external file. this is a sas dataset that we created manually&lt;/P&gt;</description>
      <pubDate>Tue, 19 Apr 2016 09:11:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-load-an-aes-encrypted-sas-dataset-in-visual-analytics/m-p/264740#M3935</guid>
      <dc:creator>naveenraj</dc:creator>
      <dc:date>2016-04-19T09:11:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to load an aes encrypted sas dataset in visual analytics</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-load-an-aes-encrypted-sas-dataset-in-visual-analytics/m-p/264741#M3936</link>
      <description>&lt;P&gt;Have you tried code like this (from &lt;A href="http://support.sas.com/documentation/cdl/en/inmsref/67597/HTML/default/viewer.htm#p1qf09ffb3hr02n1bt8gqqjs67gs.htm" target="_self"&gt;http://support.sas.com/documentation/cdl/en/inmsref/67597/HTML/default/viewer.htm#p1qf09ffb3hr02n1bt8gqqjs67gs.htm&lt;/A&gt;&lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname server1 startserver port=10010 tag='hps';

data server1.prdsale;
    set sashelp.prdsale;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If a dataset is encrypted, you would need to supply the password as a dataset option:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname server1 startserver port=10010 tag='hps';

data server1.xxxxx;
    set inlib.xxxxx (read=password);
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 19 Apr 2016 09:13:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-load-an-aes-encrypted-sas-dataset-in-visual-analytics/m-p/264741#M3936</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2016-04-19T09:13:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to load an aes encrypted sas dataset in visual analytics</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-load-an-aes-encrypted-sas-dataset-in-visual-analytics/m-p/264762#M3938</link>
      <description>&lt;P&gt;HI&amp;nbsp;&lt;A href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562" target="_self"&gt;&lt;SPAN class="login-bold"&gt;KurtBremser&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My enterprise guide and visual analytics are on differant servers. So how can we write a datastep in sas visual analytics process. Sorry if this is not a valid question. i am new to visual analytics.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naveen&lt;/P&gt;</description>
      <pubDate>Tue, 19 Apr 2016 11:26:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-load-an-aes-encrypted-sas-dataset-in-visual-analytics/m-p/264762#M3938</guid>
      <dc:creator>naveenraj</dc:creator>
      <dc:date>2016-04-19T11:26:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to load an aes encrypted sas dataset in visual analytics</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-load-an-aes-encrypted-sas-dataset-in-visual-analytics/m-p/264764#M3939</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;naveenraj wrote:
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;i am new to visual analytics.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Which means you know more than me, because I don't have VA at all. I just want to point you in the right direction of the documentation.&lt;/P&gt;
&lt;P&gt;If you can't extract the real SAS code for loading a SAS dataset from the interactive tools (so you can insert the encypted dataset name and the datastep option there), you're better off by creating an unencrypted copy of the dataset in EG and then use the VA tools to load that.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Apr 2016 11:51:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-load-an-aes-encrypted-sas-dataset-in-visual-analytics/m-p/264764#M3939</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2016-04-19T11:51:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to load an aes encrypted sas dataset in visual analytics</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-load-an-aes-encrypted-sas-dataset-in-visual-analytics/m-p/264769#M3942</link>
      <description>&lt;P&gt;Which raises the question, why are you creating an encrypted file if it is not going outside your control, seems to just add a layer of complexity with no benefit?&lt;/P&gt;</description>
      <pubDate>Tue, 19 Apr 2016 12:07:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-load-an-aes-encrypted-sas-dataset-in-visual-analytics/m-p/264769#M3942</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2016-04-19T12:07:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to load an aes encrypted sas dataset in visual analytics</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-load-an-aes-encrypted-sas-dataset-in-visual-analytics/m-p/264771#M3943</link>
      <description>&lt;P&gt;this was a requirement of my project.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Apr 2016 12:12:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-load-an-aes-encrypted-sas-dataset-in-visual-analytics/m-p/264771#M3943</guid>
      <dc:creator>naveenraj</dc:creator>
      <dc:date>2016-04-19T12:12:01Z</dc:date>
    </item>
  </channel>
</rss>

