oracle导出BOM文件,ORACLE ERP导数据(BOM清单)-备份恢复-Oracle频道-中国IT实验室

方法:把数据导入BOM清单的方法是,把数据导入接口表中,让其自动运行既可。上传文件的时候,要注意使      用ASCII字符模式。

1、自己建立一中转表

drop table cux_bill_temp;

create table cux_bill_temp(

bill_sequence_id  number,

assembly_item_id number,

organization_id number,

assembly_item  varchar2(50),   --BOM

component_sequence_id   number,

component_quantity   number, --组件数量

item_num    number, --项目序列

operation_seq_num   number, --工序序列

component_item_id   number,

component_item   varchar2(50),  --组件

PLANNING_FACTOR   number,  --计划%d100

component_yield_factor  number,  --产出率d1

wip_supply_type   number,  --供应类型

supply_type    varchar2(50),

supply_subinventory   varchar2(50), --供应子库存

OPTIONAL    number,  --可选的

OPTIONAL_disp    varchar2(10), --可选的

MUTUALLY_EXCLUSIVE_OPTIONS   number,  --互不相容

MUTUALLY_EXCLUSIVE_O_disp  varchar2(10), --互不相容

attribute1    varchar2(50),   --排序号

row_num    number)

;

2、删除中转表中的数据

delete cux_bill_temp;

3、把要导入的数据放在扩展名为*.csv的文件中,且要相对应于中转表的字段,本例中的文件名为bill.csv。

另外的脚本文件为bill.ctl,其内容如下:

options (skip=1)  //跳过第一行,一般第一行为其字段说明

LOAD DATA

INFILE bill.csv  //bill.csv为数据文件

APPEND

INTO TABLE cux_bill_temp

FIELDS TERMINATED BY "," OPTIONALLY ENCLOSED BY '"'

(与中转表相对应的字段列表)

登录进入ORACLE数据库,利用命令:(sqlload 用户名/密码@数据库名)载入文件bill.csv的数据入中转表。

4、查看中转表中的记录数(以备导入数据后进行对比)

select count(*) from cux_bill_temp;

5、去除导入时在表bill.csv中的关键字段的空格字符,以免影响导入。

update cux_bill_temp

set ASSEMBLY_ITEM=replace(ASSEMBLY_ITEM,' ',''),

COMPONENT_ITEM=replace(COMPONENT_ITEM,' ','');

6、查看是否有重复的选项(既是否重复了Item)

select assembly_item,component_item,min(row_num),count(*)

from cux_bill_temp

group by assembly_item,component_item

having count(*)>1;

如果有重复的Item,则要删除(或是重新合并)

delete cux_bill_temp

where row_num in (select min(row_num) from cux_bill_temp

group by assembly_item,component_item

having count(*)>1);

以下步骤为选做(如有重复才做,没有重复不做7-10)

7、再重新建立一个临时表(对于有重复数据,则只取一条数据,现取row_num最小的一条)

drop table cux_bill_a;

create table cux_bill_a

as

select assembly_item,

component_item,

component_quantity,

PLANNING_FACTOR,

component_yield_factor,

supply_type,

supply_subinventory,

OPTIONAL_disp,

MUTUALLY_EXCLUSIVE_O_disp,

attribute1,

min(row_num) row_num

from cux_bill_temp

group by assembly_item,

component_item,

component_quantity,

PLANNING_FACTOR,

component_yield_factor,

supply_type,

supply_subinventory,

OPTIONAL_disp,

MUTUALLY_EXCLUSIVE_O_disp,

attribute1;

8、删除cux_bill_temp表

delete cux_bill_temp;

9、再重cux_bill_a表中把数据导入给cux_bill_temp表,完成把重复数据剔除的功能

insert into cux_bill_temp(

assembly_item,

component_item,

component_quantity,

PLANNING_FACTOR,

component_yield_factor,

supply_type,

supply_subinventory,

OPTIONAL_disp,

MUTUALLY_EXCLUSIVE_O_disp,

attribute1,

row_num)

select assembly_item,

component_item,

component_quantity,

PLANNING_FACTOR,

component_yield_factor,

supply_type,

supply_subinventory,

OPTIONAL_disp,

MUTUALLY_EXCLUSIVE_O_disp,

attribute1,

row_num

from cux_bill_a;

10、删除表cux_bill_a

drop table cux_bill_a;

11、再检查一次表,是否有重复的数据

select assembly_item,component_item,min(row_num),count(*)

