学习是一种信仰。
发布时间:2013-04-08 16:00:39
ERROR:ORA-28002: the password will expire within 1100 days今天遇到了ORA-28002错误,在进入sqlplus时此错误可以忽略,但是如果在程序中连接数据库时报这个错,编译程序时报:PCC-F-02104, Unable to connect to Oracle解决办法:1、查看用户的profile设置SQL> select username,profile from dba_users where us.........【阅读全文】
发布时间:2013-03-31 20:15:40
cascade:瀑布;级联;级联删除,比如你删除某个表的时候后面加这个关键字,会在删除这个表的同时删除和该表有关系的其他对象1.级联删除表中的信息,当表A中的字段引用了表B中的字段时,一旦删除B中该字段的信息,表A的信息也自动删除。(当父表的信息删除,子表的信息也自动删除) 例如下面这两个表中分别.........【阅读全文】
发布时间:2013-03-28 15:18:28
今天往oracle insert中文日期(16-1月 -13)时报错:ora-01843,无效的月份;Cause:A date specified an invalid month. Valid months are: January-December, for format code MONTH, and Jan-Dec, for format code MON. Action:Enter a valid month value in the correct format. 1、查看客户端字符集.........【阅读全文】
发布时间:2013-03-27 17:26:09
1、oracle时间数据的存储格式 oracle数据库中存放时间格式的数据,是以oracle特定的格式存贮的,占7个字节,与查询时显示的时间格式无关,具体哪个字节表示什么,没必要都搞清楚。存贮的时间包括年月日时分秒,最小精度为秒,不存贮秒以下的时间单位。 &nb.........【阅读全文】
发布时间:2013-03-27 17:23:13
今天往oracle insert中文日期(16-1月 -13)时报错:ora-01843,无效的月份;Cause:A date specified an invalid month. Valid months are: January-December, for format code MONTH, and Jan-Dec, for format code MON. Action:Enter a valid month value in the correct format. 处理方法:1、查看客户.........【阅读全文】