Table of Contents

Search

  1. About the Data Vault Administrator Guide
  2. Introduction to the Data Vault
  3. Data Vault Service Startup and Shutdown
  4. Data Vault Configuration
  5. Data Vault SSL Setup
  6. Data Vault ODBC Setup
  7. Data Vault Administration
  8. Data Repartitioning
  9. Partial Data Vault Copy
  10. Archived Data Migration
  11. Data Validation
  12. Bulk File Uploader
  13. Data Vault Administration Tool
  14. Data Vault Logs
  15. User Account Privileges
  16. ssasql Command Line Program
  17. Data Vault Audit Log
  18. Appendix A: Sample Configuration Files

Data Vault Administrator Guide

Data Vault Administrator Guide

Examples of Owner Privileges

Examples of Owner Privileges

The following example grants all authorization IDs the ability to update two specific columns (“col1” and “col3”) in a table called “my_table”:
GRANT UPDATE (col1, col3) ON TABLE my_table TO PUBLIC;
In this case, users without DBA privileges, who possess no other privileges on
my_table
, cannot update any other columns.
The following example grants DBA privileges to an authorization ID called “marketing”:
GRANT DBA TO marketing;
The following example grants to authorization IDs “clive”, “bertrand”, and “nigel” the ability to specify domain “d_char” as a domain argument in a column definition (and also to GRANT USAGE on the domain to other users):
GRANT USAGE ON DOMAIN d_char TO clive, bertrand, nigel WITH GRANT OPTION;

0 COMMENTS

We’d like to hear from you!