from cux_bill_temp

group by assembly_item,component_item

having count(*)>1;

12、查看在mtl_system_items表中,既是在库存表中,有没有不存在的Item.

select distinct item

from (

select distinct assembly_item item

from cux_bill_temp b

where not exists (select null from mtl_system_items where segment1=b.assembly_item and organization_id=2)

union

select distinct component_item item

from cux_bill_temp b

where not exists (select null from mtl_system_items where segment1=b.component_item and organization_id=2)

)

order by item;

13、如果在mtl_system_items中,有不存在的物品ITEM时,要把其删除(或是把这些物品Item导入到系统中)

删除:delete cux_bill_temp b

where  not exists (select null from mtl_system_items where segment1=b.component_item and organization_id=2);

delete cux_bill_temp a

where not exists  (select null from mtl_system_items where segment1=a.assembly_item  and organization_id=2);

14、对没有物品Item的进行处理,把其放入另一临时表cux_item_temp中(以备查询及导入mtl_system_items表中)

delete cux_item_temp;

insert into cux_item_temp(

segment1,description)

select distinct item,item

from (

select distinct assembly_item item

from cux_bill_temp b

where not exists (select null from mtl_system_items where segment1=b.assembly_item and organization_id=2)

union

select distinct component_item item

from cux_bill_temp b

where not exists (select null from mtl_system_items where segment1=b.component_item and organization_id=2)

)

;

将找到没有ITEM的BOM数据放到另一个表中,以备下次ITEM导入后在导BOM

create table cux_bom_temp1

select distinct item

from (

select distinct assembly_item item

from cux_bill_temp b

where not exists (select null from mtl_system_items where segment1=b.assembly_item and organization_id=2)

union

select distinct component_item item

from cux_bill_temp b

where not exists (select null from mtl_system_items where segment1=b.component_item and organization_id=2)

)

-----------------------------------------------------------------------------------------------------------

15、从表mtl_system_items中把物品的编码ID加入中转表cux_bill_temp表(从项目主组织)中

update cux_bill_temp b

set assembly_item_id=(select inventory_item_id from mtl_system_items

where segment1=b.assembly_item and organization_id=2),

component_item_id=(select inventory_item_id from mtl_system_items

where segment1=b.component_item and organization_id=2);

16、查看是否有没有物品ID的编码存在(既没有物品的ID被导入临时表cux_bill_temp中)

select row_num

from cux_bill_temp

where assembly_item_id is null or component_item_id is null;

17、对其中导入的数据进行处理

update cux_bill_temp

set OPTIONAL=1

where upper(OPTIONAL_disp) like 'Y%';

update cux_bill_temp

set OPTIONAL=2

where OPTIONAL is null;

update cux_bill_temp

set MUTUALLY_EXCLUSIVE_OPTIONS=1

where upper(MUTUALLY_EXCLUSIVE_O_DISP) like 'Y%';

update cux_bill_temp

set MUTUALLY_EXCLUSIVE_OPTIONS=2

where MUTUALLY_EXCLUSIVE_O_DISP is null;

18、查看cux_bill_temp中的数据处理是否有漏

select count(*)

from cux_bill_temp

where OPTIONAL is null

or MUTUALLY_EXCLUSIVE_OPTIONS is null

or assembly_item_id is null

or component_item_id is null;

19、更新其内的WIP_SUPPLY_TYPE;

update cux_bill_temp

set WIP_SUPPLY_TYPE=6

where component_item like 'B%';

20、删除表中的包(cux_bill_temp中),其相对应于表bom_bill_of_materials(既在表中已经存在了些选项包,不必导入包头,只需导入包内容既可)

delete cux_bill_temp t

where exists (select null from bom_bill_of_materials where assembly_item_id=t.assembly_item_id and organization_id=2);

21、利用已经写好的包写入数据(既写入接口表bom_bill_of_mtls_interface)

exec cux_bom_temp.insert_bill_15(1);

select count(*) from cux_bill_temp temp

where exits (select null from bom_inventory_components  b

where temp.bill_sequence_id=b.bill_sequence_id

and temp.component_item_id=b.component_item_id);

delete cux_bill_temp temp

where exists (select null from bom_inventory_components  b

where b.bill_sequence_id=temp.bill_sequence_id

and b.component_item_id=temp.component_item_id);

exec cux_bom_temp.insert_bill_10(1);

22、对写入的数据在接口表中的情况进行查看

