This file contains 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
IF (NOT EXISTS(SELECT * FROM QSYS2.SYSTABLES WHERE TABLE_SCHEMA = 'BACKUP' AND TABLE_NAME='MYTABLE')) THEN | |
CREATE TABLE BACKUP.MYTABLE | |
AS (SELECT * FROM MYLIB.MYTABLE) | |
WITH DATA; | |
ELSE | |
INSERT INTO BACKUP.MYTABLE | |
SELECT * FROM MYLIB.MYTABLE; | |
END IF; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment