删除用户
--以sysdba用户登录,查找需要删除的用户
conn / as sysdba
--查找用户
select * from dba_users;
select username from dba_users;
select username from dba_users where username='JACK';
select username from all_users where username='JACK';
--查看所有表空间总大小、已使用大小、剩余大小
select a.tablespace_name,total "Total(M)",free "Free(M)",total-free "Used(M)",round(((total-free)/total)*100,2) "Used(%)" from
( select tablespace_name,sum(bytes)/1024/1024 total from dba_data_files
group by tablespace_name) a,
( select tablespace_name,sum(bytes)/1024/1024 free from dba_free_space
group by tablespace_name) b
where a.tablespace_name=b.tablespace_name;
--查找表空间存储文件的路径
select * from dba_data_files;
--查看所有表占用的表空间的大小
select t.segment_name, t.segment_type, sum(t.bytes / 1024 / 1024) "占用空间(M)"
from dba_segments t
where t.segment_type='TABLE'
group by OWNER, t.segment_name, t.segment_type;
--查看表所属的用户
select owner,table_name from dba_tables where table_name='TEST_TBL01';
--查看用户所在的表空间(查看当前用户的缺省表空间)
conn JACK
select username,default_tablespace from user_users;
--查看表所属的表空间(查看所有表)
select table_name,tablespace_name from user_tables;
--查看表所属的表空间(查看指定表)
select table_name,tablespace_name from user_tables where table_name=upper('&table_name');
--删除用户
--注意:指定 cascade 会删除用户下的所有对象(包括表、视图、主键、外键、索引等;但不会删除存储过程、函数、包)。如果不指定则仅仅只删除用户,一般建议指定
conn /as sysdba
drop user myusername cascade;
--删除表空间
drop tablespace mytablespace including contents and datafiles cascade constraint;
例如:删除用户JACK及表空间USER_DATA:
--删除用户JACK,级联删除
drop user JACK cascade;
--删除表空间,及对应的表空间文件也删除掉。注意:如果多个用户使用相同的表空间,删除用户时不要删除表空间
drop tablespace USER_DATA including contents and datafiles cascade constraint;
相关阅读
1、字段名书写错误2、就是用到了oracle的关键字select * from v$reserved_words //查看oracle关键字 (size user 等)
用户增长并不只是UV、PV、DAU、GMV这些单项指标的增长,其最终目的是要从用户身上获取价值,因此更应关注用户的留存、转化等,实现用户
-- StartOracle 提供了以下四个函数用来做四舍五入。CEIL 向上四舍五入 FLOOR 向下四舍五入 ROUND 四舍五入 TRUNC 去掉
拼多多是一个购物平台,因为价格都比较的实惠,所以比较的受用户们的欢迎,其实和淘宝商城一样,大家收到了商品以后都是可以去进行评价的
在科技发展到今天的背景下,人们除了利用科技方便自己的生活,更多的人开始用科技的手段来进行自我的学习和提升。与传统线下学习不同