oracle创建用户并进行连接

  1. 使用docker进行构建oracle镜像
    oracle构建
  2. 建立连接用户执行命令:
    connect system/manager
    create user test identified by test
    default tablespace users
    temporary tablespace temp;
    grant connect,resource,oem_monitor to test;
  3. 用test登录
    经过上面的操作可以进行连接到数据库。
    在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/qq_37256896/article/details/124124646
今日推荐