I know this is also an old question, but you can execute the sql server stored procedure:
EXEC sp_tables @table_name = "%", @table_owner = "%", @table_type = "'TABLE'"
and get a list of tables. But SQL 2K is not supported. There is a server since 2005 ...
source share