Home > Database > Mysql Tutorial > body text

Oracle在PLSQL中创建用户并授权

WBOY
Release: 2016-06-07 17:34:01
Original
4662 people have browsed it

1、打开SQL Plus,根据提示输入用户名密码登录。 注意:如果是系统用户的话,只能用sysdba登录。例如:sys as sysdba,输入User的

1、打开SQL Plus,根据提示输入用户名密码登录。

注意:如果是系统用户的话,,只能用sysdba登录。例如:sys as sysdba,输入User的密码进行登录。

2、登录成功后,首先创建表空间,此处我的表空间“StationSpace”。

Create TableSpace StationSpace DataFile 'E:\Oracle\oradata\StationSpace\StationSpace.dbf' Size 1024M Uniform Size 128k;

3、表空间创建成功后,接着创建用户。

Create User UserName Identified by Password Default TableSpace StationSpace;

4、用户创建成功后,接着就可以给用户授权。

Grant Connect,Resource,DBA to UserName;

相关阅读:

Oracle 10g 安装后重启系统,用PLSQL连接报没有监听

ORA-03114 PLSQL过程编译断开连接错误

PLSQL 连接 Oracle简单配置

PLSQL批量Forall操作性能提升详解

使用Oracle SQLDeveloper连接数据库并创建用户

Oracle自带的PL/SQL Developer导入导出数据

在64位Win7系统下安装Oracle 11g和Oracle SQL Developer客户端

linux

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!