- 1、本文档共33页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
oracle实用笔记(国外英文资料)
oracle实用笔记(国外英文资料)
User management:
Sys user: the sys program stores the base table and the dynamic view of the data dictionary, which has a dba database administrator, sysdba system administrator, sysoper system operator,
These roles also have the authority to have these roles, which is the most privileged of sysdba, which is a lot more than sysoper to create a delete database that can be fully and partially restored
Sysoper can only recover fully. The dba authority is the smallest of the three that does not have the permission to turn off the data
You can only log in as sysdba or sysoper, and you cant log in as normal.
System user: storing the secondary data, having the dba, the sysdba role, can log in as normal
Authorization (system authority, object permissions), if you want to allow the user to continue to assign permissions to the user to add ...
Grant connect (dba, resource) to user name with admin option
Grant select (insert, update, all...) The on table name is to the user name (which is logged in to the user with another user) with grant option
Connect: alter session, create clustr, database link, session, table, view, sequence
Dba: has all the system permissions and the with admin option
Resource: create cluster, indextype, table, sequence, type, procedure, trigger, unlimit database
Object permissions: select, update, insert, delete, all, create index...
Roles: connect, dba, resource (which can be built in the table space)
Recover the permissions
Revoke authority on table name from user
System authority does not cascade collection, object authority will cascade recovery
The custom roles
Create role name not identified;
The create role role name identified by the user name;
The role is removed from the role in the custom role and the appropriate permissions are removed
The relationship between the user and the schema: the schema is the same as the user name, and oracle manages the data object as a schema
Create a user
The create user user name identif
文档评论(0)