Initial Commit of the PDM project (ready for DWS migration)

This commit is contained in:
will
2026-04-20 08:42:38 -05:00
commit dda7b664e7
2721 changed files with 442772 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
-- Insert a VariableValue row that mirrors an existing VV-57 row but with
-- VariableID = 50 (used by copy_57_to_50 task).
-- Parameter order MUST match build_params() in copy_57_to_50:
-- VariableID, DocumentID, ProjectID, RevisionNo, ConfigurationID,
-- ValueText, ValueInt, ValueFloat, ValueDate, ValueCache, IsLongText
INSERT INTO [Drilling_Test].[dbo].[VariableValue]
(VariableID, DocumentID, ProjectID, RevisionNo, ConfigurationID,
ValueText, ValueInt, ValueFloat, ValueDate, ValueCache, IsLongText)
VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?);