Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagesql
titlePost migration Migration Update SQL Statements
collapsetrue
-- RED 10 PostgreSQL update to correct calls to the WslMetadataServiceClient in Scripts
UPDATE red.ws_scr_line 
SET sl_line = REGEXP_REPLACE(
                  REGEXP_REPLACE(
                      sl_line,
                      '(WslMetadataServiceClient.*)SqlServer',
                      '\1PostgreSQL',
                      'ig'
                  ),
                  '(WslMetadataServiceClient.*)dbo'
                  ,'\1red'
                  ,'ig'
              );

-- RED 10 PostgreSQL update to correct calls to the WslMetadataServiceClient in Templates
UPDATE red.ws_tem_line 
SET tl_line = REGEXP_REPLACE(
                  REGEXP_REPLACE(
                      tl_line,
                      '(WslMetadataServiceClient.*)SqlServer',
                      '\1PostgreSQL',
                      'ig'
                  ),
                  '(WslMetadataServiceClient.*)dbo'
                  ,'\1red'
                  ,'ig'
              );

...