I was shared my stored procedure, pls help to improve my sp performnace.
/****** Object: StoredProcedure [dbo].[stg_Purchase_Register_vs_GSTR2B_R8] Script Date: 12/14/2022 11:34:31 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
create PROC [dbo].[stg_Purchase_Register_vs_GSTR2B_R8] AS
BEGIN TRY
SET NOCOUNT ON
/****** Object: StoredProcedure [dbo].[stg_Purchase_Register_vs_GSTR2B_R8] Script Date: 7/6/2022 3:46:30 PM ******/
/* Temp Tables Creation Start */
IF OBJECT_ID('tempdb..#Temp') IS NOT NULL
BEGIN
DROP TABLE #Temp
END
IF OBJECT_ID('tempdb..#company') IS NOT NULL
BEGIN
DROP TABLE #company
END
IF OBJECT_ID('tempdb..#Purchase_Register_GSTR2B') IS NOT NULL
BEGIN
DROP TABLE #Purchase_Register_GSTR2B
END
IF OBJECT_ID('tempdb..#DiffPR_GSTNPR') IS NOT NULL
BEGIN
DROP TABLE #DiffPR_GSTNPR
END
IF OBJECT_ID('tempdb..#DiffPR_GSTN') IS NOT NULL
BEGIN
DROP TABLE #DiffPR_GSTN
END
/* Temp Tables Creation End */
CREATE TABLE #purchase_register_gstr2b
(
companyid INT,
gstin VARCHAR(50),
Gstregid INT,
cfs VARCHAR(5),
financialperiod CHAR(10),
[document count] INT,
recoresultstatus VARCHAR(250),
[taxable amount] DECIMAL(18, 2),
[taxable amount%] DECIMAL(5, 2),
igst DECIMAL(18, 2),
[igst%] DECIMAL(5, 2),
cgst DECIMAL(18, 2),
[cgst%] DECIMAL(5, 2),
sgst DECIMAL(18, 2),
[sgst%] DECIMAL(5, 2),
cess DECIMAL(18, 2),
[cess%] DECIMAL(5, 2),
total DECIMAL(18, 2),
[total%] DECIMAL(5, 2)
)
CREATE TABLE #temp
(
cfs CHAR(5),
recoresultstatus VARCHAR(250),
financialperiod VARCHAR(10),
inum VARCHAR(50),
transactiontype VARCHAR(250),
txval DECIMAL(18, 2),
iamt DECIMAL(18, 2),
samt DECIMAL(18, 2),
camt DECIMAL(18, 2),
csamt DECIMAL(18, 2),
gstin VARCHAR(30),
Gstregid INT,
companyid VARCHAR(50)
)
INSERT INTO #temp
(cfs,
recoresultstatus,
financialperiod,
inum,
transactiontype,
txval,
iamt,
samt,
camt,
csamt,
gstin,
Gstregid,
companyid)
SELECT Isnull(A.cfs,'N/A') cfs,
CASE
When A.recoresultstatus = 'Missing in GSTN' then 'Missing in GSTN'
End As recoresultstatus,
Replace(A.financialperiod, '-', '') Financialperiod,
A.inum,
A.transactiontype,
Isnull(B.txval,0) txval,
Isnull(B.igstamount,0) igstamount,
Isnull(B.sgstamount,0) sgstamount,
Isnull(B.cgstamount,0) cgstamount,
Isnull(B.cessamount,0) cessamount,
C.gstin,
C.Gstregid,
D.companyid
FROM dwh.gstr2cpinvoice A with(nolock)
JOIN dwh.gstr2cpinvoiceitem B with(nolock)
ON B.cpinvoiceid = A.cpinvoiceid
INNER JOIN dwh.gstreg C with(nolock)
ON A.gstregid = C.gstregid
INNER JOIN dwh.company D with(nolock)
ON C.companyid = D.companyid
WHERE A.recoresultstatus = 'Missing in GSTN'
AND Isnull(A.isdeleted, 0) != 1
INSERT INTO #temp
(cfs,
recoresultstatus,
financialperiod,
inum,
transactiontype,
txval,
iamt,
samt,
camt,
csamt,
gstin,
Gstregid,
companyid)
SELECT Isnull(A.cfs,'N/A') cfs,
case
When A.RecoResultStatus ='Missing in PR' then 'Missing in PR'
END as RecoResultStatus,
Replace(A.return_period, '-', '') AS FinancialPeriod,
Case
when documenttype in ('B2B','B2BA') then cast(INUM as varchar)
when documenttype in ('CDN','CDNA','CDNR','CDNRA,') then cast(nt_num as varchar)
when documenttype in ('IMPG','IMPGSEZ') then cast(BeNum as varchar)
when documenttype in ('ISD','ISDA') then cast(DocNum as varchar)
Else 'N/A'
end as [Inum],
A.transactiontype,
CASE
WHEN A.documenttype IN( 'CDN', 'CDNA', 'CDNR', 'CDNRA',
'B2B', 'B2BA' ) THEN Isnull(
(SELECT isnull(Sum(txval),0)
FROM dwh.getcpinvoiceitem2b with(nolock)
WHERE cpinvoiceid = A.cpinvoiceid), 0)
ELSE A.txval
END AS TXVAL,
CASE
WHEN A.documenttype IN( 'CDN', 'CDNA', 'CDNR', 'CDNRA',
'B2B', 'B2BA' ) THEN Isnull(
(SELECT isnull(Sum(iamt),0)
FROM dwh.getcpinvoiceitem2b with(nolock)
WHERE cpinvoiceid = A.cpinvoiceid), 0)
ELSE A.iamt
END AS IAMT,
CASE
WHEN A.documenttype IN( 'CDN', 'CDNA', 'CDNR', 'CDNRA',
'B2B', 'B2BA' ) THEN Isnull(
(SELECT isnull(Sum(samt),0)
FROM dwh.getcpinvoiceitem2b with(nolock)
WHERE cpinvoiceid = A.cpinvoiceid), 0)
ELSE A.samt
END AS SAMT,
CASE
WHEN A.documenttype IN( 'CDN', 'CDNA', 'CDNR', 'CDNRA',
'B2B', 'B2BA' ) THEN Isnull(
(SELECT isnull(Sum(camt),0)
FROM dwh.getcpinvoiceitem2b with(nolock)
WHERE cpinvoiceid = A.cpinvoiceid), 0)
ELSE A.camt
END AS CAMT,
CASE
WHEN A.documenttype IN( 'CDN', 'CDNA', 'CDNR', 'CDNRA',
'B2B', 'B2BA' ) THEN Isnull(
(SELECT isnull(Sum(csamt),0)
FROM dwh.getcpinvoiceitem2b with(nolock)
WHERE cpinvoiceid = A.cpinvoiceid), 0)
ELSE A.csamt
END AS CSAMT,
B.gstin,
B.Gstregid,
C.companyid
FROM dwh.getcpinvoice2b A with(nolock)
INNER JOIN dwh.gstreg B with(nolock)
ON A.gstregid = B.gstregid
INNER JOIN dwh.company C with(nolock)
ON B.companyid = C.companyid
WHERE Isnull(recoresultstatus, '') != ''
AND Isnull(isdeleted, 0) != 1
AND recoresultstatus = 'Missing in PR'
INSERT INTO #temp
(cfs,
recoresultstatus,
financialperiod,
inum,
transactiontype,
txval,
iamt,
samt,
camt,
csamt,
gstin,
Gstregid,
companyid)
SELECT Isnull(A.cfs,'N/A') cfs,
case
when A.RecoResultStatus='Remote Match with Tolerance' then 'Remote Match with Tolerance'
when A.RecoResultStatus='Match' then 'Matched'
when A.RecoResultStatus='Mismatch' then 'Mismatch'
when A.RecoResultStatus='Match with Tolerance' then 'Matched with Tolerance'
when A.RecoResultStatus='Cross FY Match' then 'Cross FY Match'
when A.RecoResultStatus='Cross FY Probable Match' then 'Cross FY Probable Match'
when A.RecoResultStatus='Probable Match' then 'Probable Match'
when A.RecoResultStatus='Probable Mismatch' then 'Probable Mismatch'
when A.RecoResultStatus='Cross FY Mismatch' then 'Cross FY Mismatch'
when A.RecoResultStatus='Probable Match with Tolerance' then 'Probable Match with Tolerance'
when A.RecoResultStatus='Remote Match' then 'Remote Match'
when A.RecoResultStatus='Cross FY Match with Tolerance' then 'Cross FY Match with Tolerance'
when A.RecoResultStatus='ForceMatch' then 'ForceMatch'
when A.RecoResultStatus='Vendor PAN Match' then 'Vendor PAN Match'
when A.RecoResultStatus='Cross FY Probable Match with Tolerance' then 'Cross FY Probable Match with Tolerance'
when A.RecoResultStatus='Vendor PAN Probable Match with Tolerance' then 'Vendor PAN Probable Match with Tolerance'
END as RecoResultStatus,
Replace(A.financialperiod, '-', '') AS FinancialPeriod,
A.inum,
A.transactiontype,
Isnull(B.txval,0) txval,
Isnull(B.igstamount,0) igstamount,
Isnull(B.sgstamount,0) sgstamount,
Isnull(B.cgstamount,0) cgstamount,
Isnull(B.cessamount,0) cessamount,
C.gstin,
C.Gstregid,
D.companyid
FROM dwh.gstr2cpinvoice A with(nolock)
INNER JOIN dwh.gstr2cpinvoiceitem B with(nolock)
ON B.cpinvoiceid = A.cpinvoiceid
INNER JOIN dwh.gstreg C with(nolock)
ON A.gstregid = C.gstregid
INNER JOIN dwh.company D with(nolock)
ON D.companyid = C.companyid
WHERE Isnull(recoresultstatus, '') != ''
AND Isnull(isdeleted, 0) != 1
AND recoresultstatus IN (
'Remote Match with Tolerance', 'Match', 'Mismatch',
'Match with Tolerance',
'Cross FY Match', 'Cross FY Probable Match',
'Probable Match','Probable Mismatch',
'Cross FY Mismatch',
'Probable Match with Tolerance', 'Remote Match'
,
'Cross FY Match with Tolerance',
'ForceMatch',
'Vendor PAN Match',
'Cross FY Probable Match with Tolerance'
,
'Vendor PAN Probable Match with Tolerance' )
SELECT companyid,
gstin,
Gstregid,
Isnull(cfs, 'N/A') CFS,
Isnull((SELECT Count(DISTINCT inum)
FROM #temp
WHERE companyid = a.companyid
AND gstin = a.gstin
AND Gstregid = a.Gstregid
AND cfs = a.cfs
AND financialperiod = a.financialperiod
AND recoresultstatus = a.recoresultstatus
), 0)
[Document Count],
financialperiod,
recoresultstatus,
Isnull(( (SELECT Isnull(Sum(Isnull(txval, 0)),0)
FROM #temp
WHERE companyid = a.companyid
AND gstin = a.gstin
AND Gstregid = a.Gstregid
AND cfs = a.cfs
AND financialperiod = a.financialperiod
AND recoresultstatus = a.recoresultstatus
AND transactiontype IN(
'Purchases', 'Debit Note for Purchases'
)) - (
SELECT Isnull(Sum(Isnull(txval, 0)),0)
FROM #temp
WHERE companyid = a.companyid
AND gstin = a.gstin
AND Gstregid = a.Gstregid
AND cfs = a.cfs
AND financialperiod = a.financialperiod
AND recoresultstatus = a.recoresultstatus
AND
transactiontype = 'Credit Note for Purchases') ), 0
) [Taxable Amount],
Isnull(( (SELECT Isnull(Sum(Isnull(iamt, 0)),0)
FROM #temp
WHERE companyid = a.companyid
AND gstin = a.gstin
AND Gstregid = a.Gstregid
AND cfs = a.cfs
AND financialperiod = a.financialperiod
AND recoresultstatus = a.recoresultstatus
AND transactiontype IN(
'Purchases', 'Debit Note for Purchases'
)) - (
SELECT Isnull(Sum(Isnull(iamt, 0)),0)
FROM #temp
WHERE companyid = a.companyid
AND gstin = a.gstin
AND Gstregid = a.Gstregid
AND cfs = a.cfs
AND financialperiod = a.financialperiod
AND recoresultstatus = a.recoresultstatus
AND
transactiontype = 'Credit Note for Purchases') ), 0
) IGST,
Isnull(( (SELECT Isnull(Sum(Isnull(camt, 0)),0)
FROM #temp
WHERE companyid = a.companyid
AND gstin = a.gstin
AND Gstregid = a.Gstregid
AND cfs = a.cfs
AND financialperiod = a.financialperiod
AND recoresultstatus = a.recoresultstatus
AND transactiontype IN(
'Purchases', 'Debit Note for Purchases'
)) - (
SELECT Isnull(Sum(Isnull(camt, 0)),0)
FROM #temp
WHERE companyid = a.companyid
AND gstin = a.gstin
AND Gstregid = a.Gstregid
AND cfs = a.cfs
AND financialperiod = a.financialperiod
AND recoresultstatus = a.recoresultstatus
AND
transactiontype = 'Credit Note for Purchases') ), 0
) CGST,
Isnull(( (SELECT Isnull(Sum(Isnull(samt, 0)),0)
FROM #temp
WHERE companyid = a.companyid
AND gstin = a.gstin
AND Gstregid = a.Gstregid
AND cfs = a.cfs
AND financialperiod = a.financialperiod
AND recoresultstatus = a.recoresultstatus
AND transactiontype IN(
'Purchases', 'Debit Note for Purchases'
)) - (
SELECT Isnull(Sum(Isnull(samt, 0)),0)
FROM #temp
WHERE companyid = a.companyid
AND gstin = a.gstin
AND Gstregid = a.Gstregid
AND cfs = a.cfs
AND financialperiod = a.financialperiod
AND recoresultstatus = a.recoresultstatus
AND
transactiontype = 'Credit Note for Purchases') ), 0
) SGST,
Isnull(( (SELECT Isnull(Sum(Isnull(csamt, 0)),0)
FROM #temp
WHERE companyid = a.companyid
AND gstin = a.gstin
AND Gstregid = a.Gstregid
AND cfs = a.cfs
AND financialperiod = a.financialperiod
AND recoresultstatus = a.recoresultstatus
AND transactiontype IN(
'Purchases', 'Debit Note for Purchases'
)) - (
SELECT Isnull(Sum(Isnull(csamt, 0)),0)
FROM #temp
WHERE companyid = a.companyid
AND gstin = a.gstin
AND Gstregid = a.Gstregid
AND cfs = a.cfs
AND financialperiod = a.financialperiod
AND recoresultstatus = a.recoresultstatus
AND
transactiontype = 'Credit Note for Purchases') ), 0
) CESS,
Isnull(( (SELECT Isnull(Sum(Isnull(txval, 0) + Isnull(iamt, 0)
+ Isnull(camt, 0) + Isnull(samt, 0)
+ Isnull(csamt, 0)),0)
FROM #temp
WHERE companyid = a.companyid
AND gstin = a.gstin
AND Gstregid = a.Gstregid
AND cfs = a.cfs
AND financialperiod = a.financialperiod
AND recoresultstatus = a.recoresultstatus
AND transactiontype IN(
'Purchases', 'Debit Note for Purchases'
)) -
(SELECT Isnull(Sum(Isnull(txval, 0) + Isnull(iamt, 0)
+ Isnull(camt, 0) + Isnull(samt, 0)
+ Isnull(csamt, 0)),0)
FROM #temp
WHERE companyid = a.companyid
AND gstin = a.gstin
AND Gstregid = a.Gstregid
AND cfs = a.cfs
AND financialperiod = a.financialperiod
AND recoresultstatus = a.recoresultstatus
AND transactiontype =
'Credit Note for Purchases') ),
0) Total
INTO #company
FROM #temp A
GROUP BY companyid,
gstin,
Gstregid,
cfs,
financialperiod,
recoresultstatus
INSERT INTO #purchase_register_gstr2b
(companyid,
gstin,
Gstregid,
financialperiod,
recoresultstatus,
[taxable amount],
igst,
cgst,
sgst,
cess,
total)
SELECT companyid,
gstin,
Gstregid,
financialperiod,
'Total of Matching Status' [RecoResultStatus],
Sum(Isnull([taxable amount], 0)) [Taxable Amount],
Sum(Isnull(igst, 0)) IGST,
Sum(Isnull(cgst, 0)) CGST,
Sum(Isnull(sgst, 0)) SGST,
Sum(Isnull(cess, 0)) CESS,
Sum(Isnull(total, 0)) Total
FROM #company
GROUP BY companyid,
gstin,
Gstregid,
financialperiod
INSERT INTO #purchase_register_gstr2b
(companyid,
gstin,
Gstregid,
cfs,
[document count],
financialperiod,
recoresultstatus,
[taxable amount],
[taxable amount%],
igst,
[igst%],
cgst,
[cgst%],
sgst,
[sgst%],
cess,
[cess%],
total,
[total%])
SELECT companyid,
gstin,
Gstregid,
cfs,
[document count],
financialperiod,
[recoresultstatus],
[taxable amount],
CASE
WHEN [taxable amount] IS NULL
OR [taxable amount] = 0 THEN 0
ELSE [taxable amount] * 100 / Sum([total])
OVER (
partition BY companyid, gstin, cfs,
[recoresultstatus], financialperiod
ORDER BY financialperiod)
END AS [Taxable Amount%],
igst,
CASE
WHEN igst IS NULL
OR igst = 0 THEN 0
ELSE igst * 100 / Sum([total])
OVER (
partition BY companyid, gstin, cfs,
[recoresultstatus],
financialperiod
ORDER BY financialperiod)
END AS [IGST%],
cgst,
CASE
WHEN cgst IS NULL
OR cgst = 0 THEN 0
ELSE cgst * 100 / Sum([total])
OVER (
partition BY companyid, gstin, cfs,
[recoresultstatus],
financialperiod
ORDER BY financialperiod)
END AS [CGST%],
sgst,
CASE
WHEN sgst IS NULL
OR sgst = 0 THEN 0
ELSE sgst * 100 / Sum([total])
OVER (
partition BY companyid, gstin, cfs,
[recoresultstatus],
financialperiod
ORDER BY financialperiod)
END AS [SGST%],
cess,
CASE
WHEN cess IS NULL
OR cess = 0 THEN 0
ELSE cess * 100 / Sum([total])
OVER (
partition BY companyid, gstin, cfs,
[recoresultstatus],
financialperiod
ORDER BY financialperiod)
END AS [CESS%],
total,
CASE
WHEN total IS NULL
OR total = 0 THEN 0
ELSE ( total * 100 ) / Sum([total])
OVER (
partition BY companyid, gstin, cfs,
[recoresultstatus],
financialperiod
ORDER BY financialperiod)
END AS [Total%]
FROM #company
GROUP BY companyid,
gstin,
Gstregid,
cfs,
financialperiod,
[taxable amount],
[recoresultstatus],
igst,
cgst,
sgst,
cess,
total,
[document count]
INSERT INTO #purchase_register_gstr2b
(companyid,
gstin,
Gstregid,
financialperiod,
recoresultstatus,
[taxable amount],
igst,
cgst,
sgst,
cess,
total)
SELECT companyid,
gstin,
Gstregid,
financialperiod,
'Total as per PR' [RecoResultStatus],
Sum(Isnull([taxable amount], 0)) [Taxable Amount],
Sum(Isnull(igst, 0)) IGST,
Sum(Isnull(cgst, 0)) CGST,
Sum(Isnull(sgst, 0)) SGST,
Sum(Isnull(cess, 0)) CESS,
Sum(Isnull(total, 0)) Total
FROM #purchase_register_gstr2b
WHERE recoresultstatus not in ('Missing in PR','Total of Matching Status')
GROUP BY companyid,
gstin,
Gstregid,
financialperiod
INSERT INTO #purchase_register_gstr2b
(companyid,
gstin,
Gstregid,
financialperiod,
recoresultstatus,
[taxable amount],
igst,
cgst,
sgst,
cess,
total)
SELECT companyid,
gstin,
Gstregid,
financialperiod,
'Total as per GSTN' [RecoResultStatus],
Sum(Isnull([taxable amount], 0)) [Taxable Amount],
Sum(Isnull(igst, 0)) IGST,
Sum(Isnull(cgst, 0)) CGST,
Sum(Isnull(sgst, 0)) SGST,
Sum(Isnull(cess, 0)) CESS,
Sum(Isnull(total, 0)) Total
FROM #purchase_register_gstr2b
WHERE recoresultstatus not in ('Missing in GSTN','Total as per PR','Total of Matching Status')
GROUP BY companyid,
gstin,
Gstregid,
financialperiod
SELECT companyid,
gstin,
Gstregid,
financialperiod,
[document count],
recoresultstatus,
[taxable amount],
igst,
cgst,
sgst,
cess,
total
INTO #diffpr_gstnpr
FROM #purchase_register_gstr2b
WHERE recoresultstatus = 'Total as per PR'
SELECT companyid,
gstin,
Gstregid,
financialperiod,
[document count],
recoresultstatus,
[taxable amount],
igst,
cgst,
sgst,
cess,
total
INTO #diffpr_gstn
FROM #purchase_register_gstr2b
WHERE recoresultstatus = 'Total as per GSTN'
INSERT INTO #purchase_register_gstr2b
(companyid,
gstin,
Gstregid,
financialperiod,
recoresultstatus,
[taxable amount],
igst,
cgst,
sgst,
cess,
total)
SELECT A.companyid,
A.gstin,
A.Gstregid,
A.financialperiod,
'Difference(PR-GSTN)' RecoResultStatus,
A.[taxable amount] - B.[taxable amount] [Taxable Amount],
A.igst - B.igst iGST,
A.cgst - B.cgst CGST,
A.sgst - B.sgst SGST,
A.cess - B.cess CESS,
A.total - B.total Total
FROM #diffpr_gstnpr A
JOIN #diffpr_gstn B
ON A.companyid = B.companyid
AND A.gstin = B.gstin
AND Isnull(A.financialperiod, '') = Isnull(B.financialperiod, '')
Delete A
from dwh.Fct_Purchase_Register_GSTR2B_R8 A
INNER JOIN #Purchase_Register_GSTR2B B
ON ISNULL(A.CompanyID, '') = ISNULL(B.CompanyID, '')
AND ISNULL(A.GSTIN, '') = ISNULL(B.GSTIN, '')
INSERT INTO dwh.Fct_Purchase_Register_GSTR2B_R8
(
CompanyID,
GSTIN,
Gstregid,
CFS,
idt,
FinancialPeriod,
[Document Count],
RecoResultStatus,
[Taxable Amount],
[Taxable Amount%],
iGST,
[iGST%],
CGST,
[CGST%],
SGST,
[SGST%],
CESS,
[CESS%],
Total,
[Total%],
Financialmonth,
Financialyear
)
SELECT CompanyID,
GSTIN,
Gstregid,
CFS,
'' as Idt,
FinancialPeriod,
[Document Count],
RecoResultStatus,
[Taxable Amount],
[Taxable Amount%],
iGST,
[iGST%],
CGST,
[CGST%],
SGST,
[SGST%],
CESS,
[CESS%],
Total,
[Total%],
left(ltrim(FinancialPeriod),2) Financialmonth,
right(rtrim(FinancialPeriod),4) Financialyear
FROM #Purchase_Register_GSTR2B
/* Deleting Temp Tables */
IF OBJECT_ID('tempdb..#Temp') IS NOT NULL
BEGIN
DROP TABLE #Temp
END
IF OBJECT_ID('tempdb..#company') IS NOT NULL
BEGIN
DROP TABLE #company
END
IF OBJECT_ID('tempdb..#Purchase_Register_GSTR2B') IS NOT NULL
BEGIN
DROP TABLE #Purchase_Register_GSTR2B
END
IF OBJECT_ID('tempdb..#DiffPR_GSTNPR') IS NOT NULL
BEGIN
DROP TABLE #DiffPR_GSTNPR
END
IF OBJECT_ID('tempdb..#DiffPR_GSTN') IS NOT NULL
BEGIN
DROP TABLE #DiffPR_GSTN
END
END TRY
BEGIN CATCH
/* Temp Tables Creation Start */
IF OBJECT_ID('tempdb..#Temp') IS NOT NULL
BEGIN
DROP TABLE #Temp
END
IF OBJECT_ID('tempdb..#company') IS NOT NULL
BEGIN
DROP TABLE #company
END
IF OBJECT_ID('tempdb..#Purchase_Register_GSTR2B') IS NOT NULL
BEGIN
DROP TABLE #Purchase_Register_GSTR2B
END
IF OBJECT_ID('tempdb..#DiffPR_GSTNPR') IS NOT NULL
BEGIN
DROP TABLE #DiffPR_GSTNPR
END
IF OBJECT_ID('tempdb..#DiffPR_GSTN') IS NOT NULL
BEGIN
DROP TABLE #DiffPR_GSTN
END
DECLARE @ERROR_NUMBER [nvarchar](50),
@ERROR_MESSAGE [nvarchar](4000),
@ERROR_PROCEDURE [nvarchar](100),
@ERROR_STATE [int],
@ERROR_SEVERITY [int],
@GETDATE [DATETIME2]
set @ERROR_NUMBER = ERROR_NUMBER()
set @ERROR_MESSAGE = ERROR_MESSAGE()
set @ERROR_PROCEDURE = 'stg_Purchase_Register_vs_GSTR2B_R8'
set @ERROR_STATE = ERROR_STATE()
set @ERROR_SEVERITY = ERROR_SEVERITY()
set @GETDATE = GETDATE()
INSERT INTO dwh.errorlogtbl
(
ErrorNumber,
ErrorDescription,
ErrorProcedure,
ErrorState,
ErrorSeverity,
ErrorTime
)
Values
(@ERROR_NUMBER, @ERROR_MESSAGE, @ERROR_PROCEDURE, @ERROR_STATE, @ERROR_SEVERITY, @GETDATE)
END CATCH
GO