Skip to content

Instantly share code, notes, and snippets.

@kujhawk94
Last active June 22, 2023 18:14
Show Gist options
  • Save kujhawk94/9c896dc268a8587d36fd42ef6a5c1c8c to your computer and use it in GitHub Desktop.
Save kujhawk94/9c896dc268a8587d36fd42ef6a5c1c8c to your computer and use it in GitHub Desktop.
Unsign document in eMDs when it has a TrackChart_ID
-- unsign-note-01.sql
-- 2023-06-22
-- Use right-click Help menu to find the TrackChart_ID and insert below
-- --
UPDATE
[dbo].[TRK_TrackChart]
SET
[TrackChart_DocStatus] = '1',
[TrackChart_SignedOff] = '0'
WHERE
[TrackChart_ID] = '0000000000'
-- --
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment