上一页 1 ··· 9 10 11 12 13 14 下一页
摘要: 解决方法:把一揽子采购协议或者PO的状态改成暂挂,重新审批 阅读全文
posted @ 2024-03-18 21:59 Iven_lin 阅读(95) 评论(0) 推荐(0)
摘要: 接收入库的种类接收入库可以按照数据来源分为2种: 1. 对于po订单以及发放的接收入库; 2. 对于内部请购单生成的sales order(后面的部分简称so)的接收入库; 接收入库还可以按照入库方式分为3种: 1. 直接入库:接收后自动入库; 2. 标准入库:先接收,后入库,分两个步骤; 3. 需 阅读全文
posted @ 2024-03-18 21:43 Iven_lin 阅读(418) 评论(0) 推荐(0)
摘要: --插入时不产生日志, --alter table cux_mtl_material_vmi2024038 nologging; --记录时间 --set timing on; declare cursor cur is select mmt.organization_id, mmt.subinve 阅读全文
posted @ 2024-03-18 21:39 Iven_lin 阅读(68) 评论(0) 推荐(0)
摘要: CREATE OR REPLACE PACKAGE PKG_ETL_CTL IS -- 调用主程序,调用存储过程 PROCEDURE SP_EXEC_PROC(I_JOB_ID NUMBER); -- 创建新的时间周期,运行数据周期作业及作业流状态处理 PROCEDURE SP_FLOW_RUN_D 阅读全文
posted @ 2023-01-19 13:58 Iven_lin 阅读(109) 评论(0) 推荐(0)
摘要: DEMO declare type tsi is record( t varchar2(100), s varchar2(100), i varchar2(100)); tsitemp tsi; maxid varchar2(20); begin for tsitemp in (select 'T_ 阅读全文
posted @ 2023-01-19 13:54 Iven_lin 阅读(48) 评论(0) 推荐(0)
摘要: select * from li.books where book_publish_date between '1-2月-2005' and '1-2月-2010'; select * from books where book_price between 50 and 60; select * f 阅读全文
posted @ 2023-01-19 13:53 Iven_lin 阅读(66) 评论(0) 推荐(0)
摘要: --创建表 create table tb_rent( region varchar2(2000), room varchar2(2000), hall varchar2(2000), rent varchar2(2000) ) 创建存储过程 create or replace procedure 阅读全文
posted @ 2023-01-19 13:52 Iven_lin 阅读(503) 评论(0) 推荐(0)
摘要: SELECT l.session_id sid, s.serial#, l.locked_mode 锁模式, l.oracle_username 登录用户, l.os_user_name 登录机器用户名, s.machine 机器名, s.terminal 终端用户名, o.object_name 阅读全文
posted @ 2023-01-19 13:50 Iven_lin 阅读(44) 评论(0) 推荐(0)
摘要: DEMO 阶段3 declare v_dept dept%rowtype; begin v_dept.deptno := &deptno; V_dept.dname := '&deptname'; V_dept.loc := '&loc'; if instr(v_dept.dname, ' ') > 阅读全文
posted @ 2023-01-19 13:46 Iven_lin 阅读(23) 评论(0) 推荐(0)
摘要: 需要sys账户登录后 SELECT * FROM SYS.link$; 阅读全文
posted @ 2023-01-19 13:45 Iven_lin 阅读(364) 评论(0) 推荐(0)
上一页 1 ··· 9 10 11 12 13 14 下一页