54. 如何知道数据裤中某个表所在的tablespace? select tablespace_name from user_tables where table_name='TEST'; select * from user_tables中有个字段TABLESPACE_NAME,(oracle); select * from dba_segments where …; desc user_tables; select tablespace_name from user_tables wher
查看库德使用状况.sql 十分方便,无需浪费大量时间去查看哪些表中有数据。 可以列出各表中有多少行记录,等等... 创建略 查询如下 --显示结果 select * from TableSpace where RowsCount>0 --order by TableName --order by TableName ASC --按表名称,用于统计表 --order by RowsCount DESC --按行数量,用于查看表行数 --order by Reserved DESC, Dat
sqlplus sys/sys@taxdb as sysdba 创建用户tpl,密码是tpl > Create user tpl identified by tpl; 给tpl用户授权 > Grant dba to tpl; 更改用户tpl的默认空间 >Alter user tpl default tablespace syjk_data;
drop user oldoa cascade create tablespace tbsoa DATAFILE 'F:\app\Administrator\oradata\orcl\tbsoa.dbf' size 1024m autoextend on next 30m; create user oldoa identified by oldoa; grant dba to oldoa; alter user oldoa default tablespace tbsoa; //-------