码迷,mamicode.com
首页 >  
搜索关键字:tablespace    ( 1117个结果
将用户当前表空间中的表和索引迁移到另一个表空间
查看INV用户的对象的存储情况select * from dba_segments ds where ds.owner='INV';--default tablespace users创建表空间INVcreate tablespace inv datafile '/oradata/ocm/inv01.dbf ' size 200M autoextend on nex
分类:其他好文   时间:2018-03-28 11:02:45    阅读次数:167
Oracle 冷备份详解【实战案例】
Oracle 冷备份详解--准备工作select * from v$database;select file_name from dba_data_files;create tablespace inv datafile ‘/oradata/ocm/inv01.dbf‘ size 2048M;create user inv identified by inv default tab
分类:数据库   时间:2018-03-27 12:22:52    阅读次数:198
Oracle创建用户 创建表空间 分配权限
cmdsqlplus /as sysdba ;1:创建临时表空间create temporary tablespace sjztjpt_temp tempfile 'D:\app\chenxp\oradata\orcl\sjztjpt_temp.dbf' size 50m autoextend on ...
分类:数据库   时间:2018-03-27 01:54:14    阅读次数:193
一次ORA-600处理
ORA-00600:internalerrorcode,arguments:[4194],[43],[46],[],[],[],[],[]出现这种情况,大多数是因为异常宕机,在启动的时候报的错误。DB不能启动。方法一:使用systemsegment(1)用spfile创建pfile,然后修改参数:#*.undo_tablespace=‘UNDOTBS1‘#*.undo_manage
分类:其他好文   时间:2018-03-24 17:27:44    阅读次数:128
tablespace innodb_index_stats is missing
导入mysqldump过程中,手贱(手残)按到ctrl+alt+z。导致此进程终止(暂停),因为当时执行查看进程时候ps-ef|grepmysql。然后还能看到进程mysql-uroot-p<back.sql估计是这个进程暂停了。ctrl+c结束进程后,进入到控制台,查询导入的表,也卡住不动。。。查看innodb_trx,innodb_waits,innodb_wait_locks;三张表也
分类:数据库   时间:2018-03-23 16:14:43    阅读次数:223
052-223(新增70题2018)
You are creating a locally managed tablespace to meet the following requirements: All the extents should be of the same size. The data should be sprea ...
分类:其他好文   时间:2018-03-21 13:51:41    阅读次数:158
ORA-1652:临时表空间异常优化处理
1、查看 alert_PROD.log    【错误信息】:ORA-1652: unable to extend temp segment by 128 in tablespace TEMP1 查看临时表空间基础信息及其使用情况:基础信息查看:select dtf.TABLESPACE_NAME, dtf.file_name, 
分类:其他好文   时间:2018-03-20 19:41:40    阅读次数:211
oracle远程物化视图
一、创建远程物化视图日志 源端: CREATE MATERIALIZED VIEW LOG ON tozwdb.test tablespace tozwdb_data WITH ROWID; 二、付权限 目标库 Create user tozwdb identified by tozwdb_dev; ...
分类:数据库   时间:2018-03-19 13:46:15    阅读次数:252
052-197(新增70题2018)
You specified extent management as local for a tablespace. How will it affect space management in the tablespace? A. All the extents will be of the sa ...
分类:其他好文   时间:2018-03-16 18:50:06    阅读次数:157
[日常工作]Oracle新增数据文件的小知识点
1. 表空间是small file tablespace的 然后数据文件长到了32g左右之后无法再次扩充, 应用报错了 为了性能和最快的处理 使用语句 alter tablespace user add datafile 'c:\cwdata\user21.dbf' size 32g 结果发现是报错 ...
分类:数据库   时间:2018-03-08 14:13:28    阅读次数:234
1117条   上一页 1 ... 24 25 26 27 28 ... 112 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!