0% found this document useful (0 votes)
42 views

Permisos en Oracle: Roles Básicos

This document lists Oracle permissions that are granted to a user called cdc_user. It grants basic connect and resource permissions, as well as permissions for table DDL and DML, index and view DML, triggers, sequences, procedures, system views, archive and redo logs, sessions and transactions, tables and related objects, other objects like mviews and sequences, storage, and permissions. The goal is to provide cdc_user with extensive permissions to perform various operations in Oracle.

Uploaded by

Fernando Alberto
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
42 views

Permisos en Oracle: Roles Básicos

This document lists Oracle permissions that are granted to a user called cdc_user. It grants basic connect and resource permissions, as well as permissions for table DDL and DML, index and view DML, triggers, sequences, procedures, system views, archive and redo logs, sessions and transactions, tables and related objects, other objects like mviews and sequences, storage, and permissions. The goal is to provide cdc_user with extensive permissions to perform various operations in Oracle.

Uploaded by

Fernando Alberto
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

Permisos en Oracle

Roles básicos
• grant connect to cdc_user;
• grant resource to cdc_user;
• grant select_catalog_role to cdc_user;

Permisos de tabla DDL


• grant create any table to cdc_user;
• grant alter any table to cdc_user;
• grant drop any table to cdc_user;
• grant lock any table to cdc_user;

Permisos de tabla DML


• grant select any table to cdc_user;
• grant insert any table to cdc_user;
• grant update any table to cdc_user;
• grant delete any table to cdc_user;

Permisos de índice y vista DML


• grant create any index to cdc_user;
• grant alter any index to cdc_user;
• grant drop any index to cdc_user;
• grant create any view to cdc_user;
• grant drop any view to cdc_user;

Permisos de desencadenador DDL y DML


• grant create any trigger to cdc_user;
• grant alter any trigger to cdc_user;
• grant drop any trigger to cdc_user;

Permisos de secuencia DDL y DML


• grant create any sequence to cdc_user;
• grant select any sequence to cdc_user;

Permisos de procedimiento
• grant create any procedure to cdc_user;
• grant execute any procedure to cdc_user;

Procedimiento para realizar v_$ en tablas


• grant select any dictionary to cdc_user;

Vistas generales del sistema


• grant select on sys.v_$database to cdc_user ;
• grant select on sys.v_$controlfile to cdc_user ;
• grant select on sys.v_$version to cdc_user;
• grant select on sys.nls_database_parameters to cdc_user ;

Registros de archivado y rehacer


• grant select on sys.v_$log to cdc_user;
• grant select on sys.v_$logfile to cdc_user;
• grant select on sys.v_$archived_log to cdc_user ;
• grant select on sys.v_$log_history to cdc_user ;

Sesiones y transacciones
• grant alter session to cdc_user;
• grant select on sys.v_$session to cdc_user;
• grant select on sys.gv_$session to cdc_user ;
• grant select on sys.v_$transaction to cdc_user ;
• grant select on sys.v_$mystat to cdc_user;

Tablas, índices, columnas y vistas relacionadas


• grant select on sys.all_coll_types to cdc_user ;
• grant select on sys.all_type_attrs to cdc_user ;
• grant select on sys.dba_tables to cdc_user;
• grant select on sys.dba_tab_comments to cdc_user;
• grant select on sys.dba_tab_columns to cdc_user ;
• grant select on sys.dba_col_comments to cdc_user;
• grant select on sys.dba_indexes to cdc_user ;
• grant select on sys.dba_ind_columns to cdc_user ;
• grant select on sys.all_constraints to cdc_user ;
• grant select on sys.dba_constraints to cdc_user ;
• grant select on sys.all_cons_columns to cdc_user ;
• grant select on sys.dba_cons_columns to cdc_user ;
• grant select on sys.tab$ to cdc_user;
• grant select on sys.ind$ to cdc_user;
• grant select on sys.lob$ to cdc_user;
• grant select on sys.col$ to cdc_user;
• grant select on sys.icol$ to cdc_user;
• grant select on sys.coltype$ to cdc_user;
• grant select on sys.attrcol$ to cdc_user;
• grant select on sys.ccol$ to cdc_user;
• grant select on sys.cdef$ to cdc_user;

Otros objetos
• grant select on sys.obj$ to cdc_user;
• grant select on sys.dba_mviews to cdc_user;
• grant select on sys.dba_objects to cdc_user ;
• grant select on sys.dba_sequences to cdc_user ;
• grant select on sys.hist_head$ to cdc_user;
• grant select on sys.resource_cost to cdc_user ;

Almacenamiento
• grant select on sys.dba_tablespaces to cdc_user ;
• grant select on sys.dba_rollback_segs to cdc_user ;

Permisos
• grant select on sys.dba_users to cdc_user;
• grant select on sys.dba_sys_privs to cdc_user;
• grant select on sys.dba_tab_privs to cdc_user;
• grant select on sys.dba_profiles to cdc_user ;
• grant select on sys.dba_roles to cdc_user;
• grant select on sys.user$ to cdc_user;
• grant select on user_role_privs to cdc_user ;
• grant flashback any_table to cdc_user;

You might also like