You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create ON CONNECT trigger in any database (except of employee):
create trigger trg_connect
on connect
as
declare id int;
begin
execute statement 'select 1 from rdb$database'
on external 'inet://employee'
into :id;
end