View Revisions: Issue #6676

Summary 0006676: Preserve comments on stored procedures when loading DDL changes (new parameter dataloader.sql.event.strip.comments)
Revision 2024-12-19 16:08 by pbelov
Steps To Reproduce -- Procedure - for MS SQL Server syntax:
CREATE OR ALTER PROCEDURE dbo.test_comments
 @Rounds INT
AS
BEGIN
    -- This rocedure fills existing table random_load_test2 with random values
    DECLARE @completedRounds INT = 0
    /*
     * DONE!
     * populate_random_load_test2 555
     */
  SET @completedRounds = @completedRounds + 1
END;
Revision 2024-12-12 15:07 by cquamme
Steps To Reproduce