On Mon, 10 Aug 2015 19:23:56 +0000, "Maureen Bertocci [email protected] [firebird-support]" <[email protected]> wrote: > Hello, and thank you I am excite about my new endeavor! > > > I would like to join the support group. I am new to firebird. There are > two things I am trying to figure out. > 1. The first one is How can I print a relationship diagram of all tables > in the database.
There is nothing in Firebird itself to do this; Firebird is a database server. You need a tool like Database Workbench or IB Expert to do this. > 2. How can I tell the last time a table was accessed? You can't, no such information is tracked. For inserts, updated, and deletes you can track this using triggers, but you need to set it up yourself. For selects it's not possible. Mark
