.Net |
|
||
2007年8月12日
摘要:
CREATE OR REPLACE PROCEDURE abcde(mgr in number)as type t_pubapplyrow is record( v_empno number(4), v_ename varchar2(10) ); v_mgr emp.mgr%type; type cur_test is ref cursor; emp_cur cur_test; ... 阅读全文
2007年8月11日
摘要:
CREATE OR REPLACE PROCEDURE proc_emp(mgr in number)is sqlstr varchar2(800); v_mgr emp.mgr%type; type cur_test is ref cursor; emp_cur cur_test; v_empno number(4); v_ename varchar2(10); --temp_tb... 阅读全文
2007年8月2日
摘要:
http://www.hgsql.com/forum/index.asp 阅读全文
2007年8月1日
摘要:
http://news.csdn.net/n/20070730/106848.html 阅读全文
2007年7月30日
摘要:
http://www.iciba.com/distinguish/http://sl.iciba.com/http://fy.iciba.com/appe mode (编辑)for recno()<100vf field 阅读全文
2007年7月15日
摘要:
http://download.oracle.com/docs/cd/B19306_01/rac.102/b28759/toc.htm 阅读全文
摘要:
select * from abc where trunc(add_months(to_date(InLiBDate,'yyyy-mm-dd'),StorageLife*12))-trunc(sysdate) between -7 and 0 阅读全文
摘要:
create or replace package PKG_Tools is type ResultData is ref cursor; procedure sp_Page(p_PageSize int, --每页记录数 p_PageNo int, --当前页码,从 1 开始 ... 阅读全文
摘要:
select to_date(to_number(to_char(sysdate,'yyyymmdd'))-1,'yyyy-mm-dd') from dual;oracle更新语句:update tablename a set name=(selete name from (select * from tablename where RandomId=0) b where to_number(s... 阅读全文
2007年7月7日
摘要:
表空间 空间大小 使用多少空间 剩余多少空间select ff.s tablespace_name, ff.b total, (ff.b - fr.b) usage, fr.b free, round((ff.b - fr.b) / ff.b * 100) || '%' usagep from (select tablespace_name s, ... 阅读全文
|
Copyright © 2024 东方新秀
Powered by .NET 9.0 on Kubernetes |