You are on page 1of 1

How to make sure BTEQ utility is not erroring out while dropping a table when the

table doesnt exist in Teradata?

Setting the error level to 0 will achieve this.

ERRORLEVEL (3807) SEVERITY 0;

DROP TABLE TABLENAME;


ERRORLEVEL (3807) SEVERITY 8;

You might also like