zoukankan      html  css  js  c++  java
  • oracle 学习

    删除用户,创建用户命令

    drop user goda cascade;删除用户及其下所有对象,包括表

    CREATE USER qdcenter
         IDENTIFIED BY qdcenter
         DEFAULT TABLESPACE data1
         TEMPORARY TABLESPACE temp1
         QUOTA unlimited ON data1
         QUOTA unlimited ON temp1
         QUOTA unlimited ON idx1
         QUOTA unlimited ON rbs1
         QUOTA 10M ON system;

    GRANT DBA TO qdcenter;


    grant create table to qdcenter;
    grant insert any table to qdcenter;
    grant select any table to qdcenter;
    grant update any table to qdcenter;
    grant delete any table to qdcenter;
    grant create any view to qdcenter;
    grant drop any view to qdcenter;
    grant alter any sequence to qdcenter;
    grant create any sequence to qdcenter;
    grant select any sequence to qdcenter;
    grant drop any sequence to qdcenter;
    grant create public synonym to qdcenter;
    grant create any synonym to qdcenter;
    grant drop public synonym to qdcenter;
    grant drop any synonym to qdcenter;

  • 相关阅读:
    uwsgi+nginx+django
    uwsgi怎么启动停止
    centos7 命令
    django 配置静态文件
    centos7 安装node
    python 字符串拼接
    Python 编码
    python 文件夹递归
    ArcGIS二次开发的几种方式
    集合的操作
  • 原文地址:https://www.cnblogs.com/zlqblog/p/3695723.html
Copyright © 2011-2022 走看看