通常情况下,在线改变一个表的定义信息是很困难的。例如,当需要在不影响应用使用的情况下,将表从一个表空间迁至另一个表空间上。如果使用ALTER TABLE命令,则会影响数据的可用性。此时我们就需要用到在线重定义技术,Oracle 9i以上的版本提供了DBMS_REDEFINITION这个包。
现在debugo用户的t表在下TBS_MSSM表空间下,需要迁移到TBS_ASSM表空间下:
Continue reading
使用在线重定义改变表的所在表空间
Oracle Shared Pool点滴
1. What’s cursor
A handle or name for a private SQL area inthe PGA. Because cursors are closely associated with private SQL areas, theterms are sometimes used interchangeably.
2. Open_cursors
OPEN_CURSORS specifies the maximum number of open cursors (handles to private SQL areas)
a session can have at once. You can use this parameter to prevent a session from opening an excessivenumber of cursors.
It is important to set the value of OPEN_CURSORS highenough to prevent your application from running out of open cursors. The numberwill vary from one application to another. Assuming that a session does notopen the number of cursors specified by OPEN_CURSORS, there is no added overhead to setting this value higher than actually needed.
3. Shared pool包括
(1). Library cache:存储最近的可执行状态(解析过/编译过)的SQL语句和PL/SQL代码。
(1.1) library cache或 data dictionary cache的miss比buffer cache的miss代价大的多。例如软解析只需要CPU和library cache latch资源,而硬解析需要大量的CPU、library cache latch和shared pool latch。硬解析在SQL语句的解析和执行阶段都会发生。所以分配足够的内存是非常必要的。
(1.2) 如果没设置large_pool的情况下,Sharedserver连接,共享查询,RMAN都消耗了大量的shared pool内存。所以在SGA内存设置large pool来处理这些操作很有必要。
(1.3) shared pool中的内存分配以块的形式进行分配,以减少碎片的产生。
(2). Data dictionary cache: 数据字典缓存
(3). Server result cache:缓存查询和PL/SQL执行结果。可选的缓存区,由result_cache_max_size参数控制。
4. 在默认的CURSOR_SHARING=EXACT情况下,不同SQL文本、空格,大小写和注释的SQL语句都不能共享。例如
SELECT * FROM employees;
SELECT * FROM Employees;
SELECT * FROM employees;
Continue reading
使用Oracle LogMiner找回丢失的数据
最近的一次应用上线故障,导致一些数据被错误的DML修改。这里考虑用LOG MINER从归档日志文件中找回DML信息来恢复。
数据库是一个包含2节点的RAC环境,首先通过gv$archived_log查询一下那个时间段的日志信息:
1 2 3 4 5 |
SELECT * FROM gv$archived_log WHERE first_time = To_date('2013-05-17 09:00:00', 'yyyy-mm-dd hh24:mi:ss') AND first_time = To_date('2013-05-17 11:00:00', 'yyyy-mm-dd hh24:mi:ss') ORDER BY first_time, completion_time; |
Oracle 10.2.0.4.x 升级实录
三年前的一个单机Oracle数据库版本是10.2.0.4.3,需要升级到10.2.0.4.12,该版本是10.2.0.4系列最后一个稳定补丁版本。如今10.2只有Software Extended Support的许可才能下载相应的补丁=。=
对应的补丁如下:
Bug 12879933 – 10.2.0.4.12 (Apr 2012) Database Patch Set Update (PSU) Overlay (文档 ID 12879933.8)
(It is an overlay patch which must be installed on top of 10.2.0.4.4 Patch:9352164.)
所以还需要升级到10.2.0.4.4
Bug 9352164 – 10.2.0.4.4 (Apr 2010) Database Patch Set Update (PSU) (文档 ID 9352164.8)
1. 更新Opatch
1 2 3 4 |
$ pwd /oracle $ whoami oracle |
—-检查opatch版本—-
1 2 3 4 |
$opatch version Invoking OPatch 10.2.0.4.3 OPatch Version: 10.2.0.4.3 OPatch succeeded. |
Oracle自动任务执行时间详解
Oracle 11g默认启动了统计信息收集等自动任务,默认运行时间是周一到周五22点以及周六,周天的早上6点。
Continue reading
Scala 高级函数特性
函数和其他常量、变量一样,也是一个值。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
def sum(f:Int=>Int,a:Int,b:Int):Int= if(a>b) 0 else f(a)+sum(f,a+1,b) def f1(a:Int)=a def sum1(a:Int,b:Int):Int=sum(f1,a,b) def f2(a:Int)=a*2 def sum2(a:Int,b:Int):Int=sum(f2,a,b) // function as parameter def sum(f:(Int,Int)=>Int, a:Int, b:Int)=f(a,b) def sum(f:Int=>Int, a:Int, b:Int)=f(a) + b //anonymous function val power = (a:Int) => a^2 //function as return value def sum4(f:Int=Int) = (Int,Int) => Int = { def sum5(a:Int,b:Int):Int=if(a>b) 0 else f(a) + sum5(a+1,b); sum5 } |
利用oifcfg修复错误的网卡配置
在进行Oracle(版本11.2.0.3.5)三节点RAC(racdb01, racdb02, racdb03)的Clusterware安装选择网卡时显示
* 172.19.17.0(public网段) public
* 192.168.1.0(private网段) private
其中网卡是*,而非eth0/eth1。虽然clusterware安装成功,安装后续数据库prerequisite check时会报错。
Continue reading
Oracle sysresv OS共享内存和信号量工具
Oracle从8i开始提供一个小工具sysresv, 可以查看和清理操作系统上对应的ORACLE_SID的共享内存段ID(Shared Memory)和信号量ID(Semaphores)。
usage : sysresv [-if] [-d
-i : Prompt before removing ipc resources for each sid
-f : Remove ipc resources silently, oevrrides -i option
-d
-l sid1
Default : sysresv -d on -l $ORACLE_SID
Note : ipc resources will be attempted to be deleted for a
sid only if there is no currently running instance
with that sid.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
[oracle@racdb01 ~]$ sysresv -l RACDB1 IPC Resources for ORACLE_SID "RACDB1" : Shared Memory: ID KEY 655366 0x00000000 688135 0x00000000 720904 0xbeb0144c Semaphores: ID KEY 1015815 0x0edd0ed8 Oracle Instance alive for sid "RACDB1" [oracle@racdb01 ~]$ ipcs -mi 720904 Shared memory Segment shmid=720904 uid=54323 gid=50001 cuid=54323 cgid=50001 mode=0640 access_perms=0640 bytes=4096 lpid=11091 cpid=14154 nattch=0 att_time=Wed Dec 18 20:43:17 2013 det_time=Wed Dec 18 20:43:17 2013 change_time=Fri Oct 18 15:49:40 2013 [oracle@racdb01 ~]$ ipcs -si 1015815 Semaphore Array semid=1015815 uid=54323 gid=50001 cuid=54323 cgid=50001 mode=0640, access_perms=0640 nsems = 154 otime = Wed Dec 18 20:44:37 2013 ctime = Wed Dec 18 20:44:37 2013 semnum value ncount zcount pid 0 0 0 0 14154 1 4893 0 0 14154 2 10236 0 0 14154 3 32760 0 0 14154 4 0 0 0 0 5 0 0 0 0 6 0 0 0 14171 7 0 1 0 14173 8 0 0 0 0 9 0 1 0 14179 10 0 0 0 0 11 0 1 0 14183 ...... |
如果这个实例崩溃了,共享内存没有即时清理,可以使用这个工具的-if来清理共享内存。经过测试,无论使用kill -9 pmon还是shutdown abort以后,相应的共享资源立即被回收。而实例正常时无法清理共享资源。可见这个工具的应用场景并不大。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
[oracle@racdb01 ~]$ sysresv -if RACDB1 IPC Resources for ORACLE_SID "RACDB1" : Shared Memory: ID KEY 917510 0x00000000 950279 0x00000000 983048 0xbeb0144c Semaphores: ID KEY 1671175 0x0edd0ed8 Oracle Instance alive for sid "RACDB1" SYSRESV-005: Warning Instance maybe alive - aborting remove for sid "RACDB1" |
在线重建索引的ora-08104错误
今天遇到一个问题,alter index <index_name> rebuild online)时,可能由于网络的原因导致session断开连接。然后在之后的再次重建索引时,有ORA-08104(this index object <object_id> is being online built or rebuilt)错误。
Continue reading