Listing tables on a SQL Anywhere using iSQL

sqlanywhere

Is there a way to list all the tables on a SQL Anywhere using iSQL?

Best Answer

select table_name from sys.systab where table_type_str = 'BASE'

You can change 'BASE' to 'VIEW' to get views, and 'GBL TEMP' to get global temporary tables.

Related Topic