0

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

sysadmin1138
  • 135,853

2 Answers2

1
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.

-1

I am not sure is this will work or not, but try this:

select TABLE_NAME from INFORMATION_SCHEMA.TABLES

I believe this is a database independent way of getting a list of tables.

jftuga
  • 5,831