up vote 2 down vote favorite
1
share [g+] share [fb]

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)?

link|improve this question

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 '09 at 9:54
feedback

5 Answers

up vote 2 down vote accepted

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|improve this answer
feedback
select * from systable  // lists all tables
select * from syscolumn // lists all tables columns
link|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback
SELECT b.name + '.' + a.name
  FROM sysobjects a, sysusers b
 WHERE a.type IN ('U', 'S')
   AND a.uid = b.uid
 ORDER BY b.name, a.name

This will yield a list of tables and users that have access to them.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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