网站首页 美食营养 游戏数码 手工爱好 生活家居 健康养生 运动户外 职场理财 情感交际 母婴教育 时尚美容

oracle用户管理与权限

时间:2024-11-19 01:13:43

1、创建与管理用户创建用户create user mr identified by mrsoftdefault tablespace userstemporary tablespace temp;

oracle用户管理与权限

2、创建用户配置磁盘限额create user east identified by mrsoftdefault tablespace userstemporary tablespace tempquota 10m on tbsp_1;

oracle用户管理与权限

3、创建用户配置在指定表空间不受限制create user df identified by mrsoftdefault tablespace tbsp_1temporary tablespace tempquota unlimited on tbsp_1;

oracle用户管理与权限

4、用户权限管理授权操作为用户授予连接和开发权限--创建用户dongfangcreate user dongfang identified by mrsoftdefault tablespace usersquota 10m on users;--创建用户xifangcreate user xifang identified by mrsoftdefault tablespace usersquota 10m on users;--授权grant create session,create table to dongfang with admin option;connect dongfang/mrsoft;grant create session,create table to xifang;--连接到xifangconnect xifang/mrsoft;create table tb_xifang( id number, name varchar2(20));

oracle用户管理与权限
© 2025 小知经验
信息来自网络 所有数据仅供参考
有疑问请联系站长 site.kefu@gmail.com