oracle 创建数据库,创建用户 给用户授权操作:

create tablespace  表空间名称
logging
datafile 'D:\Oracle\LH\app\oradata\orcl\mmis.dbf'//空间文件存储路径(oracle 安装根目录下)
size 2048m//大小
autoextend on //自增
next 50m maxsize 4096m
extent management local;

创建用户并给用户授权

create user  用户名  identified by  密码 default tablespace  表空间 temporary tablespace TEMP profile default quota unlimited on users;
--添加用户授权:
grant dba,connect,resource,aq_administrator_role,aq_user_role,authenticateduser to 用户名;

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-12
  • 2022-12-23
  • 2022-12-23
  • 2021-12-22
猜你喜欢
  • 2022-01-15
  • 2021-06-14
  • 2022-12-23
  • 2022-01-07
  • 2021-11-18
  • 2022-01-11
相关资源
相似解决方案