Subject RE: [firebird-support] Re: FireBird security, where ?
Author Alan McDonald
> > > delete your metadata before deploying your database. You should deploy
> > > your's with compiled BLR. But before you deleting your metadata, you
> > > must sure to save your metadata.
> >
> >how can I delete the meta data?
>
> You can't delete the metadata (I mean, you MUST not!!)
>
> What you can do is delete your procedure and trigger source code.
> update rdb$procedures
> set rdb$procedure_source = null
> where rdb$procedure_name not starting with 'RDB$';
>
> update rdb$triggers
> set rdb$triggere_source = null
> where rdb$trigger_name not starting with 'RDB$';
>
> But read Geoff's message thoroughly before you decide there's any point.
>
> ./hb

and take a back-up :-)
you'll never be able to read the metadata on that db again.
Alan