Can be used in an InMemory ETL script to check for existence of specified table. Returns TRUE or FALSE.
Syntax:
TABLEEXISTS('table_name')Example:
IF TABLEEXISTS('Customers')=TRUE THEN
PRINT 'It is there'
ELSE
PRINT 'It is not'
END IF
Can be used in an InMemory ETL script to check for existence of specified table. Returns TRUE or FALSE.
Syntax:
TABLEEXISTS('table_name')Example:
IF TABLEEXISTS('Customers')=TRUE THEN
PRINT 'It is there'
ELSE
PRINT 'It is not'
END IF
Comments
Please sign in to leave a comment.