·Oracle财务软件(Oracle Financial)
·Oracle制造业软件(Oracle Manufacturing)
·Oracle人力资源软件(Oracle Human Resources)
·Oracle自动控制软件(Oracle Automotive)
·Oracle 商业交易系统(Oracle Exchange)
oracle 下载
http://www.oracle.com/technology/global/cn/software/products/database/oracle10g/index.html
http://updates.oracle.com/unzips/unzips.html
Oracle 数据库 10g 下载
http://download.oracle.com/otn/linux/oracle10g/10201/10201_database_linux32.zip
http://updates.oracle.com/unzips/unzip_lnx.Z
oracle 文档
Oracle Database 10g Release 2 Documentation Library
Part Number | Link | Download | Description |
B19306-01 | View Library | Download (445.8MB) | Documentation library for Oracle Database |
Oracle Database 10g Lite Documentation Library
B19188-01 | View Library | Download (15 MB) | Documentation library for Oracle Database Lite |
取oracle的error code 错误码查询
http://tahiti.oracle.com/
http://www.ora-code.com/ 或 http://ora-12537.ora-code.com
http://dolphin-ygj.iteye.com/blog/361948
http://clarancepeng.iteye.com/blog/118394
file:///E:/program/database/Oracle/oracle%20doc/oracle-err-code.html
E:\program\database\Oracle\oracle doc\oracle错误代码和信息速查手册.chm
http://dl.iteye.com/topics/download/db9f7833-9fb3-4cfe-aae6-a4723c135ff2
http://dl.iteye.com/topics/download/c10f2b24-21d7-3a3b-a6e3-5740bcd828de
有时候需要知道oracle的error code的具体含义, 但总是找不全 不过可以通过以下方式直接从oracle数据库本身获得:
create type t_oracle_error is object ( error_num varchar2(9), error_desc varchar2(1024) ); create type t_oracle_error_tab is table of t_oracle_error; create or replace function OracleErrors return t_oracle_error_tab pipelined is l_error t_oracle_error := t_oracle_error(null,null); begin for errNo in reverse -32799..0 loop l_error.error_num := errNo; l_error.error_desc := sqlerrm(errNo); if l_error.error_desc not like '%Message % not found;%' and l_error.error_desc != 'ORA'||to_char(errNo,'FM09999')||': ' then pipe row(l_error); end if; end loop; return; end OracleErrors; select * from table(oracleerrors);
一个简单的查询所有Oracle错误代码的语句
作者:fuyuncat
多年电信、航运行业经验的Oracle DBA
mail: [email protected]; [email protected]
msn:[email protected] Home
Page: http://www.HelloDBA.com/
http://fuyuncat.itpub.net/post/5203/64265
begin dbms_output.enable(1000000); for i in 0..10000 loop dbms_output.put_line(SQLERRM(0-i)); end loop; dbms_output.disable(); dbms_output.enable(1000000); for i in 10001..20000 loop dbms_output.put_line(SQLERRM(0-i)); end loop; end;/
end