Last active
June 22, 2023 18:14
-
-
Save kujhawk94/9c896dc268a8587d36fd42ef6a5c1c8c to your computer and use it in GitHub Desktop.
Unsign document in eMDs when it has a TrackChart_ID
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- 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