Browse Source

更新现场脚本

master
学 赵 1 year ago
parent
commit
27e23fbe15
  1. 680
      code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/scripts/README.md

680
code/src/Modules/SettleAccount/host/SettleAccount.HttpApi.Host/scripts/README.md

@ -7,26 +7,15 @@ GO
/****** Object: PartitionScheme [part_version_rang_schema] Script Date: 2023/10/8 8:48:30 ******/
CREATE PARTITION SCHEME [part_version_rang_schema] AS PARTITION [part_version_rang_func] TO ([PRIMARY], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2022], [2023], [2023], [2023], [2023], [2023], [2023], [2023], [2023], [2023], [2023], [2023], [2023], [2024], [2024], [2024], [2024], [2024], [2024], [2024], [2024], [2024], [2024], [2024], [2024], [2025], [2025], [2025], [2025], [2025], [2025], [2025], [2025], [2025], [2025], [2025], [2025], [2026], [2026], [2026], [2026], [2026], [2026], [2026], [2026], [2026], [2026], [2026], [2026], [2027], [2027], [2027], [2027], [2027], [2027], [2027], [2027], [2027], [2027], [2027], [2027], [2028], [2028], [2028], [2028], [2028], [2028], [2028], [2028], [2028], [2028], [2028], [2028])
GO
USE [BQ_SA]
GO
/****** Object: PartitionFunction [part_version_rang_func] Script Date: 2023/10/8 8:49:27 ******/
DROP PARTITION FUNCTION [part_version_rang_func]
GO
/****** Object: PartitionFunction [part_version_rang_func] Script Date: 2023/10/8 8:49:27 ******/
CREATE PARTITION FUNCTION [part_version_rang_func](int) AS RANGE LEFT FOR VALUES (201801, 201802, 201803, 201804, 201805, 201806, 201807, 201808, 201809, 201810, 201811, 201812, 201901, 201902, 201903, 201904, 201905, 201906, 201907, 201908, 201909, 201910, 201911, 201912, 202001, 202002, 202003, 202004, 202005, 202006, 202007, 202008, 202009, 202010, 202011, 202012, 202101, 202102, 202103, 202104, 202105, 202106, 202107, 202108, 202109, 202110, 202111, 202112, 202201, 202202, 202203, 202204, 202205, 202206, 202207, 202208, 202209, 202210, 202211, 202212, 202301, 202302, 202303, 202304, 202305, 202306, 202307, 202308, 202309, 202310, 202311, 202312, 202401, 202402, 202403, 202404, 202405, 202406, 202407, 202408, 202409, 202410, 202411, 202412, 202501, 202502, 202503, 202504, 202505, 202506, 202507, 202508, 202509, 202510, 202511, 202512, 202601, 202602, 202603, 202604, 202605, 202606, 202607, 202608, 202609, 202610, 202611, 202612, 202701, 202702, 202703, 202704, 202705, 202706, 202707, 202708, 202709, 202710, 202711, 202712, 202801, 202802, 202803, 202804, 202805, 202806, 202807, 202808, 202809, 202810, 202811, 202812)
GO
# 脚本中数据[BJEDI],需要批量替换成EDI数据库名
# 例如:[10.62.103.22].[EDI]
# 脚本中数据[BJEDI]内置字符串分表
USE [BQ_SA]
GO
@ -88,87 +77,103 @@ end
return
end
GO
/****** Object: StoredProcedure [dbo].[p_get_bbac_jis_edi] Script Date: 2023/10/8 8:42:20 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE proc [dbo].[p_get_bbac_jis_edi]
as
BEGIN TRY
select * into #temp_bbac from (
SELECT * FROM
[BJEDI].[dbo].[View_BBAC_JIS]
/*
# EDI同步脚本脚本中数据[BJEDI],需要批量替换成EDI数据库名
# 例如:[10.62.103.22].[EDI]
select RIGHT( REPLACE(CONVERT(varchar(10), a.time , 23),'-',''),6) Version,
a.time CreationTime ,
cast(B.productionNumber as varchar(50)) PN,
cast(B.itemNumber as varchar(50)) LU,
B.quantity Qty,
cast( B.sequenceNumber as varchar(50)) SeqNumber,
B.assemblyDate BeginDate,
# 自动同步BBAC_EDI数据
A.CarModelCode Extend4,
A.productionPoint Site,
A.BillNo Extend1,
a.partType Extend2,
a.LastSequence Extend3,
A.MatchNumber AssemblyCode,
A.BarCode [InjectionCode],
/****** Object: StoredProcedure [dbo].[p_bbac_edi] Script Date: 2023/10/20 14:06:21 ******/
SET
ANSI_NULLS ON
GO
SET
QUOTED_IDENTIFIER ON
GO
CREATE proc [dbo].[p_bbac_edi]
@begindate datetime,
@enddate datetime
AS
BEGIN
TRY
(REPLACE(isnull(A.[productionNumber],''),' ','') + REPLACE(isnull(A.[itemNumber],''),' ','')) KeyCode
from t_Edi_Actual a
inner join t_Edi_Planned b
on a.productionNumber=b.productionNumber and a.partType=b.partType
*/
) a
MERGE INTO Set_BBAC_SE_EDI a
USING #temp_bbac b
on b.PN=a.PN
SELECT
*
INTO
#temp_bbac
FROM
(
SELECT
*
FROM
[10.60.5.60].[BJEDI].[dbo].[View_BBAC_JIS]
) a
MERGE
INTO
Set_BBAC_SE_EDI a
USING #temp_bbac b
ON
b.PN = a.PN
AND b.Version>a.VERSION
when Matched then
update set a.IsDeleted=1;
MERGE INTO Set_BBAC_SE_EDI a
USING #temp_bbac b
on b.PN=a.PN
AND b.Version=a.VERSION and a.LU=B.LU
when NOT MATCHED then
WHEN MATCHED THEN
UPDATE
SET
a.IsDeleted = 1;
MERGE
INTO
Set_BBAC_SE_EDI a
USING #temp_bbac b
ON
b.PN = a.PN
AND b.Version = a.VERSION
AND a.LU = B.LU
WHEN NOT MATCHED THEN
INSERT
(
[Id]
,[KeyCode]
,[Version]
,[LU]
,[PN]
,[SeqNumber]
,[AssemblyCode]
,[InjectionCode]
,[Qty]
,[BeginDate]
,[CreationTime]
,[CreatorId]
,[IsDeleted]
,[Extend1]
,[Extend2]
,[Extend3]
,[Extend4]
,[lineStationCode]
,CustomerPartCodeNoSpace
,
[KeyCode]
,
[Version]
,
[LU]
,
[PN]
,
[SeqNumber]
,
[AssemblyCode]
,
[InjectionCode]
,
[Qty]
,
[BeginDate]
,
[CreationTime]
,
[CreatorId]
,
[IsDeleted]
,
[Extend1]
,
[Extend2]
,
[Extend3]
,
[Extend4]
,
[lineStationCode]
,
CustomerPartCodeNoSpace
)
VALUES
VALUES
(newid() ,
KeyCode,
Version,
@ -189,256 +194,391 @@ when NOT MATCHED then
[lineStationCode],
CustomerPartCodeNoSpace
);
END TRY
BEGIN CATCH
SELECT ERROR_NUMBER() AS ErrorNumber, ERROR_MESSAGE() AS ErrorMessage;
BEGIN
CATCH
SELECT
ERROR_NUMBER() AS ErrorNumber,
ERROR_MESSAGE() AS ErrorMessage;
END CATCH;
DROP TABLE #temp_bbac
GO
# 手工同步BBAC_EDI数据
/****** Object: StoredProcedure [dbo].[p_bbacimport] 手动同步BBAC,EDI数据 Script Date: 2023/10/20 14:06:21 ******/
SET
ANSI_NULLS ON
GO
/****** Object: StoredProcedure [dbo].[p_get_hbpo_jis_edi] Script Date: 2023/10/8 8:42:20 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
SET
QUOTED_IDENTIFIER ON
GO
CREATE proc [dbo].[p_bbacimport]
@begindate datetime,
@enddate datetime
CREATE proc [dbo].[p_get_hbpo_jis_edi]
as
AS
BEGIN TRY
select * into #temp_hbpo from
(
SELECT * FROM
[BJEDI].[dbo].[View_HBPO_JIS]
SELECT
*
INTO
#temp_bbac
FROM
(
SELECT
RIGHT(REPLACE(CONVERT(varchar(10),
a.time,
23),
'-',
''),
6) AS Version,
ISNULL(a.time,
GETDATE()) AS CreationTime,
CAST(b.productionNumber AS varchar(50)) AS PN,
b.itemNumber AS LU,
b.quantity AS Qty,
CAST(b.sequenceNumber AS varchar(50)) AS SeqNumber,
ISNULL(b.assemblyDate,
GETDATE()) AS BeginDate,
a.CarModelCode AS Extend4,
a.productionPoint AS Site,
a.BillNo AS Extend1,
a.partType AS Extend2,
a.LastSequence AS Extend3,
a.BarCode AS InjectionCode,
b.总成号 AS AssemblyCode,
b.lineStationCode,
REPLACE(ISNULL(a.productionNumber,
''),
' ',
'') + REPLACE(ISNULL(a.itemNumber,
''),
' ',
'') AS KeyCode,
REPLACE(b.itemNumber,
' ',
'') AS CustomerPartCodeNoSpace
FROM
[10.60.5.60].[BJEDI].dbo.t_Edi_Actual AS a WITH (nolock)
INNER JOIN
[10.60.5.60].[BJEDI].dbo.t_Edi_Planned AS b WITH (nolock) ON
a.productionNumber = b.productionNumber
AND a.partType = b.partType
WHERE
a.AssemblyDate >= @begindate
AND a.AssemblyDate <= @enddate
--select [AddTime] CreationTime, [BillNo] SeqNumber, A.[Production no#] PN, [Shift no#] InjectionCode, [Date of JIS call] Version,[Part number] LU,
--Quantity Qty,(REPLACE(isnull(A.[Production no#],''),' ','') + REPLACE(isnull([Part number],''),' ','')) KeyCode
--from
--t_MqDetail a
--inner join
--t_MqHead b
--on a.[Production no#]=b.[Production no#]
) a
MERGE INTO Set_HBPO_SE_EDI a
USING #temp_hbpo b
on b.PN=a.PN
MERGE
INTO
Set_BBAC_SE_EDI a
USING #temp_bbac b
ON
b.PN = a.PN
AND b.Version>a.VERSION
when Matched then
update set a.IsDeleted=1;
MERGE INTO Set_HBPO_SE_EDI a
USING #temp_hbpo b
on b.PN=a.PN
AND b.Version=a.VERSION and a.LU=B.LU
when NOT MATCHED then
WHEN MATCHED THEN
UPDATE
SET
a.IsDeleted = 1;
MERGE
INTO
Set_BBAC_SE_EDI a
USING #temp_bbac b
ON
b.PN = a.PN
AND b.Version = a.VERSION
AND a.LU = B.LU
WHEN NOT MATCHED THEN
INSERT
([Id]
,[KeyCode]
,[Version]
,[LU]
,[PN]
,[SeqNumber]
,[AssemblyCode]
,[InjectionCode]
,[Qty]
,[BeginDate]
,[CreationTime]
,[CreatorId]
,[IsDeleted]
,CustomerPartCodeNoSpace
(
[Id],
[KeyCode],
[Version],
[LU],
[PN],
[SeqNumber],
[AssemblyCode],
[InjectionCode],
[Qty],
[BeginDate],
[CreationTime],
[CreatorId],
[IsDeleted],
[Extend1],
[Extend2],
[Extend3],
[Extend4],
[lineStationCode],
CustomerPartCodeNoSpace
)
VALUES
VALUES
(newid() ,
KeyCode,
Version,
LU,
PN,
SeqNumber,
'',
InjectionCode,
[AssemblyCode] ,
[InjectionCode],
Qty,
CreationTime,
BeginDate,
CreationTime,
newid(),
0,
Extend1,
Extend2,
Extend3,
Extend4,
[lineStationCode],
CustomerPartCodeNoSpace
);
END TRY
BEGIN CATCH
SELECT ERROR_NUMBER() AS ErrorNumber, ERROR_MESSAGE() AS ErrorMessage;
BEGIN
CATCH
SELECT
ERROR_NUMBER() AS ErrorNumber,
ERROR_MESSAGE() AS ErrorMessage;
END CATCH;
DROP TABLE #temp_hbpo
DROP TABLE #temp_bbac
GO
/****** Object: StoredProcedure [dbo].[p_Invoice_generation_change] Script Date: 2023/10/8 8:42:20 ******/
SET ANSI_NULLS ON
# 自动同步HBPO_EDI数据
/****** Object: StoredProcedure [dbo].[p_hbpo_edi] 自动同步HBPO EDI数据 Script Date: 2023/10/20 14:06:21 ******/
SET
ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
SET
QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author: <Author,,Name>
-- Create date: <Create Date,,>
-- Description: <Description,,>
-- =============================================
CREATE PROCEDURE [dbo].[p_Invoice_generation_change]
@invbillnum varchar(50),
@groupNum varchar(max),
@businessType varchar(50)
CREATE proc [dbo].[p_hbpo_edi]
@BeginDate varchar(50) ,
@EndDate varchar(50)
AS
BEGIN TRY
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
SET NOCOUNT ON;
UPDATE Set_BBAC_CAN_SA_DETAIL SET InvbillNum=@invbillnum FROM Set_BBAC_CAN_SA_DETAIL T1
INNER JOIN
(select c1 from func_splitstring(@groupNum,',')) T2 ON T1.GroupNum=T2.c1
SELECT
*
INTO
#temp_hbpo
FROM
(
SELECT
*
FROM
[10.60.5.60].[BJEDI].[dbo].[View_HBPO_JIS]
) a
MERGE
INTO
Set_HBPO_SE_EDI a
USING #temp_hbpo b
ON
b.PN = a.PN
AND b.Version>a.VERSION
WHEN MATCHED THEN
UPDATE
SET
a.IsDeleted = 1;
MERGE
INTO
Set_HBPO_SE_EDI a
USING #temp_hbpo b
ON
b.PN = a.PN
AND b.Version = a.VERSION
AND a.LU = B.LU
WHEN NOT MATCHED THEN
INSERT
([Id],
[KeyCode],
[Version],
[LU],
[PN],
[SeqNumber],
[AssemblyCode],
[InjectionCode],
[Qty],
[BeginDate],
[CreationTime],
[CreatorId],
[IsDeleted],
CustomerPartCodeNoSpace
)
VALUES
(newid() ,
KeyCode,
Version,
LU,
PN,
SeqNumber,
'',
InjectionCode,
Qty,
CreationTime,
CreationTime,
newid(),
0,
CustomerPartCodeNoSpace
);
END TRY
BEGIN
CATCH
SELECT
ERROR_NUMBER() AS ErrorNumber,
ERROR_MESSAGE() AS ErrorMessage;
END CATCH;
DROP TABLE #temp_hbpo
SET NOCOUNT OFF;
GO
END
# 手工同步HBPO_EDI数据
/****** Object: StoredProcedure [dbo].[p_importhbpo] 手工HBPO同步数据 Script Date: 2023/10/20 14:06:21 ******/
SET
ANSI_NULLS ON
GO
/****** Object: StoredProcedure [dbo].[p_reBuildIndex] Script Date: 2023/10/8 8:42:20 ******/
SET ANSI_NULLS ON
SET
QUOTED_IDENTIFIER ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE proc [dbo].[p_reBuildIndex]
as
declare @statement NVARCHAR(1000)
declare mycursor cursor for
SELECT 'ALTER INDEX [' + ix.name + '] ON [' + s.name + '].[' + t.name + '] REBUILD WITH ( PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, SORT_IN_TEMPDB = OFF, ONLINE = OFF )'
as sqlStr
FROM sys.indexes AS ix
INNER JOIN sys.tables t
ON t.object_id = ix.object_id
INNER JOIN sys.schemas s
ON t.schema_id = s.schema_id
INNER JOIN
(SELECT object_id ,
index_id ,
avg_fragmentation_in_percent,
partition_number
CREATE proc [dbo].[p_importhbpo]
FROM sys.dm_db_index_physical_stats (DB_ID(), NULL, NULL, NULL, NULL)
@BeginDate varchar(50) ,
@EndDate varchar(50)
) ps
ON t.object_id = ps.object_id
AND ix.index_id = ps.index_id
AS
BEGIN TRY
SELECT
*
INTO
#temp_hbpo
FROM
(
SELECT
b.AddTime AS CreationTime,
b.BillNo AS SeqNumber,
a.[Production no.] AS PN,
b.[Shift no.] AS InjectionCode,
b.[Date OF JIS CALL] AS Version,
a.[Part number] AS LU,
a.Quantity AS Qty,
REPLACE(ISNULL(a.[Production no.],
N''),
' ',
'')
+ REPLACE(ISNULL(a.[Part number],
N''),
' ',
'')
AS KeyCode,
REPLACE(a.[Part number],
' ',
'') AS CustomerPartCodeNoSpace
FROM
[10.60.5.60].[BJEDI].dbo.t_MqDetail AS a WITH (nolock)
INNER JOIN
[10.60.5.60].[BJEDI].dbo.t_MqHead AS b WITH (nolock) ON
a.[Production no.] = b.[Production no.]
WHERE
b.[Date OF JIS CALL]>= @BeginDate
AND b.[Date OF JIS CALL]<= @EndDate
) a
MERGE
INTO
Set_HBPO_SE_EDI a
USING #temp_hbpo b
ON
b.PN = a.PN
AND b.Version>a.VERSION
WHEN MATCHED THEN
UPDATE
SET
a.IsDeleted = 1;
MERGE
INTO
Set_HBPO_SE_EDI a
USING #temp_hbpo b
ON
b.PN = a.PN
AND b.Version = a.VERSION
AND a.LU = B.LU
WHEN NOT MATCHED THEN
(SELECT object_id,
index_id ,
COUNT(DISTINCT partition_number) AS partition_count
FROM sys.partitions
GROUP BY object_id,
index_id
) pc
ON t.object_id = pc.object_id
AND ix.index_id = pc.index_id
WHERE ps.avg_fragmentation_in_percent > 0
AND ix.name IS NOT NULL
open mycursor
fetch next from mycursor into @statement
while(@@fetch_status=0) --如果数据集里一直有数据
begin
INSERT
([Id]
,
[KeyCode]
,
[Version]
,
[LU]
,
[PN]
,
[SeqNumber]
,
[AssemblyCode]
,
[InjectionCode]
,
[Qty]
,
[BeginDate]
,
[CreationTime]
,
[CreatorId]
,
[IsDeleted]
,
CustomerPartCodeNoSpace
)
VALUES
(newid() ,
KeyCode,
Version,
LU,
PN,
SeqNumber,
'',
InjectionCode,
Qty,
CreationTime,
CreationTime,
newid(),
0,
CustomerPartCodeNoSpace
);
END TRY
BEGIN
CATCH
SELECT
ERROR_NUMBER() AS ErrorNumber,
ERROR_MESSAGE() AS ErrorMessage;
END CATCH;
EXEC sp_executesql @statement
DROP TABLE #temp_hbpo
--select @statement
GO
fetch next from mycursor into @statement
end
close mycursor
deallocate mycursor
GO

Loading…
Cancel
Save