<?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: SAS macros Security, Central respository in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/SAS-macros-Security-Central-respository/m-p/73859#M15910</link>
    <description>As to the role based authentication.  I have done that, but you have to build your own.</description>
    <pubDate>Fri, 13 Feb 2009 13:52:22 GMT</pubDate>
    <dc:creator>Flip</dc:creator>
    <dc:date>2009-02-13T13:52:22Z</dc:date>
    <item>
      <title>SAS macros Security, Central respository</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-macros-Security-Central-respository/m-p/73856#M15907</link>
      <description>Hi,&lt;BR /&gt;
I am completly new to SAS world.&lt;BR /&gt;
&lt;BR /&gt;
I have requirement to write the SAS macros which connects to oracle database and do certain operations (Integrate logical file, delete logical files,merge files etc) . But these macros needs not be exposed to the domain experts -though he should be able to use it to create the SAS program around it.&lt;BR /&gt;
I have few questions&lt;BR /&gt;
1) Can SAS macros be secured/hidden, so that user does not get to know SQL tables ?&lt;BR /&gt;
2) Is there a centralized repository where SAS programs and macros can be stored?  &lt;BR /&gt;
3) Can we restrict the ability to write the macros to certain users? is there any role based authentication built into SAS? &lt;BR /&gt;
&lt;BR /&gt;
 Thanks in advance for the help!!</description>
      <pubDate>Fri, 13 Feb 2009 04:05:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-macros-Security-Central-respository/m-p/73856#M15907</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-02-13T04:05:14Z</dc:date>
    </item>
    <item>
      <title>Re: SAS macros Security, Central respository</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-macros-Security-Central-respository/m-p/73857#M15908</link>
      <description>Macros may be compiled and only the compiled image presented in a read only file system.  I had a system set up like this back in V6.12  so I don't remember the exact syntax.  A search on the compiled macro facility should give you the information you are looking for.

&lt;A href="http://www2.sas.com/proceedings/forum2008/101-2008.pdf" target="_blank"&gt;http://www2.sas.com/proceedings/forum2008/101-2008.pdf&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
    &lt;BR /&gt;
Message was edited by: Flip</description>
      <pubDate>Fri, 13 Feb 2009 13:03:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-macros-Security-Central-respository/m-p/73857#M15908</guid>
      <dc:creator>Flip</dc:creator>
      <dc:date>2009-02-13T13:03:00Z</dc:date>
    </item>
    <item>
      <title>Re: SAS macros Security, Central respository</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-macros-Security-Central-respository/m-p/73858#M15909</link>
      <description>Thanks Flip, &lt;BR /&gt;
It helped me to solve one problem...&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Thanks

Message was edited by: skaviman</description>
      <pubDate>Fri, 13 Feb 2009 13:44:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-macros-Security-Central-respository/m-p/73858#M15909</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-02-13T13:44:34Z</dc:date>
    </item>
    <item>
      <title>Re: SAS macros Security, Central respository</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-macros-Security-Central-respository/m-p/73859#M15910</link>
      <description>As to the role based authentication.  I have done that, but you have to build your own.</description>
      <pubDate>Fri, 13 Feb 2009 13:52:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-macros-Security-Central-respository/m-p/73859#M15910</guid>
      <dc:creator>Flip</dc:creator>
      <dc:date>2009-02-13T13:52:22Z</dc:date>
    </item>
    <item>
      <title>Re: SAS macros Security, Central respository</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-macros-Security-Central-respository/m-p/73860#M15911</link>
      <description>Stored compiled macros were found to be fairly transparent, e.g. by using the &lt;BR /&gt;
%copy statement users can see what's in there.  So starting with SAS 9.1.3 (I think) we implemented Stored Secure macros.&lt;BR /&gt;
&lt;BR /&gt;
To use this feature, add /store /secure to the %macro statement.  This causes the contents of the macro to be encrypted when stored on disk.  It is then decrypted when executing.  See the doc page below for more details.  Hope this helps.&lt;BR /&gt;
&lt;BR /&gt;
--Pat&lt;BR /&gt;
&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/mcrolref/59526/HTML/default/macro-stmt.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/mcrolref/59526/HTML/default/macro-stmt.htm&lt;/A&gt;</description>
      <pubDate>Thu, 19 Feb 2009 17:59:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-macros-Security-Central-respository/m-p/73860#M15911</guid>
      <dc:creator>PatrickG</dc:creator>
      <dc:date>2009-02-19T17:59:39Z</dc:date>
    </item>
    <item>
      <title>Re: SAS macros Security, Central respository</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-macros-Security-Central-respository/m-p/73861#M15912</link>
      <description>Depending on your infrastructure (9.1 onwards), this sounds like an prime example of using SAS Stored Processes.&lt;BR /&gt;
&lt;BR /&gt;
These would be generally be generated through Enterprise guide, and executed by users from there.&lt;BR /&gt;
&lt;BR /&gt;
Access to execution of the STP's can be controlled from the SAS Metadata Server using SAS Management console, including the connection information to your Oracle DB's.&lt;BR /&gt;
&lt;BR /&gt;
This authentication can be controlled/limited to certain users and/or groups.&lt;BR /&gt;
&lt;BR /&gt;
Cheers.</description>
      <pubDate>Mon, 02 Mar 2009 15:44:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-macros-Security-Central-respository/m-p/73861#M15912</guid>
      <dc:creator>mgst170</dc:creator>
      <dc:date>2009-03-02T15:44:26Z</dc:date>
    </item>
  </channel>
</rss>

