当前位置:网站首页>oracle表空间与用户的创建
oracle表空间与用户的创建
2022-08-11 05:11:00 【weixin_47088026】
表空间与用户的创建
create tablespace spaceName(表空间)
datafile 'D:/app/Administrator/oradata/orcl/EINVOICEDATA.dbf' size 128m autoextend on next 100m;
-- Create the user
create user userName(用户名)
identified by password(密码)
default tablespace userName(用户名)
temporary tablespace TEMP;
-- Grant/Revoke role privileges
grant connect to userName(用户名);
grant dba to userName(用户名);
GRANT SELECT ANY TABLE TO userName(用户名) WITH ADMIN OPTION;
边栏推荐
猜你喜欢
How to switch Green Shield encryption to IP-Guard encryption smoothly
四大函数式接口
交换机和路由器技术-21-RIP路由协议
Do you understand how the Selenium automated testing framework works?
Core Data 多线程设计
普林斯顿微积分读本05第四章--求解多项式的极限问题
论文笔记:BBN: Bilateral-Branch Network with Cumulative Learningfor Long-Tailed Visual Recognition
Redis-数据类型(基本指令、String、List、Set、Hash、ZSet、BitMaps、HyperLogLog、GeoSpatial)/发布和订阅
3 模块二:科研工具使用
应用层协议——DNS
随机推荐
Network Skill Tree
form form submission database Chinese becomes a question mark
Switch and Router Technology - 32 - Named ACL
元宇宙社交应用,靠什么吸引用户「为爱发电」?
Redis详解
guava RateLimiter均匀限流
prometheus:(二)监控概述(你永远逃不出我的手掌哈哈)
ARM结构体系4:嵌入式硬件平台接口开发
Let's talk programming languages together
-填涂颜色-
FPGA工程师面试试题集锦121~130
[FPGA tutorial case 49] Control case 1 - FPGA-based PID controller verilog implementation
4 模块三:文献阅读与研究方法
FPGA工程师面试试题集锦111~120
Switch and Router Technology-33-Static NAT
应用层协议——DNS
Redis-数据类型(基本指令、String、List、Set、Hash、ZSet、BitMaps、HyperLogLog、GeoSpatial)/发布和订阅
交换机和路由器技术-29-OSPF虚链路
交换机和路由器技术-24-OSPF单区域配置
MySQL数据库管理