Subject | Re: [firebird-support] Help: how to get all table names? |
---|---|
Author | Milan Babuskov |
Post date | 2004-09-03T06:34:07Z |
Michael Fung wrote:
from rdb$relations
where (RDB$SYSTEM_FLAG = 0 or RDB$SYSTEM_FLAG is null)
and RDB$VIEW_SOURCE is null
--
Milan Babuskov
http://fbexport.sourceforge.net
http://www.flamerobin.org
> How to get all the table names in a database with a select statement?select rdb$relation_name
> (Because I want to auto create a script to add a trigger for all
> tables.)
from rdb$relations
where (RDB$SYSTEM_FLAG = 0 or RDB$SYSTEM_FLAG is null)
and RDB$VIEW_SOURCE is null
--
Milan Babuskov
http://fbexport.sourceforge.net
http://www.flamerobin.org