上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 14 下一页
摘要: procedure prc_do_import_request(prm_org in number, prm_appcode out number, prm_appmsg out varchar2) is custom_exception exception; success boolean; v_ 阅读全文
posted @ 2024-04-07 16:29 Iven_lin 阅读(141) 评论(0) 推荐(0)
摘要: declare l_org_information3 varchar2(150); --帐套id l_company_desc varchar2(150); --公司中文描述 begin select o3.org_information3, o3.attribute3 into l_org_inf 阅读全文
posted @ 2024-04-07 16:26 Iven_lin 阅读(86) 评论(0) 推荐(0)
摘要: select * from gl_ledgers; 阅读全文
posted @ 2024-04-07 16:21 Iven_lin 阅读(26) 评论(0) 推荐(0)
摘要: Demo declare l_local_currency_code varchar2(15); --本位币 begin select gsob.currency_code into l_local_currency_code from gl_sets_of_books gsob, hr_opera 阅读全文
posted @ 2024-04-07 16:19 Iven_lin 阅读(56) 评论(0) 推荐(0)
摘要: Demo 创建表 --表名:cux_repeat create table cux_repeat ( id number(10), firstname varchar2(50 char), lastname varchar2(50 char) ); 插入数据 --插入数据 insert into c 阅读全文
posted @ 2024-04-07 16:10 Iven_lin 阅读(52) 评论(0) 推荐(0)
摘要: select max(su) su,max(mo) mo,max(tu) tu,max(we) we,max(th) th,max(fr) fr,max(sa) sa from(select case when d=1 then dd end su, case when d=2 then dd en 阅读全文
posted @ 2024-04-07 15:12 Iven_lin 阅读(27) 评论(0) 推荐(0)
摘要: DEMO --创建表 create table cux_num_temp( name varchar2(100), age number, addtime date ); 插入测试数据 insert into cux_num_temp(name,age,addtime)values('123',99 阅读全文
posted @ 2024-04-07 15:09 Iven_lin 阅读(142) 评论(0) 推荐(0)
摘要: --sql select lpad(' ', decode(l.xidusn, 0, 3, 0)) || l.oracle_username user_name, o.owner, o.object_name, o.object_type, s.sid, s.serial# from v$locke 阅读全文
posted @ 2024-04-07 14:58 Iven_lin 阅读(28) 评论(0) 推荐(0)
摘要: DEMO /* 列出指定表的所有字段, 使用时将 SYS_TABLE 换成具体表名即可[Oracle 10g,11g下运行通过] */ declare cursor c is select a.COLUMN_NAME || ' ' from all_tab_columns a where a.TAB 阅读全文
posted @ 2024-04-07 14:52 Iven_lin 阅读(83) 评论(0) 推荐(0)
摘要: Demo 创建表 create table cux_common_imports_temp( attribute1 varchar2(2000), attribute2 varchar2(2000) ); DEMO declare -- 获取相应的 某个程序包 所需要应用的包 cursor p_cu 阅读全文
posted @ 2024-04-07 14:34 Iven_lin 阅读(33) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 14 下一页