-
2008-08-25 16:41:09 / Oracle数据库管理
create table emp_test as select * from soctt.emp;create table abcd as select * from scott.emp;1create or replace procedure show_emp_variable(p_table in varchar2) as2type t_emp_var is ref cursor;3v_cursor_var t_emp_var;4v_empno emp_test.empno%type;5v_ename emp_test.ename%type;6v_sal emp_test.sal%type;7v_comm emp_test.comm%type;8begin9if p_table='emp' then open v_cursor_var for select ename,sal,comm from emp_test;10elsif p_table=
查看(90)
评论(4)
-
2008-08-22 16:31:22 / Oracle数据库管理
create table emp_test(EMPNONUMBER(7,2),ENAMEVARCHAR2(20),JOBVARCHAR2(15),SALNUMBER,COMMNUMBER,FDATEDATE);declarev_emps emp_test%rowtype;cursor c1 is select
查看(150)
评论(7)
-
2008-08-18 13:06:00 / Oracle数据库管理
1. create table test(text long);2. insert into table test select username from dba_users;3. update test set text=(select text from test where rownum=1);第三句报错“ora-00997: illegal use of long datatype”请问该如何处理啊,非常感谢!
查看(65)
评论(7)
-
2008-06-11 09:45:52 / Oracle数据库管理
原来的DBExport for Oracle是导出成Excel文档格式,许多网友要求导出成Word文档格式,所以在原有的基础上重新发布了导出成Word版的软件,现命名为DBExportDoc V1.0 For Oracle.DBExportDoc V1.0 For Oracle(Oracle数据库表结构导出器)是一套用来完成将Oracle数据库中的表结构导出成Word文档,并输出标准的打印报表格式的软件。软件采用Word中VBA开发完成,软件使用Word中的菜单操作,与Word完全集成。因为软件完全利用OFFICE宏来控制报表输出,所以用户在使用软件时请开启Word中的宏功能。关于软件的更新内容可以关注我的
查看(1985)
评论(47)
-
2008-01-09 13:31:48 / Oracle电子文档
1
查看(1778)
评论(23)