select count(*) from bom_bill_of_mtls_interface;

23、接着更新

exec cux_bom_temp.insert_bill_15(1);

select count(*) from cux_bill_temp where bill_sequence_id is null;

exec cux_bom_temp.insert_bill_20(1);

去提交请求

select count(*) from bom_inventory_comps_interface;

(导入成功后)对组件进行排序

exec cux_bom_temp.update_bill_item_num4;

select count(*) from bom_inventory_comps_interface;

24、对于接口表中的数据进行导入

delete bom_bill_of_mtls_interface;

insert into bom_bill_of_mtls_interface(

assembly_type,assembly_item_id,

organization_id,

process_flag,transaction_type)

select  distinct 1,assembly_item_id,

1,

1,'CREATE'

from cux_bill_temp;

【责编:landss】

--------------------next---------------------

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/309949.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

RMQ算法讲解

版权声明&#xff1a;本文为博主原创文章&#xff0c;遵循 CC 4.0 BY-SA 版权协议&#xff0c;转载请附上原文出处链接和本声明。 本文链接&#xff1a;https://blog.csdn.net/qq_41311604/article/details/79900893 </div><!--一个博主专栏付费入口--><!--一个…

Kubernetes是容器化微服务的圣杯么?

导语Kubernetes已成为山丘之王。开源技术Kubernetes以及随后的发行版正以超快的速度让人们爱上容器技术&#xff0c;并且开始夺回对容器化环境的控制权。不幸的是&#xff0c;编排容器只是战斗进行了一半。正文云服务提供商接连宣布他们的编排选择是Kubernetes私有发行版&#…

[设计模式]命令模式

代码如下: #include <iostream> #include <queue> #include <Windows.h> using namespace std;class HandleClientProtocol { public:void addMoney(){cout << "给玩家增加金币" << endl;}void addDiamond(){cout << "给玩…

oracle 附加日志 挂起,Oracle 附加日志(supplemental log)

附加日志(supplemental log)可以指示數據庫在日志中添加額外信息到日志流中&#xff0c;以支持基於日志的工具&#xff0c;如邏輯standby、streams、GoldenGate、LogMiner。可以在數據庫和表上設置。1.數據庫級設置&#xff0c;分兩類&#xff1a;1.1最小附加日志(minimal supp…

Zjnu Stadium HDU - 304 加权并查集

题意&#xff1a; 观众席围成一圈。列的总数是300&#xff0c;编号为1–300&#xff0c;顺时针计数&#xff0c;我们假设行的数量是无限的。将有N个人去那里。他对这些座位提出了要求&#xff1a;这意味着编号A的顺时针X距离坐着编号B。例如&#xff1a;A在第4列&#xff0c;X…

还不明白可空类型原理? 我可要挖到底了

一&#xff1a;背景1. 讲故事做好自媒体到现在有一个月了&#xff0c;关注我的兄弟应该知道我产出了不少文章&#xff0c;号里的粉丝也多起来了&#xff0c;我也尽最大努力做到有问必回&#xff0c;现在是基础的、高深的问题都接踵而来&#xff0c;可我也只是一只小菜鸟&#x…

[设计模式]策略模式

策略模式:定义了一系列算法&#xff0c;并将每一个算法封装起来&#xff0c;而且使它们还可以相互替换。 策略模式让算法独立于使用它的客户而独立变化。 代码如下: #include <iostream> using namespace std;class WeaponStrategy { public:virtual void useWeapon()…

蜘蛛牌 HDU - 1584(搜索——达到先让某些段先结合,达最优解)

题意&#xff1a; 一排杂乱的牌&#xff0c;牌间距为1&#xff0c;每次移动只能将小的牌&#xff0c;移动到较大牌上&#xff0c;最终使得牌从小到大排好在一堆。问移动的最小距离。 题目&#xff1a; 蜘蛛牌是windows xp操作系统自带的一款纸牌游戏&#xff0c;游戏规则是这…

oracle 启动实例配置,centOS 7配置单实例oracle自启动

1、修改/etc/oratab(oracle用户操作)vi /etc/oratabtestdb:/u01/app/oracle/product/11.2.0/db_1:N改为testdb:/u01/app/oracle/product/11.2.0/db_1:Y###注意替换对应 ORACLE_SID 和 ORACLE_HOME2、修改$ORACLE_HOME/bin/dbstart(oracle用户操作)echo $ORACLE_HOMEvi $ORACLE_…

浅析微软的网关项目 -- ReverseProxy

