Active Grant Table 存在一个活动授权表
grant update table to zhangsan 修改表的权限 ; 修改表的
grant create table to zhangsan 授予创建表的权限 ; 授与创立表的权限
grant table to zhangsan 批改表的权限
grant create table to lisi 授予建表的权限 ; 授予创建表的权限 ; 没有此权限
grant on new table 授权于新的表
grant create table to myusername 授权创建表
grant create table to sun 授予创建表的权限
In other words, if all access to a table is static, the DBA would not need to grant access to the entire table or view, just to the package.
换句话说,如果对某个表的所有访问都是静态的,则DBA将不需要授予对整个表或视图的访问权限,而是仅授予对包的访问权限。
Therefore, if all access to a table is static, you would only need to grant access to the package, not the entire table or view.
因此,如果对一个表的所有访问都是静态的,您仅需要授权给程序包,而非整个表和视图。
The WITH GRANT OPTION is only available for the GRANT statements of packages, routines, schemas, tables, views, and table spaces.
WITH GRANT OPTION 只能用于包、例程、模式、表、视图和表空间的 GRANT 语句。
应用推荐