feat(dm): migrated all the dm topics
All checks were successful
Build and Push LST Docker Image / docker (push) Successful in 4m26s
All checks were successful
Build and Push LST Docker Image / docker (push) Successful in 4m26s
This commit is contained in:
10
backend/prodSql/queries/prod.auditlog.sql
Normal file
10
backend/prodSql/queries/prod.auditlog.sql
Normal file
@@ -0,0 +1,10 @@
|
||||
USE [test1_AlplaPROD2.0_Read]
|
||||
|
||||
DECLARE @lastId BIGINT = [lstId];
|
||||
|
||||
SELECT TOP (500)
|
||||
*
|
||||
FROM [support].[AuditLog] WITH (NOLOCK)
|
||||
WHERE ActorName NOT IN ('SCHEDULER', 'SCAN')
|
||||
AND Id > @lastId
|
||||
ORDER BY Id ASC;
|
||||
Reference in New Issue
Block a user