当前位置:网站首页>Oracle delete tablespace and user
Oracle delete tablespace and user
2022-07-02 09:08:00 【Axi-ZYTao】
– See which table spaces are available
select * from dba_tablespaces
– View current login user
select * from user_users
– View all users
select * from dba_users
– Delete user
drop user user_name
– Delete empty table spaces , But it doesn't contain physical files
drop tablespace tablespace_nam
– Delete non empty table spaces , But it doesn't contain physical files
drop tablespace tablespace_name including contents
– Delete empty table spaces , Contains physical files
drop tablespace tablespace_name including datafiles
– Delete non empty table spaces , Contains physical files
drop tablespace tablespace_name including contents and datafiles
– If a table in another table space has a foreign key and other constraints associated with the fields of the table in this table space , He shall add cascade
drop tablespace tablespace_name including contents and datafiles cascade
边栏推荐
- Gocv image reading and display
- CSDN Q & A_ Evaluation
- 将一串数字顺序后移
- Jingdong senior engineer has developed for ten years and compiled "core technology of 100 million traffic website architecture"
- Pyspark de duplication dropduplicates, distinct; withColumn、lit、col; unionByName、groupBy
- Redis zadd导致的一次线上问题排查和处理
- C language - Blue Bridge Cup - 7 segment code
- Connect function and disconnect function of QT
- Matplotlib剑客行——没有工具用代码也能画图的造型师
- 「Redis源码系列」关于源码阅读的学习与思考
猜你喜欢
[staff] the lines and spaces of the staff (the nth line and the nth space in the staff | the plus N line and the plus N space on the staff | the plus N line and the plus N space below the staff | the
Cloudrev self built cloud disk practice, I said that no one can limit my capacity and speed
Function ‘ngram‘ is not defined
队列管理器running状态下无法查看通道
oracle修改数据库字符集
[staff] time sign and note duration (full note | half note | quarter note | eighth note | sixteenth note | thirty second note)
Kubernetes deploys Loki logging system
Talk about the secret of high performance of message queue -- zero copy technology
kubernetes部署loki日志系统
WSL安装、美化、网络代理和远程开发
随机推荐
During MySQL installation, mysqld Exe reports that the application cannot start normally (0xc000007b)`
Minecraft air Island service
《统计学习方法》——第五章、决策树模型与学习(上)
Multi version concurrency control mvcc of MySQL
Gocv boundary fill
cmd窗口中中文呈现乱码解决方法
Kubernetes deploys Loki logging system
统计字符串中各类字符的个数
Linux binary installation Oracle database 19C
【Go实战基础】gin 如何绑定与使用 url 参数
Function ‘ngram‘ is not defined
一个经典约瑟夫问题的分析与解答
Oracle related statistics
gocv图片读取并展示
Linux安装Oracle Database 19c RAC
Move a string of numbers backward in sequence
Minecraft install resource pack
选择排序和插入排序
我服了,MySQL表500W行,居然有人不做分区?
Servlet全解:继承关系、生命周期、容器和请求转发与重定向等