Monitoring für Dateiimport integriert

This commit is contained in:
2024-05-31 14:06:58 +02:00
parent 80f6d4e247
commit 38b68346e0
3 changed files with 109 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
USE [DD_ECM]
GO
CREATE VIEW [dbo].[VWCUST_WM_BASE_ATTRIBUTES_DOCS]
AS
SELECT [BA].*
FROM [windreamDB].[dbo].[BaseAttributes] as [BA]
INNER JOIN [windreamDB].[dbo].[ObjectType] as [OT] ON [BA].[dwObjectTypeID] = [OT].[dwObjectTypeID]
WHERE
[OT].[szDocTypeName] in ('ZLS - Geschaeftsprozesse')
GO