You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
780 B

1 year ago
  1. USE [FastMoneyPro_Remit]
  2. GO
  3. /****** Object: StoredProcedure [dbo].[proc_unlockTxnSchedule] Script Date: 9/27/2019 1:30:14 PM ******/
  4. SET ANSI_NULLS ON
  5. GO
  6. SET QUOTED_IDENTIFIER ON
  7. GO
  8. CREATE proc [dbo].[proc_unlockTxnSchedule]
  9. AS
  10. SET NOCOUNT ON
  11. UPDATE remitTran SET tranStatus = 'Payment' WHERE tranStatus = 'Lock' AND DATEDIFF(MI, lockedDate, GETDATE()) >= 5
  12. GO