Materialized views can be encrypted for additional security. For example, if a materialized view contains data that was encrypted in the underlying table, you may want to encrypt the materialized view as well.
Prerequisites
You must be a user with DBA authority, or be the owner of the view.
Table encryption must already be enabled in the database to encrypt a materialized view.
Context and remarks
The encryption algorithm and key specified at database creation are used to encrypt the materialized view. To see the encryption settings in effect for your database, including whether table encryption is enabled, query the Encryption database property using the DB_PROPERTY function, as follows:
SELECT DB_PROPERTY( 'Encryption' ); |
As with table encryption, encrypting a materialized view can impact performance since the database server must decrypt data it retrieves from the view.
Use the SQL Anywhere 12 plug-in to connect to the database.
In the left pane, double-click Views.
Right-click the materialized view and click Properties.
Click the Miscellaneous tab.
Select or clear the Materialized View Data Is Encrypted checkbox as appropriate.
Click OK.
Discuss this page in DocCommentXchange.
|
Copyright © 2012, iAnywhere Solutions, Inc. - SQL Anywhere 12.0.1 |