在原来安装好的默认ORCL数据库中进行一些相应的操作 基本上就满足的了一般的需求 ,以下是详细步骤>>

    1.创建表空间

    create tablespace  表空间名称  datafile   路径加表空间名称。DBF「'C:\oracle\product\10.1.0\oradata\orcl\BJYC.dbf' 」 size 大小「100M」  自动扩展 开/关 autoextend on /off

    2.创建用户

    create user BJYC「用户名」

    identified by ""

    default tablespace BJYC 「指定表空间」

    temporary tablespace TEMP

    profile DEFAULT;

    3. 授权指定用户

    —— Modify the user

    alter user BJYC

    quota unlimited on bjyc;

    —— Grant/Revoke role privileges

    grant dba to BJYC;

    grant mgmt_user to BJYC;

    —— Grant/Revoke system privileges

    grant alter user to BJYC;

    grant create any table to BJYC;

    grant create user to BJYC;

    grant drop user to BJYC;

    grant select any dictionary to BJYC;

    grant unlimited tablespace to BJYC;

    4.最后用新建的用户进行登录

    5.这样就可以进行操作了……

相关文章:

  • 2021-07-08
  • 2021-12-24
  • 2021-12-18
  • 2022-01-03
  • 2022-01-03
  • 2021-12-03
  • 2022-12-23
猜你喜欢
  • 2021-07-26
  • 2021-05-19
  • 2021-12-03
  • 2021-11-03
  • 2022-01-24
  • 2021-04-15
相关资源
相似解决方案