Skip to main content


         This documentation site is for previous versions. Visit our new documentation site for current releases.      
 

Merging the dimension records

Updated on July 5, 2022

Before you perform this task, make sure that all the dimension tables are created and have index on the PZID column. If you want to merge the dimension records from the source database to the target database, repeat this procedure for all the dimension tables.

  1. Connect to the target database.
  2. Copy the table from the source database to a temporary table in the destination database.

    COPY FROM <source_user_name>/<source_pwd>@<source_tnsname> TO <target_user_name>/<target_pwd>@<target_tnsname> CREATE PR_DATA_IH_DIM_<DIMENSION_NAME>_STAGE USING SELECT * FROM PR_DATA_IH_DIM_<DIMENSION_NAME>;
  3. Merge the records from the temporary table to the actual dimension table.

    MERGE INTO PR_DATA_IH_DIM_<DIMENSION_NAME> T USING PR_DATA_IH_DIM_<DIMENSION_NAME>_STAGE S
                  ON (S.PZID = T.PZID)
                  WHEN NOT MATCHED THEN INSERT (T.column1 [, T.column2 ...]) VALUES (S.column1 [, S.column2 ...]);
  4. Commit changes.

    COMMIT;
  5. Delete the temporary table.

    DROP TABLE PR_DATA_IH_DIM_<DIMENSION_NAME>_STAGE;

Have a question? Get answers now.

Visit the Support Center to ask questions, engage in discussions, share ideas, and help others.

Did you find this content helpful?

Want to help us improve this content?

We'd prefer it if you saw us at our best.

Pega.com is not optimized for Internet Explorer. For the optimal experience, please use:

Close Deprecation Notice
Contact us