object table 表2

songhefei | 25 06, 2008, 15:53 | tips | (22 Reads)

create table stu (id number, stu studentobj);

insert into stu values(1,studentobj(1,'Jack','Smith','aaaaaa',null));

insert into stu values(2,studentobj(2,'mary','Smith','aaaaaa',null));

insert into stu values(2,studentobj(5,'mary','Smith','aaaaaa',null));

commit;

 查看全文
Trackback URL: http://blog.itpub.net//trackback.php?id=465022

不堪重用Piero

songhefei | 23 06, 2008, 18:35 | 心情随笔 | (30 Reads)
凌晨的点球对决,意大利出局! Piero 甚至都没有等到出场,悲乎?命乎? 23岁顶着R.Baggio 接班人的形象出山,虽然在俱乐部里风生水起,但是在国家队注定是一个不堪重用的阿斗.

98年世界杯,不在状态........

2000年欧洲杯,决赛浪费两次单刀,成为意大利罪人!

2002年世界杯,进了一个无关同样的远射......

2004年,仍然惨不忍睹

2006年,获得世界杯,单好象仍然与他无关

2008年.......没有登场,却已经闭幕..........


Trackback URL: http://blog.itpub.net//trackback.php?id=464897

timestamp 的存储与timestamp with timezone

songhefei | 21 06, 2008, 11:53 | oracle develop | (58 Reads)

Timestamp with time zone是指当地时区与格林尼制时间的偏移。

SQL> create table t_timestamp(t1 date,

t2 timestamp(9),

t3 timestamp(9) with local time zone,

t4 timestamp(9) with time zone)

 查看全文
Trackback URL: http://blog.itpub.net//trackback.php?id=464771

幸亏发生地震的地方不是山东

songhefei | 20 06, 2008, 17:58 | 心情随笔 | (51 Reads)

山东作协副主席王兆山先生发表于齐鲁晚报的江城子:

天灾难避死何诉,主席唤,总理呼,党疼国爱,声声入废墟。十三亿人共一哭,纵做鬼,也幸福。银鹰战车救雏犊,左军叔,右警姑,民族大爱,亲历死也足。只盼坟前有屏幕,看奥运,共欢呼。

tmd太有才了


Trackback URL: http://blog.itpub.net//trackback.php?id=464717

背不背,看看法国队

songhefei | 18 06, 2008, 16:54 | 心情随笔 | (63 Reads)

点儿背到家了!

10分钟:里贝里受伤;

30分钟: 阿比达尔制造了点球,并且被罚下

70分钟: 亨利.......

真是运气坏透了!

还好,我是意大利的忠实拥趸.........

感谢荷兰.......


Trackback URL: http://blog.itpub.net//trackback.php?id=464603

dual 表引起create materialized view 的ora-1422

songhefei | 17 06, 2008, 11:40 | tips | (68 Reads)

关于dual表的链接

http://songhefei.itpub.net/post/7281/216328

http://songhefei.itpub.net/post/7281/463102

create materilized view 时报 ora-1422错误

 查看全文

Trackback URL: http://blog.itpub.net//trackback.php?id=464539

Oracle parallel recovery

songhefei | 03 06, 2008, 17:54 | backup/restore/recover | (173 Reads)
Parallel recovery can speed up both instance recovery and media recovery. In parallel recovery, multiple parallel slave processes are used to perform recovery operations. The SMON background process reads the redo log files, and the parallel slave processes apply the changes to the datafiles.

In a serial recovery scenario, the SMON background process both reads the redo log files and applies the changes to the datafiles. This may take a considerably long time when multiple datafiles need to be recovered. However, when parallel recovery is being used, the SMON process is responsible only for reading the redo log files. The changes are applied to the datafiles by multiple parallel slave processes, thereby reducing the recovery time.

Recovery requires that the changes be applied to the datafiles in exactly the same order in which they occurred. This is achieved by single-threading the read phase of the recovery process by the SMON process. SMON reads the redo log files and serializes the changes before dispatching them to the parallel slave processes. The parallel slave processes then apply those changes to the datafiles in the proper order. Therefore, the reading of the redo log files is performed serially even during a parallel recovery operation.

读redo log 肯定是lgwr 的时,而smon 只是进行分发,我想肯定要file_id,block_id进行hash 的,否则cache buffer chains 的latch 竞争一定会非常严重,影响parallel的效率!


Trackback URL: http://blog.itpub.net//trackback.php?id=463506

dual 小研究

songhefei | 29 05, 2008, 17:33 | tips | (170 Reads)

上一篇:

http://songhefei.itpub.net/post/7281/216328

 查看全文

Trackback URL: http://blog.itpub.net//trackback.php?id=463102

众志成城,共度难关!

songhefei | 15 05, 2008, 17:06 | 心情随笔 | (266 Reads)

众志成城,共度难关!


Trackback URL: http://blog.itpub.net//trackback.php?id=462075

分布事务执行计划问题

songhefei | 26 04, 2008, 12:34 | oracle 数据库 | (321 Reads)

local: Oracle9.2.0.1

remote :Oracle9.2.0.6

 查看全文

Trackback URL: http://blog.itpub.net//trackback.php?id=460598

好累!

songhefei | 03 04, 2008, 11:15 | 心情随笔 | (408 Reads)

全力备战系统分析师的考试,真是累!

书到用时方恨少!


Trackback URL: http://blog.itpub.net//trackback.php?id=458865

object table 的存储

songhefei | 10 03, 2008, 16:47 | oracle 数据库 | (111 Reads)

一点小研究

 查看全文

Trackback URL: http://blog.itpub.net//trackback.php?id=456909