--create the tablespaceCREATE SMALLFILE TABLESPACE "TABLE_CONTAINER" --创建表空间 DATAFILE 'E:\ORACLE\ORADATA\ORCL\table_01.DBF' --建立数据文件,数据文件的文件位置SIZE 10....
分类:
数据库 时间:
2015-10-25 17:46:24
阅读次数:
188
安装oracle没有勾选"安装模板数据库",可以通过执行以下命令进行修改: cd$ORACLE_HOME/rdbms/admin到这个目录下sqlplus/assysdbaSQL>@/utlsampl.sql ②建立表空间 Create tablespace xxx datafile ' D:\or...
分类:
数据库 时间:
2015-10-23 21:35:38
阅读次数:
196
by tablespace(使用单位G):SELECT a.tablespace_name,(all_size-b.unuse_size) use_size,b.unuse_size,a.all_size,round((a.all_size-b.unuse_size)/a.all_size,2) u...
分类:
其他好文 时间:
2015-10-20 12:14:40
阅读次数:
151
2015-10-19/*分为四步 *//*第1步:创建临时表空间 */create temporary tablespace user_temp tempfile '/u01/app/oracle/oradata/orcl/user_temp.dbf' size 50m autoextend ...
分类:
数据库 时间:
2015-10-19 12:25:57
阅读次数:
248
QUESTION NO: 498?
View the Exhibit for some of the parameter settings. You start a session and issue the following
command:
SQL>CREATE INDEX emp_ename ON emp(ename) TABLESPACE users INVISIBLE;
Wha...
分类:
其他好文 时间:
2015-10-18 23:17:04
阅读次数:
431
QUESTION NO: 479
You issued the following command:
CREATE GLOBAL TEMPORARY TABLE admin_work_area
(startdate DATE,
enddate DATE,
class CHAR(20))
ON COMMIT DELETE ROWS
TABLESPACE tbs_t1;
An index...
分类:
其他好文 时间:
2015-10-18 12:54:33
阅读次数:
143
/*分为四步 *//*第1步:创建临时表空间 */create temporary tablespace user_temp tempfile 'D:\oracle\oradata\Oracle9i\user_temp.dbf' size 50m autoextend on next 50m max...
分类:
数据库 时间:
2015-10-18 11:14:45
阅读次数:
164
快速解决IMP中的ORA-00959用IMP向测试库导入DMP时,又遇到了ORA-00959表空间不存在的问题。一般的解决方法:1.先建表,在导入dmp时加ignore=y的参数。2.新建对应的表空间3.使用expdp从新导出,在impdp时用REMAP_TABLESPACE无论用那种方法都比较麻烦,都需要耗费一定的工作量。..
分类:
其他好文 时间:
2015-10-15 18:50:16
阅读次数:
210
QUESTION NO: 415
You issued the following command on the temporary tablespace LMTEMP in your database:
SQL>ALTER TABLESPACE lmtemp SHRINK SPACE KEEP 20M;
Which requirement must be fulfilled for th...
分类:
其他好文 时间:
2015-10-15 11:23:15
阅读次数:
149
QUESTION NO: 404
Which statement about the enabling of table compression in Oracle Database 11g is true?A. Compression can be enabled at the table, tablespace, or partition level for direct loads only...
分类:
其他好文 时间:
2015-10-15 10:07:53
阅读次数:
121