Discussion:
show tables / describe table
MaxDB SAP
2005-02-08 14:04:38 UTC
Permalink
Hi List,

I am new to MAXDB and want to know is there any function in MAXDB like
MySQL to show all tables in a database and describe table in a
database.

Mysql> show tables;
Mysql> describe table.

Thanks in Advance.
MAXDB PHP
--
MaxDB Discussion Mailing List
For list archives: http://lists.mysql.com/maxdb
To unsubscribe: http://lists.mysql.com/maxdb?unsub=gcdm-***@m.gmane.org
Jean-Michel OLTRA
2005-02-08 15:49:02 UTC
Permalink
bonjour,


Le mardi 08 février 2005, MaxDB SAP a écrit...
Post by MaxDB SAP
Mysql> show tables;
Mysql> describe table.
Use ireport, nice tool indeed.

ireport -d database -u user,passwd

then enter the `help` command, and you will see available commands
try `help table`, `table`, `table pattern` (pattern := pattern%), or
`table ATABLE`
--
jm
--
MaxDB Discussion Mailing List
For list archives: http://lists.mysql.com/maxdb
To unsubscribe: http://lists.mysql.com/maxdb?unsub=gcdm-***@m.gmane.org
Jean-Michel OLTRA
2005-02-08 16:44:30 UTC
Permalink
bonjour,


Le mardi 08 février 2005, Jean-Michel OLTRA a écrit...
Post by Jean-Michel OLTRA
Use ireport, nice tool indeed.
Oops, `ireport` is an alias of mine. Sorry.

Use <depend path>/bin/ireport.py
--
jm
--
MaxDB Discussion Mailing List
For list archives: http://lists.mysql.com/maxdb
To unsubscribe: http://lists.mysql.com/maxdb?unsub=gcdm-***@m.gmane.org
MaxDB SAP
2005-02-08 17:23:21 UTC
Permalink
Thanks friends.



On Tue, 8 Feb 2005 17:44:30 +0100, Jean-Michel OLTRA
Post by Jean-Michel OLTRA
bonjour,
Le mardi 08 février 2005, Jean-Michel OLTRA a écrit...
Post by Jean-Michel OLTRA
Use ireport, nice tool indeed.
Oops, `ireport` is an alias of mine. Sorry.
Use <depend path>/bin/ireport.py
--
jm
--
MaxDB Discussion Mailing List
For list archives: http://lists.mysql.com/maxdb
--
MaxDB Discussion Mailing List
For list archives: http://lists.mysql.com/maxdb
To unsubscribe: http://lists.mysql.com/maxdb?unsub=gcdm-***@m.gmane.org
Dusan Kolesar
2005-02-09 07:36:18 UTC
Permalink
Hello,
Try next (use SQL studio):
SELECT * FROM DOMAIN.TABLES WHERE TYPE = 'TABLE'
//
SELECT * FROM DOMAIN.COLUMNS WHERE TABLETYPE = 'TABLE'

The results are similar to MySql show and describe statements.

Dusan
Post by MaxDB SAP
Hi List,
I am new to MAXDB and want to know is there any function in MAXDB like
MySQL to show all tables in a database and describe table in a
database.
Mysql> show tables;
Mysql> describe table.
Thanks in Advance.
MAXDB PHP
--
Dusan Kolesar
Helsinska 19
040 13 Kosice
Slovakia
e-mail : ***@centrum.sk
ICQ# : 160507424
--
MaxDB Discussion Mailing List
For list archives: http://lists.mysql.com/maxdb
To unsubscribe: http://lists.mysql.com/maxdb?unsub=gcdm-***@m.gmane.org
Loading...