zoukankan      html  css  js  c++  java
  • oracle用户创建

    Microsoft Windows [版本 6.1.7601]
    版权所有 (c) 2009 Microsoft Corporation。保留所有权利。

    G:UsersAdmin>sqlplus

    SQL*Plus: Release 11.2.0.1.0 Production on 星期三 11月 16 15:29:13 2016

    Copyright (c) 1982, 2010, Oracle. All rights reserved.

    请输入用户名: 数据库dba用户名 as sysdba
    输入口令:

    连接到:
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options

    SQL> create user test identified by 123456
    2
    SQL> grant dba to test
    2
    SQL> conn test/123456 as sysdba
    已连接。
    SQL>

    test为创建的用户名,123456为test用户的密码

    删除用户方法如下:

    SQL> conn sys/123456 as sysdba
    已连接。
    SQL> drop user test
    2
    SQL>

    建议使用plsql创建更方便

    赋权限:

    GRANT CREATE SESSION TO UserName;--这样确保该用户可以登录数据库  

    GRANT CREATE TABLE TO UserName;--这样该用户可以创建表  

    grant connect to UserName;  

    grant exp_full_database to UserName;  

    grant imp_full_database to UserName;  

    grant resource to UserName;  

    grant create procedure to UserName;  

    grant create trigger to UserName;  

    grant execute any procedure to UserName;  

    grant grant any privilege to UserName;  

    grant restricted session to UserName;  

    grant select any table to UserName;  

    grant unlimited tablespace to UserName;  

    grant create any view to UserName;  

  • 相关阅读:
    js 简单排序
    封装Vue轮播图
    MonggoDB 基本操作
    Node + MVC模式 登录注册 小示例
    Node__Express
    Canvas 碎碎念
    vue 动态添加 删除 属性
    Vue 下 浏览器 点击实现复制功能
    电脑共享无线网
    抓包tcpdump
  • 原文地址:https://www.cnblogs.com/jhlong/p/6069785.html
Copyright © 2011-2022 走看看