vote up 1 vote down star
1

I just downloaded the developer edition of SQL Anywhere. How can I get a list of tables in the database I'm connected to?. Also for a particular table, how do I get the meta-data for that table (column names, types, etc)?

flag

80% accept rate
I got answer to part of my question regarding table details here: stackoverflow.com/questions/100504/… But still I don't know how to find the list of tables. I have got an idea though, let me try :) – virtualmic Feb 25 at 9:54

4 Answers

vote up 0 vote down check

I have not used SQL Anywhere for many years however the following SQL should work

select c.column_name from systabcol c key join systab t on t.table_id=c.table_id where t.table_name='tablename'

This was cribbed directly from an earlier question

link|flag
vote up 0 vote down

For a particular table:

describe TableName

will return the table's columns, with an indication of the column's type, whether it's nullable and a primary key

link|flag
vote up 0 vote down
select * from systable  // lists all tables
select * from syscolumn // lists all tables columns
link|flag
vote up 1 vote down

Assuming Windows: start - All Programs - SQL Anywhere 11 - Sybase Central

Then Connections - Connect with SQL Anywhere 11...

Select "ODBC Data Source name" and pick "SQL Anywhere 11 Demo"

Press OK to see a tree view of the various objects in the database (tables etcetera).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.