当前位置:网站首页>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
边栏推荐
- 【Go实战基础】gin 如何获取 GET 和 POST 的请求参数
- Image transformation, transpose
- Linux二进制安装Oracle Database 19c
- Matplotlib剑客行——容纳百川的艺术家教程
- commands out of sync. did you run multiple statements at once
- C Gaode map obtains the address according to longitude and latitude
- C language - Blue Bridge Cup - 7 segment code
- 数构(C语言)——第四章、矩阵的压缩存储(下)
- 京东面试官问:LEFT JOIN关联表中用ON还是WHERE跟条件有什么区别
- Mysql安装时mysqld.exe报`应用程序无法正常启动(0xc000007b)`
猜你喜欢

Driving test Baodian and its spokesperson Huang Bo appeared together to call for safe and civilized travel

聊聊消息队列高性能的秘密——零拷贝技术

Solution and analysis of Hanoi Tower problem

Matplotlib剑客行——容纳百川的艺术家教程

MYSQL安装出现问题(The service already exists)

win10使用docker拉取redis镜像报错read-only file system: unknown

Matplotlib剑客行——初相识Matplotlib

kubernetes部署loki日志系统

commands out of sync. did you run multiple statements at once

Complete solution of servlet: inheritance relationship, life cycle, container, request forwarding and redirection, etc
随机推荐
十年開發經驗的程序員告訴你,你還缺少哪些核心競爭力?
C nail development: obtain all employee address books and send work notices
Installing Oracle database 19C RAC on Linux
C4D quick start tutorial - Chamfer
Minecraft air Island service
MYSQL安装出现问题(The service already exists)
Judge whether it is Sudoku
Matplotlib swordsman Tour - an artist tutorial to accommodate all rivers
Cloudrev self built cloud disk practice, I said that no one can limit my capacity and speed
机器学习之数据类型案例——基于朴素贝叶斯法,用数据辩男女
【Go实战基础】gin 如何验证请求参数
Talk about the secret of high performance of message queue -- zero copy technology
Linux安装Oracle Database 19c RAC
libusb的使用
Matplotlib剑客行——初相识Matplotlib
Gocv image cutting and display
2022/2/14 summary
我服了,MySQL表500W行,居然有人不做分区?
NPOI 导出Word 字号对应
汉诺塔问题的求解与分析