上一页 1 2 3 4 5 6 ··· 14 下一页
摘要: 来源:ORACLE数据库高水位线(high water mark) - 墨天轮 (modb.pro) 文档课题:ORACLE数据库高水位线(high water mark).1、相关概念ORACLE数据库逻辑结构包括:数据库块(block),区(extent),段(segment),表空间(tabl 阅读全文
posted @ 2025-01-07 14:48 Iven_lin 阅读(432) 评论(0) 推荐(0)
摘要: 1.查看当前系统定义了那些值是中文的段值。 SELECT * FROM fnd_flex_value_sets ffvs WHERE ffvs.flex_value_set_name LIKE 'CUX%' AND EXISTS (SELECT 1 FROM fnd_flex_values_vl f 阅读全文
posted @ 2025-01-06 15:15 Iven_lin 阅读(161) 评论(0) 推荐(0)
摘要: --查询Oracle正在执行的sql语句及执行该语句的用户 SELECT b.sid oracleID, b.username 登录Oracle用户名, b.serial#, spid 操作系统ID, paddr, sql_text 正在执行的SQL, b.machine 计算机名FROM v$pr 阅读全文
posted @ 2025-01-06 14:47 Iven_lin 阅读(471) 评论(0) 推荐(0)
摘要: create or replace function Getweekbydate(sdate in date) return number is Result number;begin select to_char(decode(sign((to_date(to_char(sdate, 'yyyym 阅读全文
posted @ 2024-12-30 14:27 Iven_lin 阅读(32) 评论(0) 推荐(0)
摘要: --创建测试数据 create table bk_tesk(id varchar2(10),s varchar2(20)); insert into bk_tesk values ('A','1,2,3');insert into bk_tesk values ('B','4,5,6');inser 阅读全文
posted @ 2024-12-30 09:14 Iven_lin 阅读(2228) 评论(0) 推荐(1)
摘要: 分类帐表 用于存储币种、日历和科目表信息的主表包括: • FND_CURRENCIES • GL_PERIOD_SETS • GL_PERIODS • GL_PERIOD_STATUSES • GL_PERIOD_TYPE • FND_ID_FLEX_STRUCTURES • GL_LEDGERS 阅读全文
posted @ 2024-12-28 11:03 Iven_lin 阅读(106) 评论(0) 推荐(0)
摘要: --R12 SLA 子分类帐和GL总帐关联查询select xte.application_id "应用", xte.entity_id, xte.ledger_id "分类帐SOB", xte.entity_code, xett.name "事务实体类型", le.name "法人主体", le. 阅读全文
posted @ 2024-10-07 09:16 Iven_lin 阅读(54) 评论(0) 推荐(0)
摘要: 查询请购单的状态 select * from po_requisition_headers_all por where por.requisition_header_id = 63578; 修改请购单状态为未提交审批 update po_requisition_headers_all porh se 阅读全文
posted @ 2024-10-07 09:14 Iven_lin 阅读(20) 评论(0) 推荐(0)
摘要: EBS采购收货保存时,出现错误‘The quantity has not been converted from @@@ to Each, since the UOM conversion is not avaialable for this combination.’, 如下图 遇到这种情况是因为 阅读全文
posted @ 2024-07-02 09:05 Iven_lin 阅读(97) 评论(0) 推荐(0)
摘要: 1、关于采购模块采购接收的标准请求 接收事务处理处理器 以下兼容性:会导致程序多执行5秒钟 2、提交的时间 与 真正执行的时间 存在5秒左右的差距 3、去掉亚太本地化请求 结果:提交请求的时间跟执行的时间一致 阅读全文
posted @ 2024-07-02 08:53 Iven_lin 阅读(122) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 ··· 14 下一页