All checks were successful
Build and Push LST Docker Image / docker (push) Successful in 4m26s
10 lines
205 B
Transact-SQL
10 lines
205 B
Transact-SQL
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; |