<?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: Oracle Database: Implementing Row level security in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-implementing-row-level-security/m-p/2850932#M825916</link>
    <description>hi,&lt;BR /&gt;The solution is FGAC - Fine Grained Access Control.&lt;BR /&gt;&lt;BR /&gt;You will see FGAC referred to with various names in different publications. The following are synonymous terms for this feature:&lt;BR /&gt;- Fine Grained Access Control&lt;BR /&gt;- Virtual Private Database (VPD)&lt;BR /&gt;- Row Level Security or DBMS_RLS (based on the PL/SQL package DBMS_RLS that implements this feature)&lt;BR /&gt;&lt;BR /&gt;Should be OK as from Oracle 8.1.7 and upwards...&lt;BR /&gt;&lt;BR /&gt;With this feature, data in the database is always protected. No matter what tool accesses the data, we are ensured our security policy is invoked and cannot be bypassed. It also allows for evolutionary changes to security policies with no impact on client applications.&lt;BR /&gt;&lt;BR /&gt;Also note that FGAC will not impact performance any more than performing an operation in any other fashion.&lt;BR /&gt;&lt;BR /&gt;hope this helps!&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Yogeeraj</description>
    <pubDate>Mon, 25 Nov 2002 07:53:01 GMT</pubDate>
    <dc:creator>Yogeeraj_1</dc:creator>
    <dc:date>2002-11-25T07:53:01Z</dc:date>
    <item>
      <title>Oracle Database: Implementing Row level security</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-implementing-row-level-security/m-p/2850930#M825914</link>
      <description>Hi Friends,&lt;BR /&gt;&lt;BR /&gt;Would like to know if it's possible in Oracle to implement row/field or data level security.&lt;BR /&gt;&lt;BR /&gt;For e.g., My database contains data from both Australia &amp;amp; Singapore and would like my reporting person to see data relevant to only Australia or only Singapore. Is that possible? If so, will appreciate if you can let me know the methodology to do that.&lt;BR /&gt;&lt;BR /&gt;Thanks in advance.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Sanjay</description>
      <pubDate>Mon, 25 Nov 2002 05:49:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-implementing-row-level-security/m-p/2850930#M825914</guid>
      <dc:creator>Sanjay Verma</dc:creator>
      <dc:date>2002-11-25T05:49:44Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle Database: Implementing Row level security</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-implementing-row-level-security/m-p/2850931#M825915</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;In oracle9i you can implement row-level-security (virtual private database). You can use package DBMS_RLS&lt;BR /&gt;&lt;BR /&gt;There's no easy way to implement field-level security</description>
      <pubDate>Mon, 25 Nov 2002 07:02:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-implementing-row-level-security/m-p/2850931#M825915</guid>
      <dc:creator>Christian Gebhardt</dc:creator>
      <dc:date>2002-11-25T07:02:55Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle Database: Implementing Row level security</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-implementing-row-level-security/m-p/2850932#M825916</link>
      <description>hi,&lt;BR /&gt;The solution is FGAC - Fine Grained Access Control.&lt;BR /&gt;&lt;BR /&gt;You will see FGAC referred to with various names in different publications. The following are synonymous terms for this feature:&lt;BR /&gt;- Fine Grained Access Control&lt;BR /&gt;- Virtual Private Database (VPD)&lt;BR /&gt;- Row Level Security or DBMS_RLS (based on the PL/SQL package DBMS_RLS that implements this feature)&lt;BR /&gt;&lt;BR /&gt;Should be OK as from Oracle 8.1.7 and upwards...&lt;BR /&gt;&lt;BR /&gt;With this feature, data in the database is always protected. No matter what tool accesses the data, we are ensured our security policy is invoked and cannot be bypassed. It also allows for evolutionary changes to security policies with no impact on client applications.&lt;BR /&gt;&lt;BR /&gt;Also note that FGAC will not impact performance any more than performing an operation in any other fashion.&lt;BR /&gt;&lt;BR /&gt;hope this helps!&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Yogeeraj</description>
      <pubDate>Mon, 25 Nov 2002 07:53:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-implementing-row-level-security/m-p/2850932#M825916</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2002-11-25T07:53:01Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle Database: Implementing Row level security</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-implementing-row-level-security/m-p/2850933#M825917</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;if your reporting is a selfmade application, &lt;BR /&gt;you might try to use a view, which seperates data by the appropriate column. &lt;BR /&gt;&lt;BR /&gt;CREATE VIEW AUSTRALIA_DATA as &lt;BR /&gt;select * from datatable &lt;BR /&gt;where location='AUSTRALIA';&lt;BR /&gt;&lt;BR /&gt;CREATE VIEW SINGAPORE_DATA as &lt;BR /&gt;select * from datatable &lt;BR /&gt;where location='SINGAPORE';&lt;BR /&gt;&lt;BR /&gt;Now you grant SELECT only on the views, not on the datatable and run the reports with the related view.&lt;BR /&gt;&lt;BR /&gt;Quick-Hit, no application redesign, just exchange the tablename.&lt;BR /&gt;Hope this helps&lt;BR /&gt;Volker</description>
      <pubDate>Mon, 25 Nov 2002 17:42:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-implementing-row-level-security/m-p/2850933#M825917</guid>
      <dc:creator>Volker Borowski</dc:creator>
      <dc:date>2002-11-25T17:42:10Z</dc:date>
    </item>
  </channel>
</rss>

