Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

bteq<<EOF

.logon 127.0.0.1/tduser,tduser;
.SET ERRORLEVEL 3535 SEVERITY 0
DROP TABLE retail.non_exist_table;
if errorcode = 3807 then GOTO createTable;
IF ERRORCODE > 0 THEN .QUIT ERRORCODE;
.LABEL createTable;
CREATE TABLE retail.non_exist_table (ins_stmt INT);
.OS echo "Table is not present so Creating..."
INSERT INTO retail.non_exist_table (1);
INSERT INTO retail.non_exist_table ('FAILED');
INSERT INTO retail.non_exist_table (3);
.LOGOFF;
.QUIT;
EOF

You might also like