zoukankan      html  css  js  c++  java
  • 学习ORACLE 的入门 (一般流程)

        在原来安装好的默认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.这样就可以进行操作了……

  • 相关阅读:
    《算法图解》——第六章 广度有限搜索
    《算法图解》——第一章 算法简介
    《算法图解》——第二章 选择排序
    go-json处理的问题
    Go断言
    Go Example--格式化字符串
    Go Example--strings
    Go Example--组合函数
    Go Example--defer
    Go Example--panic
  • 原文地址:https://www.cnblogs.com/top5/p/1571034.html
Copyright © 2011-2022 走看看