博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
数据库创建表空间,用户、密码,授权
阅读量:5251 次
发布时间:2019-06-14

本文共 634 字,大约阅读时间需要 2 分钟。

数据库创建表空间,用户、密码,授权

C:\Users\wangfg>sqlplus /nolog

SQL*Plus: Release 10.2.0.1.0 - Produc

Copyright (c) 1982, 2005, Oracle. Al

SQL> connect sys/wangfg as sysdba

已连接。
SQL> create tablespace tos2016 datafile 'F:\oracle\product\10.2.0\oradata\orcl\tos2016.dbf' size 20M autoextend on next 20m;

备注:orcl为数据库实例名。

表空间已创建。

SQL> create user tos2016 identified by ehl1234 default tablespace tos2016 temporary tablespace temp;

用户已创建。

SQL> grant connect to tos2016 ;

授权成功。

SQL> grant dba to tos2016 ;

SQL> exit

删除库

drop user tos2014 cascade;

drop tablespace tos2014 including contents and datafiles;

转载于:https://www.cnblogs.com/wangfg/p/5112391.html

你可能感兴趣的文章
BootScrap
查看>>
Java实现二分查找
查看>>
UIImage 和 iOS 图片压缩UIImage / UIImageVIew
查看>>
php7 新特性整理
查看>>
RabbitMQ、Redis、Memcache、SQLAlchemy
查看>>
03 线程池
查看>>
手机验证码执行流程
查看>>
设计模式课程 设计模式精讲 2-2 UML类图讲解
查看>>
Silverlight 的菜单控件。(不是 Toolkit的)
查看>>
jquery的contains方法
查看>>
linux后台运行和关闭SSH运行,查看后台任务
查看>>
桥接模式-Bridge(Java实现)
查看>>
303. Range Sum Query - Immutable
查看>>
C# Dynamic通用反序列化Json类型并遍历属性比较
查看>>
前台freemark获取后台的值
查看>>
Leetcode: Unique Binary Search Trees II
查看>>
C++ FFLIB 之FFDB: 使用 Mysql&Sqlite 实现CRUD
查看>>
Spring-hibernate整合
查看>>
c++ map
查看>>
exit和return的区别
查看>>