× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



Darryl,

- there is no standard SQL way to do so (and if it was, not all SQL dialects wuld follow this!)
- retrieving the table definition would not be of great value: mostly you should end up with create view xxx as select * from ...
- most databases would have some stored procedure to generate DDL for database objects, but this won't help for STRSQL accessing remote databases via ArdGate, because these procedures return one or multiple ResultSets and this i not yet implemented.
- if you simply want to know the column information for a given Table/view you could use:
select * from information_schema.columns where table_name = 'MYTABLE'

- more convinient could be to install JDBC based SQuirreL (it's open source) it shows you all information in it's objects View and could generate DDL as well, hiding all dialecdt specifica.

D*B

As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.