On Fri, 4 May 2007, Gary Greenberg wrote:
> I need to find out what sequences were created in the database.
>
> Does anyone know how to do it?
Sequences are returned as tables with a TABLE_TYPE of SEQUENCE, so you can
say:
DatabaseMetaData.getTables("%","%","%", new String[]{"SEQUENCE"});
Kris Jurka