码迷,mamicode.com
首页 >  
搜索关键字:tablespace    ( 1117个结果
Oracle Storage in Action : 删除物理数据文件
ALTER TABLESPACE XH_DM DROP DATAFILE 'F:\DEV\ORACLE-DATA\ORCL\XH_DM_1.DBF';SQL> ALTER TABLESPACE XH_DM 2 DROP DATAFILE 'F:\DEV\ORACLE-DATA\ORCL\XH_D.....
分类:数据库   时间:2014-12-21 09:13:08    阅读次数:214
【oracle】oracledba8 NOLOGGING
You noticed that the index tablespace in your database requires a recovery. However, instead of performing a media recovery, you decide d to re-create the indexes in a new tablespace. Which two opti...
分类:数据库   时间:2014-12-20 18:15:57    阅读次数:238
【oracle】oracledba9 Rename the read-only data file to their correct file names.
One of the tablespace is read-only in your database. The los s of all  control file forced you to recreate the control file. Which operation do  you need to perform after re-creating the control fil...
分类:数据库   时间:2014-12-20 18:15:56    阅读次数:251
运行GoldenGate ddl_setup.sql脚本时报错*** Please move GOLDENGATE to its own tablespace
运行GoldenGate ddl_setup.sql脚本时报错*** Please move GOLDENGATE to its own tablespace...
分类:数据库   时间:2014-12-19 22:06:11    阅读次数:244
数据导入时注意点,修改登录密码不区分大小写
impdp system/system@ORCL directory=DATA_PUMP_DIR dumpfile=20141218.dmp remap_schema=HA_WXZJ:ha_wxzj remap_tablespace=ha_wxzj_data:users从一个用户导入到另一个用户,如...
分类:其他好文   时间:2014-12-18 16:38:40    阅读次数:195
oracle常用
创建、删除用户: create user lgehr identified by lgehr default tablespace users quota 1000M on users; grant create session, create table, create view to lgehr; grant dba? to lgehr; drop user lgeh...
分类:数据库   时间:2014-12-16 11:56:27    阅读次数:215
ORACLE - 管理表空间和数据文件
ORACLE表空间是一个逻辑分区,一个数据文件只能属于一个表空间,一个表空间可以拥有多个数据文件。一般情况下,如果一个实例分配给多个应用使用,需要创建不同的表空间,每个用户使用自己的表空间。一、表空间的创建与授权首先查看表空间的使用情况:select tablespace_name,sum(byte...
分类:数据库   时间:2014-12-14 19:52:18    阅读次数:323
oracle增加表空间的四种方法,查询表空间使用情况
增加表空间大小的四种方法Meathod1:给表空间增加数据文件ALTER TABLESPACE app_data ADD DATAFILE'D:\ORACLE\PRODUCT\10.2.0\ORADATA\EDWTEST\APP03.DBF' SIZE 50M;Meathod2:新增数据文件,并且允...
分类:数据库   时间:2014-12-13 17:46:02    阅读次数:328
Oracle创建表空间与用户
/* 说明:若已经存在相应的用户和表空间,则需要先删除相应的用户和表空间 然后再全部重新建立*/--删除用户drop user XDAYWEIXIN cascade;--删除表空间drop tablespace WEIXIN_DATA_TEMP including contents...
分类:数据库   时间:2014-12-09 19:07:45    阅读次数:216
Oracle表空间用户的基础语法
创建临时表空间:createtemporarytablespacemdm_temptempfile‘/u01/app/oracle/tempspace/mdm_temp.dbf‘size50mautoextendonnext50mmaxsize20480mextentmanagementlocal;创建表空间:createtablespaceMDMloggingdatafile‘/u01/app/oracle/tablespace/mdm.dbf‘size50mautoextend..
分类:数据库   时间:2014-12-09 02:04:51    阅读次数:202
1117条   上一页 1 ... 91 92 93 94 95 ... 112 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!