Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the equivalent of "Show Tables" in SQSH

Tags:

sybase

sqsh

How can I get sqsh to tell me which tables are available?

like image 218
rampion Avatar asked May 01 '09 14:05

rampion


2 Answers

Does sp_tables work for you? Are you trying to get tab completion when creating a query?

like image 175
brianegge Avatar answered Sep 18 '22 03:09

brianegge


After some help from this site and some trial and error:

 select table_name from systable
 go

Painfully enough, sp_help doesn't exist in my version.

like image 31
rampion Avatar answered Sep 19 '22 03:09

rampion