Oracle® Database Security Guide 10g Release 2 (10.2) Part Number B14266-01 |
|
|
View PDF |
Oracle Database provides the necessary tools to build secure applications. One such tool is Virtual Private Database (VPD), which is the combination of the following:
Fine-grained access control, which enables you to associate security policies to database objects
Application context, which enables you to define and access application or database session attributes
VPD combines these two features, enabling you to enforce security policies to control access at the row level. This control is based on application or session attributes, which can be made available during execution.
The following topics introduce these features and explain how and why you would use them:
Virtual Private Database (VPD) combines server-enforced fine-grained access control with a secure storage of application context values in the Oracle database server. VPD enables you to build applications that enforce row-level security policies at the object level. Policy execution dynamically appends predicates (WHERE
clauses) to any SQL statements that query data you have identified as requiring protection.
The application context feature enables application developers to define, set, and access variable-length application attributes and their values. These attributes can then be used as predicate values for fine-grained access control policies. Two types of application contexts exist:
Local (session-based) application context, stored in the UGA and invoked each time an application user connects to the database
Global application context (non-session-based), stored in the SGA and used for multitiered environment users accessing databases through connection pools.
Although application context is an integral part of VPD, it can be implemented alone, without fine-grained access control. When implemented alone, application context can be used to access session information, such as the client identifier, to preserve user identity across multitiered environments.
The remainder of this chapter discusses how VPD works and introduces its main components, fine-grained access control and application context.
See Also:
Chapter 15, "Implementing Application Context and Fine-Grained Access Control" for information about using local application context and global application context with or without VPD fine-grained access control policies
"Using the CLIENT_IDENTIFIER Attribute to Preserve User Identity" for information about using the client identifier attribute to preserve user identity across multitiered environments
Virtual private database (VPD) enables you to enforce security, to a fine level of granularity, directly on tables, views, or synonyms. Because security policies are attached directly to tables, views, or synonyms and automatically applied whenever a user accesses data, there is no way to bypass security.
When a user directly or indirectly accesses a table, view, or synonym protected with a VPD policy, the server dynamically modifies the SQL statement of the user. The modification creates a WHERE
condition (known as a predicate) returned by a function implementing the security policy. The statement is modified dynamically, transparently to the user, using any condition that can be expressed in or returned by a function. VPD policies can be applied to SELECT
, INSERT
, UPDATE
, INDEX
, and DELETE
statements.
Note:
Users need full table access to create table indexes. Consequently, users with privileges to maintain an index can see all the row data even if they do not have full table access under a regular query. To prevent this, apply VPD policies toINDEX
statements.Functions that return predicates can also include calls to other functions. Within your PL/SQL package, you can embed C or Java calls to access operating system information or to return WHERE
clauses from an operating system file or central policy store. A policy function can return different predicates for each user, for each group of users, or for each application. Using policy functions over synonyms can substitute for maintaining a separate view for each user or class of users, saving substantial overhead in memory and processing resources.
Application context enables you to securely access the attributes on which you base your security policies. For example, users with the position attribute of manager
would have a different security policy than users with the position attribute of employee
.
Consider an HR clerk who is only allowed to see employee records in the Retail Division who initiates the following query:
SELECT * FROM emp;
The function implementing the security policy returns the predicate division = 'RETAIL'
, and the database transparently rewrites the query. The query actually executed becomes:
SELECT * FROM emp WHERE division = 'RETAIL';
Column-level VPD enables you to enforce row-level security when a security-relevant column is referenced in a query. You can apply column-level VPD to tables and views, but not to synonyms. By specifying the security-relevant column name with the sec_relevant_cols
parameter of the DBMS_RLS.ADD_POLICY
procedure, the security policy is applied whenever the column is referenced, explicitly or implicitly, in a query.
For example, users outside of the HR department typically are allowed to view only their own Social Security numbers. When a sales clerk initiates the following query:
SELECT fname, lname, ssn FROM emp;
The function implementing the security policy returns the predicate ssn='my_ssn
' and the database rewrites the query and executes the following:
SELECT fname, lname, ssn FROM emp WHERE ssn = 'my_ssn';
See Also:
"Adding Policies for Column-Level VPD" for information about how to add column-level VPD policiesIf a query references a sensitive column, then the default behavior of column-level VPD restricts the number of rows returned. With column-masking behavior, which can be enabled by using the sec_relevant_cols_opt
parameter of the DBMS_RLS.ADD_POLICY
procedure, all rows display, even those that reference sensitive columns. However, the sensitive columns display as NULL
values.
To illustrate this, consider the results of the sales clerk query, described in the previous example. If column-masking behavior is used, then instead of seeing only the row containing the details and Social Security number of the sales clerk, the clerk would see all rows from emp
, but the ssn
column values would be returned as NULL
. Note that this behavior is fundamentally different from all other types of VPD policies, which return only a subset of rows.
See Also:
"Column-masking Behavior" for information about how to add column-level VPD policies with column-masking behavior.The security policy is applied within the database itself, rather than within an application. This means that the use of a different application will not bypass the security policy. Security can thus be built once, in the database, instead of being implemented again in multiple applications. VPD therefore provides far stronger security than application-based security, at a lower cost of ownership.
It may be desirable to enforce different security policies depending on which application is accessing data. Consider a situation in which two applications, Order Entry and Inventory, both access the ORDERS
table. You may want to have the Inventory application use a policy that limits access based on type of product. At the same time, you may want to have the Order Entry application use a policy that limits access based on customer number.
In this case, you must partition the use of fine-grained access by application. Otherwise, both policies would be automatically AND
ed together, which is not the desired result. You can specify one or more policy groups, and a driving application context that determines which policy group is in effect for a given transaction. You can also designate default policies that always apply to data access. In a hosted application, for example, data access should always be limited by subscriber ID.
Fine-grained access control enables you to build applications that enforce security policies at a low level of granularity. These policies are also referred to as VPD policies. You can use it, for example, to restrict customers accessing an Oracle database server to see only their own accounts. A physician could be limited to seeing only the records of her own patients, or a manager to seeing only the records of employees who work for him.
When you use fine-grained access control, you create security policy functions attached to the table, view, or synonym on which you have based your application. Then, when a user enters a SELECT
or DML statement (INSERT
, UPDATE
, or DELETE
) on that object, Oracle Database dynamically modifies the statement, transparently to the user. The modification ensures that the statement implements the correct access control. You can also enforce security policies on index maintenance operations performed with the DDL statements CREATE INDEX
and ALTER INDEX
.
Fine-grained access control provides the following capabilities:
Attaching security policies to tables, views, or synonyms rather than to applications provides greater security, simplicity, and flexibility.
Associating a policy with a table, view, or synonym overcomes a potentially serious application security problem. Suppose a user is authorized to use an application, and then drawing on the privileges associated with that application, wrongfully modifies the database by using an ad hoc query tool, such as SQL*Plus. By attaching security policies to tables, views, or synonyms, fine-grained access control ensures that the same security is in force, no matter how a user accesses the data.
Adding the security policy to the table, view, or synonym means that you make the addition only once, rather than repeatedly adding it to each of your table-based, view-based, or synonym-based applications.
You can have one security policy for SELECT
statements, another for INSERT
statements, and still others for UPDATE
and DELETE
statements. For example, you might want to enable Human Resources clerks to SELECT
all employee records in their division, but to UPDATE
only salaries for those employees in her division whose last names begin with A
through F
.
Note:
Although you can define a policy against a table, you cannot select that table from within the policy that was defined against the table.You can establish several policies for the same table, view, or synonym. Suppose, for example, you have a base application for Order Entry, and each division of your company has its own special rules for data access. You can add a division-specific policy function to a table without having to rewrite the policy function of the base application.
Note that all policies applied to a table are enforced with AND
syntax. If you have three policies applied to the CUSTOMERS
table, then each policy is applied to any access of the table. You can use policy groups and a driving application context to partition fine-grained access control enforcement so that different policies apply, depending upon which application is accessing data. This eliminates the requirement for development groups to collaborate on policies and simplifies application development. You can also have a default policy group that is always applicable (for example, to enforce data separated by subscriber in a hosting environment).
Because multiple applications with multiple security policies, can share the same table, view, or synonym, it is important to identify those policies that should be in effect when the table, view, or synonym is accessed.
For example, in a hosting environment, Company A can host the BENEFIT
table for Company B and Company C. The table is accessed by two different applications, Human Resources and Finance, with two different security policies. The Human Resources application authorizes users based on ranking in the company, and the Finance application authorizes users based on department. To integrate these two policies into the BENEFIT
table would require joint development of policies between the two companies, which is not a feasible option. By defining an application context to drive the enforcement of a particular set of policies to the base objects, each application can implement a private set of security policies.
To do this, you can organize security policies into groups. By referring to the application context, the Oracle Database server determines which group of policies should be in effect at run time. The server enforces all the policies that belong to that policy group.
With fine-grained access control, each policy function for a given query is evaluated only once, at statement parse time. Also, the entire dynamically modified query is optimized and the parsed statement can be shared and reused. This means that rewritten queries can take advantage of the high performance features of Oracle Database, such as dictionary caching and shared cursors.
While partitioning security policies by application is desirable, it is also useful to have security policies that are always in effect. In the previous example, a hosted application can always enforce data separation by subscriber_ID
, whether you are using the Human Resources application or the Finance application. Default security policies allow developers to have base security enforcement under all conditions, while partitioning of security policies by application (using security groups) enables layering of additional, application-specific security on top of default security policies. To implement default security policies, you add the policy to the SYS_DEFAULT
policy group.
See Also:
The following topics for information about how to implement fine-grained access control:To implement VPD, developers can use the DBMS_RLS
package to apply security policies to tables and views. They can also use the CREATE CONTEXT
command to create application contexts.
Alternatively, developers can use the Oracle Policy Manager graphical user interface (GUI), accessed from Oracle Enterprise Manager, to apply security policies to schema objects, such as tables and views, and to create application contexts. Oracle Policy Manager provides an easy-to-use interface to manage security policies and application contexts, and therefore makes VPD easier to develop.
To create VPD policies, users must provide the schema name, table (or view or synonym) name, policy name, the function name that generates the predicate, and the statement types to which the policy applies (that is, SELECT
, INSERT
, UPDATE
, DELETE
). Oracle Policy Manager then executes the function DBMS_RLS.ADD_POLICY
. You create an application context by providing the name of the context and the package that implements the context.
Oracle Policy Manager is also the administration tool for Oracle Label Security. Oracle Label Security provides a functional, out-of-the-box VPD policy that enhances your ability to implement row-level security. It supplies an infrastructure, which is a label-based access control framework, whereby you can specify labels for users and data. It also enables you to create one or more custom security policies to be used for label access decisions. You can implement these policies without any knowledge of a programming language. There is no need to write additional code, but in a single step you can apply a security policy to a given table.
In this way, Oracle Label Security provides a straightforward, efficient way to implement row-level security policies using data labeling technology. Finally, the structure of Oracle Label Security labels provides a degree of granularity and flexibility that cannot easily be derived from the application data alone. Oracle Label Security is thus a generic solution that can be used in many different circumstances.
See Also:
Oracle Label Security Administrator's Guide for information about using Oracle Policy ManagerApplication context enables you to define, set, and access variable-length application attributes and values in a secure data cache available in User Global Area (UGA) and System Global Area (SGA).
Most applications contain the kind of information that can be used for access control. For example, in an order entry application, the ORDER_NUMBER
and the CUSTOMER_NUMBER
of the customer can be used as security attributes to restrict his access to his own orders.
As another example, consider a user running a human resources application. Part of the application initialization process is to determine the kind of responsibility that the user can assume based on user identity. This ID becomes part of the human resource application context. It affects what data the user can access throughout the session.
You configure application context by using the SQL function SYS_CONTEXT
with the following syntax:
SYS_CONTEXT ('namespace','parameter'[,length])
The following subsections describe application context and how to use it:
Application context provides the following important security features:
Each application can have its own context with its own attributes. Suppose, for example, you have three applications: General Ledger, Order Entry, and Human Resources. You can specify different attributes for each application:
For the General Ledger application context, you can specify the attributes SET_OF_BOOKS
and TITLE.
For the Order Entry application context, you can specify the attribute CUSTOMER_NUMBER.
For the Human Resources application context, you can specify the attributes ORGANIZATION_ID
, POSITION
, and COUNTRY
.
In each case, you can adapt the application context to your precise security needs.
Oracle database server provides a built-in application context namespace (USERENV
) that provides access to predefined attributes. These attributes are session primitives, which is information that the database captures regarding a user session. Examples include the user name, the IP address from which the user connected, and a proxy user name if the user connection is proxied through a middle tier.
Predefined attributes are useful for access control. For example, a three-tier application creating lightweight user sessions through OCI or thick JDBC can access the PROXY_USER
attribute in USERENV
. This attribute enables you to determine if the user session was created by a middle tier application. Your policy function could allow a user to access data only for connections where the user is proxied. If users connect directly to the database, then they would not be able to access any data.
You can use the PROXY_USER
attribute within VPD to ensure that users only access data through a particular middle-tier application. As a different approach, you can develop a secure application role to enforce your policy that users access the database only through a specific proxy.
See Also:
You can access predefined attributes through the USERENV
application context, but you cannot change them. They are listed in Table 14-1.
Use the following syntax to obtain information about the current session.
SYS_CONTEXT('userenv', 'attribute')
Note:
TheUSERENV
application context namespace replaces the USERENV
function provided in earlier database releases.See Also:
Chapter 16, "Preserving User Identity in Multitiered Environments" for information about proxy authentication and about using the USERENV
attribute, CLIENT_IDENTIFIER
, to preserve user identity across multiple tiers
SYS_CONTEXT
in the Oracle Database SQL Reference for complete details about the USERENV
namespace and its predefined attributes
Table 14-1 Key to Predefined Attributes in USERENV Namespace
Table 14-2 lists the attributes of namespace USERENV
that have been deprecated. Oracle suggests that you use the alternatives suggested in the Comments column.
Table 14-2 Deprecated Attributes of Namespace USERENV
Predefined Attribute | Comments |
---|---|
AUTHENTICATION_TYPE |
This parameter returned a value indicating how the user was authenticated. The same information is now available from the new AUTHENTICATION_METHOD parameter combined with IDENTIFICATION_TYPE . |
CURRENT_USER |
Use the SESSION_USER parameter instead. |
CURRENT_USERID |
Use the SESSION_USERID parameter instead. |
EXTERNAL_NAME |
This parameter returned the external name of the user. More complete information can now be obtained from the AUTHENTICATED_IDENTITY and ENTERPRISE_IDENTITY parameter. |
Many applications store attributes used for fine-grained access control within a database metadata table. For example, an EMPLOYEES
table could include cost center, title, signing authority, and other information useful for fine-grained access control. Organizations also centralize user information for user management and access control in LDAP-based directories, such as Oracle Internet Directory. Application context attributes can be stored in Oracle Internet Directory and assigned to one or more enterprise users. They can be retrieved automatically upon login for an enterprise user and then used to initialize an application context.
Note:
Enterprise User Security is a feature of Oracle Advanced Security.See Also:
"Initializing Secure Application Context Externally" for information about initializing local application context through external resources such as an OCI interface, a job queue process, or a database link
"Initializing Secure Application Context Globally" for information about initializing local application context through a centralized resource, such as Oracle Internet Directory
Oracle Database Advanced Security Administrator's Guide for information about enterprise users
To simplify security policy implementation, you can use application context within a fine-grained access control function.
Application context can be used in the following ways with fine-grained access control:
Accessing an application context inside your fine-grained access control policy function is like writing down an often-used phone number and posting it next to your phone, where you can find it easily rather than looking it up every time you need it.
For example, suppose you base access to the ORDERS_TAB
table on customer number. Rather than querying the customer number for a logged-in user each time you need it, you could store the number in the application context. In this way, the customer number is available in the session when you need it.
Application context is especially helpful if your security policy is based on multiple security attributes. For example, if a policy function bases a predicate on four attributes (such as employee number, cost center, position, spending limit), then multiple subqueries must execute to retrieve this information. Instead, if this data is available through application context, then performance is much faster.
You can use application context to return the correct security policy, enforced through a predicate.
Consider an order entry application that enforces the following rules: customers only see their own orders, and clerks see all orders for all customers. These are two different policies. You could define an application context with a Position
attribute, and this attribute could be accessed within the policy function to return the correct predicate, depending on the value of the attribute. Thus, you can enable a user in the Clerk
position to retrieve all orders, but a user in the Customer
position to see only those records associated with that particular user.
To design a fine-grained access control policy to return a specific predicate for an attribute, access the application context within the function that implements the policy. For example, to limit customers to seeing only their own records, use fine-grained access control to dynamically modify user queries as from this:
SELECT * FROM Orders_tab
to the following query:
SELECT * FROM Orders_tab WHERE Custno = SYS_CONTEXT ('order_entry', 'cust_num');
Continuing with the preceding example, suppose you have 50,000 customers, and you do not want to have a different predicate returned for each customer. Customers all share the same predicate, which prescribes that they can only see their own orders. It is merely their customer numbers that are different.
Using application context, you can return one predicate within a policy function that applies to 50,000 customers. As a result, there is one shared cursor that executes differently for each customer, because the customer number is evaluated at execution time. This value is different for every customer. Use of application context in this case provides optimum performance, as well as row-level security.
Note that the SYS_CONTEXT
function works much like a bind variable, only if the SYS_CONTEXT
arguments are constants.
See Also:
"Examples: Secure Application Context Within a Fine-Grained Access Control Function" that also provides a code exampleIn many application architectures, the middle-tier application is responsible for managing session pooling for application users. Users authenticate themselves to the application, which uses a single identity to log in to the database and maintains all the connections. In this environment, it is not possible to maintain application attributes using session-dependent application context (local application context) because of the sessionless model of the application.
Another scenario is when a user is connected to the database through an application (such as Oracle Forms), which then spawns other applications (such as Oracle Reports) to connect to the database. These applications may need to share the session attributes such that they appear to be sharing the same database session.
Global application context is a type of secure application context that can be shared among trusted sessions. In addition to driving the enforcement of the fine-grained access control policies, applications (especially middle-tier products) can use this support to manage application attributes securely and globally.
Note:
Global application context is not available in Real Application Clusters.
Oracle Connection Manager, a router provided with Oracle Net Services, cannot be used with global application context.
This section contains information about enforcing application security. This section consists of the following topics:
Prebuilt database applications explicitly control the potential actions of a user, including the enabling and disabling of user roles while using the application. By contrast, ad hoc query tools such as SQL*Plus, allow a user to submit any SQL statement (which may or may not succeed), including the enabling and disabling of any granted role.
Potentially, an application user can exercise the privileges attached to that application to issue destructive SQL statements against database tables by using an ad hoc tool.
For example, consider the following scenario:
The Vacation application has a corresponding VACATION
role.
The VACATION
role includes the privileges to issue SELECT
, INSERT
, UPDATE
, and DELETE
statements against the EMP_TAB
table.
The Vacation application controls the use of privileges obtained through the VACATION
role.
Now, consider a user who has been granted the VACATION
role. Suppose that, instead of using the Vacation application, the user executes SQL*Plus. At this point, the user is restricted only by the privileges granted to him explicitly or through roles, including the VACATION
role. Because SQL*Plus is an ad hoc query tool, the user is not restricted to a set of predefined actions, as with designed database applications. The user can query or modify data in the EMP_TAB
table as he or she chooses.
This section presents features that you may use in order to restrict SQL*Plus users from using database roles and thus, prevent serious security problems. These features include the following:
DBAs can use PRODUCT_USER_PROFILE
to disable certain SQL and SQL*Plus commands in the SQL*Plus environment for each user. SQL*Plus, not the Oracle Database, enforces this security. DBAs can even restrict access to the GRANT
, REVOKE
, and SET ROLE
commands in order to control user ability to change their database privileges.
The PRODUCT_USER_PROFILE
table enables you to list roles that you do not want users to activate with an application. You can also explicitly disable the use of various commands, such as SET ROLE
.
For example, you could create an entry in the PRODUCT_USER_PROFILE
table to:
Disallow the use of the CLERK
and MANAGER
roles with SQL*Plus
Disallow the use of SET ROLE
with SQL*Plus
Suppose user Jane connects to the database using SQL*Plus. Jane has the CLERK
, MANAGER
, and ANALYST
roles. As a result of the preceding entry in PRODUCT_USER_PROFILE
, Jane is only able to exercise her ANALYST
role with SQL*Plus. Also, when Jane attempts to issue a SET ROLE
statement, she is explicitly prevented from doing so because of the entry in the PRODUCT_USER_PROFILE
table prohibiting use of SET ROLE
.
Use of the PRODUCT_USER_PROFILE
table does not completely guarantee security, for multiple reasons. In the preceding example, while SET ROLE
is disallowed with SQL*Plus, if Jane had other privileges granted to her directly, then she could exercise these using SQL*Plus.
See Also:
SQL*Plus User's Guide and Reference for more information about thePRODUCT_USER_PROFILE
tableStored procedures encapsulate use of privileges with business logic so that privileges are only exercised in the context of a well-formed business transaction. For example, an application developer might create a procedure to update employee name and address in the EMPLOYEES
table, which enforces that the data can only be updated in normal business hours. Also, rather than grant a human resources clerk the UPDATE
privilege on the EMPLOYEES
table, a developer (or application administrator) may grant the privilege on the procedure only. Then, the human resources clerk can exercise the privilege only in the context of the procedures, and cannot update the EMPLOYEES
table directly.
Virtual Private Database (VPD) provides the benefit of strong security policies, which apply directly to data. When you use VPD, you can enforce security no matter how a user gets to the data: whether through an application, through a query, or by using a report-writing tool.
See Also:
"Ways to Use Application Context with Fine-Grained Access Control"
"How to Add a Policy to a Table, View, or Synonym" for information about using the DBMS_RLS.ADD_POLICY
procedure to add policies for VPD.
VPD and Oracle Label Security are not enforced during DIRECT
path export. Also, VPD policies and Oracle Label Security policies cannot be applied to objects in the SYS
schema. As a consequence, the SYS
user and users making a DBA-privileged connection to the database (for example, CONNECT/AS SYSDBA
) do not have VPD or Oracle Label Security policies applied to their actions. The database user SYS
is thus always exempt from VPD or Oracle Label Security enforcement, regardless of the export mode, application, or utility used to extract data from the database. However, SYSDBA
actions can be audited by enabling such auditing upon installation and specifying that this audit trail be stored in a secure location in the operating system.
Similarly, database users granted the EXEMPT ACCESS POLICY
privilege, either directly or through a database role, are exempt from VPD enforcements. They are also exempt from some Oracle Label Security policy enforcement controls, such as READ_CONTROL
and CHECK_CONTROL
, regardless of the export mode, application, or utility used to access the database or update its data. However, the following policy enforcement options remain in effect even when EXEMPT ACCESS POLICY
is granted:
INSERT_CONTROL
, UPDATE_CONTROL
, DELETE_CONTROL
, WRITE_CONTROL
, LABEL_UPDATE
, and LABEL_DEFAULT
If the Oracle Label Security policy specifies the ALL_CONTROL
option, then all enforcement controls are applied except READ_CONTROL
and CHECK_CONTROL
.
EXEMPT ACCESS POLICY
is a very powerful privilege and should be carefully managed. It is inadvisable to grant this privilege WITH ADMIN OPTION
because very few users should have this exemption.
Note:
The EXEMPT ACCESS POLICY
privilege does not affect the enforcement of object privileges such as SELECT
, INSERT
, UPDATE
, and DELETE
. These privileges are enforced even if a user has been granted the EXEMPT ACCESS POLICY
privilege.
The SYS_CONTEXT
values that VPD uses are not propagated to secondary databases for failover.
Oracle enables applications to enforce fine-grained access control for each user, regardless of whether that user is a database user or an application user unknown to the database.
When application users are also database users, VPD enforcement is relatively simple. Users connect to the database, and the application sets up application contexts for each session. As each session is initiated under a different user name, it is simple to enforce different fine-grained access control conditions for each such user. Even proxy authentication permits different fine-grained access control for each user, because each session (OCI or thick JDBC) is a distinct database session with its own application context.
When proxy authentication is integrated with Enterprise User Security, user roles and other attributes can be retrieved from Oracle Internet Directory to enforce VPD. (In addition, globally initialized application context can also be retrieved from the directory.)
Applications connecting to the database as a single user on behalf of all users can also have fine-grained access control for each user. The user for that single session is often called One Big Application User. Within the context of that session, however, an application developer can create a global application context attribute to represent the individual application user (for example, REALUSER
). Although all such database sessions and audit records are created for One Big Application User, each session attributes can vary, depending on who the real end user is. This model works best for applications with a limited number of users and no reuse of sessions. The scope of roles and database auditing is diminished because each session is created as the same database user.
Web-based applications typically have hundreds if not thousands of users. Even when there are persistent connections to the database, supporting data retrieval for many user requests, these connections are not specific to particular Web-based users. Instead, Web-based applications typically set up and reuse connections, to provide scalability, rather than having different sessions for each user. For example, when Web users Jane and Ajit connect to a middle tier application, it may establish a single database session that it uses on behalf of both users. Typically, neither Jane nor Ajit is known to the database. The application is responsible for switching the user name on the connection, so that, at any given time, it is either Jane or Ajit using the session.
Oracle Database VPD facilitates connection pooling by allowing multiple connections to access more than one global application context. This capability makes it unnecessary to establish a separate application context for each distinct user session.
Table 14-3 summarizes how VPD applies to various user models.
Table 14-3 VPD in Different User Models
User Model Scenario | Individual DB Connection | Separate Application Context per User | Single DB Connection | Application Must Switch User Name |
---|---|---|---|---|
Application users are also database users | Yes | Yes | No | No |
Proxy authentication using OCI or thick JDBC | Yes | Yes | No | No |
Proxy authentication integrated with Enterprise User SecurityFoot 1 | No | No | Yes | Yes |
One Big Application User | No | NoFoot 2 | Yes | Yes2 |
Web-based applications | No | No | Yes | Yes |
REALUSER)
, which can then be used for controlling each session attributes, or for auditing.