浅析微软的网关项目--ReverseProxyIntro最近微软新开了一个项目 ReverseProxy &#xff0c;也叫做 YARP(A Reverse Proxy)官方介绍如下&#xff1a;YARP is a reverse proxy toolkit for building fast proxy servers in .NET using the infrastructure from ASP.NET and .NET.…

[设计模式]模板方法模式

模板方法模式: 定义一个操作中算法的框架&#xff0c;而将一些步骤延迟到子类中。模仿方法模式使得子类可以不改变一个算法的结构即可重定义该算法的某些特定步骤。 代码如下: #include <iostream> using namespace std;class DrinkTemplate { public:virtual void Boi…

Max Sum Plus Plus HDU - 1024(动态规划求最大M子段和)

题意&#xff1a; ----最大M子段和问题 给定由 n个整数&#xff08;可能为负整数&#xff09;组成的序列以及一个正整数 m&#xff0c;要求确定序列的 m个不相交子段&#xff0c;使这m个子段的总和达到最大&#xff0c;求出最大和。 题目&#xff1a; Now I think you have …

oracle游标的常用属性,Oracle基础知识(二十六) - Oracle游标常用属性

Oracle游标相信大家都不陌生&#xff0c;下面就为您详细介绍Oracle游标的常用属性&#xff0c;如果您对Oracle游标方面感兴趣的话&#xff0c;不妨一看。Oracle游标常用属性&#xff1a;%FOUND&#xff1a;变量最后从游标中获取记录的时候&#xff0c;在结果集中找到了记录。%N…

差距(分享)

非985大学生, 你和别人的差距在哪里?&#xff08;转&#xff09; 非985大学生, 你和别人的差距在哪里? 中国青年报03-24 在知乎上看到这样一段话&#xff1a; “渣学校意味着渣教学&#xff0c;渣教学意味着渣学历&#xff0c;渣学历意味着渣就业&#xff0c;就算以后考了研究…

在微服务框架Demo.MicroServer中添加SkyWalking+SkyApm-dotnet分布式链路追踪系统

1.APM工具的选取Apm监测工具很多&#xff0c;这里选用网上比较火的一款Skywalking。Skywalking是一个应用性能监控(APM)系统&#xff0c;Skywalking分为服务端Oap、管理界面UI、以及嵌入到程序中的探针Agent部分&#xff0c;大概工作流程就是在程序中添加探针采集各种数据发送给…

[C++11]constexpr修饰常量表达式

常量表达式和非常量表达式的计算时机不同&#xff0c;非常量表达式只能在程序运行阶段算出结果&#xff0c;但是常量表达式的计算往往发生在程序的编译阶段&#xff0c;这可以极大提高程序的执行效率。 constexpr定义一个常量。 代码如下: #include <iostream> using …

oracle sql execute elapsed time,SQL ordered by Elapsed Time 脚本

--提取&beg_snap 、&end_snapselect * from dba_hist_snapshot x ;--提取&dbidselect * from v$database;--提取$inst_numselect * from v$instance;运行的时候输入上面的值(如果需要输入多次&#xff0c;那么输入同样值即可)select from (select round(nvl((sqt.e…

计算机组成原理期末复习题

地址总线A15~Ao(低),存储空间(按字节编址)分配如下 2000H~3FFFH为ROM区, 5000H~6FFFH为RAM区。用 ROM芯片(4Kx4)和RAM芯片(4Kx4)组成该存储器。请回答 &#xff1a;(1)分别需要ROM和RAM多少片? (2)用二进制形式写出每组芯片的地址范围,并说明可以通过哪些地址位来形成片选信号…

干货分享:如何使用Kubernetes的Ingress API

导语以Kubernetes的Kong为例&#xff0c;聊聊当前流行的开源且与云无关的Ingress控制器。正文您可以通过使用诸如Kong for Kubernetes的Ingress控制器&#xff08;使用自定义资源定义并提供许多插件&#xff09;来极大地扩展Ingress资源的功能。Kubernetes正在整个技术行业中得…

[PAT乙级]1029 旧键盘

旧键盘上坏了几个键&#xff0c;于是在敲一段文字的时候&#xff0c;对应的字符就不会出现。现在给出应该输入的一段文字、以及实际被输入的文字&#xff0c;请你列出肯定坏掉的那些键。 输入格式&#xff1a; 输入在 2 行中分别给出应该输入的文字、以及实际被输入的文字。每…