ITPUB个人空间 »
visual2006的个人空间
欢迎访问 visual2006 的个人空间
我的论坛主题
-
2008-07-10 16:33:43 / Oracle开发
今天执行一过程的时候,运行了一段时间后报如下错,查看表里有一部分新数据,达人们提点一二:)ORA-04068: existing state of packages has been discardedORA-04065: not executed, altered or dropped functionORA-06512: at "DW.UPDATE_BREAK_PACK", line 130ORA-06512: at line 2
查看(171)
评论(6)
-
2008-06-26 08:55:23 / Oracle开发
今天检查表空间时无意发现一个小表所占空间巨大无比,70,000,000条记录有8G左右,查看了建表DDL和数据处理PROCEDURE都没有发现有什么奇怪的地方:confused: ,请大大们指点一二。建表DDL:create table STYLE_SITE_MASTER(。。。。)tablespace DW2pctfree 10initrans 1maxtrans 255storage(initial 64minextents 1maxextents unlimited);数据处理PROCEDURE:。。。。execute immediate 'truncate table style_site_master';。。。。insert /*+append+*/ into st
查看(429)
评论(11)
-
2008-06-03 08:54:49 / Oracle开发
在PROCEDURE中用游标,一共有6,000,000左右记录,处理了4,000,000以后报如下错误:ORA-01410: invalid ROWIDORA-06512: at "MyProceudre", line 51ORA-06512: at line 2ORA-01410 invalid ROWIDCause: A ROWID was entered incorrectly. ROWIDs must be entered as formatted hexadecimal strings using only numbers and the characters A through F. A typical ROWID format is ?00001F8.0001.0006?Action: Check the format, then enter the ROWID using the correct format. ROWID format: block ID, row in
查看(284)
评论(7)
-
2008-01-07 16:06:34 / Oracle开发
一个5*5的矩阵,用1,2,3,4来填充,要求2与1相邻,3与1,2相邻,4与1,2,3相邻,试求25个格子里数的最大和是多少?:p
查看(866)
评论(17)