TABLEEXISTS

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
Was this article helpful?
0 out of 0 found this helpful

Comments

0 comments

Please sign in to leave a comment.