agora inbox for pgsql-sql@postgresql.org  
help / color / mirror / Atom feed
Create trigger on after logon on schema
9+ messages / 5 participants
[nested] [flat]

* Create trigger on after logon on schema
@ 2021-10-06 15:22 aditya desai <admad123@gmail.com>
  2021-10-06 15:44 ` Re: Create trigger on after logon on schema hubert depesz lubaczewski <depesz@depesz.com>
  0 siblings, 1 reply; 9+ messages in thread

From: aditya desai @ 2021-10-06 15:22 UTC (permalink / raw)
  To: pgsql-sql <pgsql-sql@lists.postgresql.org>

Hi,
Is there any way to write below Oracle trigger in postgres?

CREATE TRIGGER T1 after logon on schema for each row
execute procedure p1;

Regards,
Aditya.

^ permalink  raw  reply  [nested|flat] 9+ messages in thread

* Re: Create trigger on after logon on schema
  2021-10-06 15:22 Create trigger on after logon on schema aditya desai <admad123@gmail.com>
@ 2021-10-06 15:44 ` hubert depesz lubaczewski <depesz@depesz.com>
  2021-10-06 16:09   ` Re: Create trigger on after logon on schema aditya desai <admad123@gmail.com>
  0 siblings, 1 reply; 9+ messages in thread

From: hubert depesz lubaczewski @ 2021-10-06 15:44 UTC (permalink / raw)
  To: aditya desai <admad123@gmail.com>; +Cc: pgsql-sql <pgsql-sql@lists.postgresql.org>

On Wed, Oct 06, 2021 at 08:52:45PM +0530, aditya desai wrote:
> Hi,
> Is there any way to write below Oracle trigger in postgres?
> 
> CREATE TRIGGER T1 after logon on schema for each row
> execute procedure p1;

What did it do?

Please note that not everyone knowing Pg knows Oracle.

I can imagine that trigger after logon means that p1 procedure will be
called after user successfully logs in, but what does the "for each row"
part mean?

In PG, there are no login triggers. And, in any case, noone logs to
"schema".

Best regards,

depesz






^ permalink  raw  reply  [nested|flat] 9+ messages in thread

* Re: Create trigger on after logon on schema
  2021-10-06 15:22 Create trigger on after logon on schema aditya desai <admad123@gmail.com>
  2021-10-06 15:44 ` Re: Create trigger on after logon on schema hubert depesz lubaczewski <depesz@depesz.com>
@ 2021-10-06 16:09   ` aditya desai <admad123@gmail.com>
  2021-10-06 18:16     ` Re: Create trigger on after logon on schema Steve Midgley <science@misuse.org>
  2021-10-06 18:26     ` Re: Create trigger on after logon on schema Erik Brandsberg <erik@heimdalldata.com>
  0 siblings, 2 replies; 9+ messages in thread

From: aditya desai @ 2021-10-06 16:09 UTC (permalink / raw)
  To: Hubert Lubaczewski <depesz@depesz.com>; +Cc: pgsql-sql <pgsql-sql@lists.postgresql.org>

Hi Depesz,
Sorry , I didn't mention it clearly. We are using these triggers for audit
purposes.

Triggers calls a procedure to insert username,machine.IPAddress into
LogonTime in an audit table.
We also have a trigger that gets fired BEFORE ALTER OR CREATE OR DROP on
schema that will audit the user details in the audit table.

Any alternative solution in Postgres is welcome.

Thanks in advance.

Regards,
Aditya.



On Wed, Oct 6, 2021 at 9:14 PM hubert depesz lubaczewski <depesz@depesz.com>
wrote:

> On Wed, Oct 06, 2021 at 08:52:45PM +0530, aditya desai wrote:
> > Hi,
> > Is there any way to write below Oracle trigger in postgres?
> >
> > CREATE TRIGGER T1 after logon on schema for each row
> > execute procedure p1;
>
> What did it do?
>
> Please note that not everyone knowing Pg knows Oracle.
>
> I can imagine that trigger after logon means that p1 procedure will be
> called after user successfully logs in, but what does the "for each row"
> part mean?
>
> In PG, there are no login triggers. And, in any case, noone logs to
> "schema".
>
> Best regards,
>
> depesz
>
>

^ permalink  raw  reply  [nested|flat] 9+ messages in thread

* Re: Create trigger on after logon on schema
  2021-10-06 15:22 Create trigger on after logon on schema aditya desai <admad123@gmail.com>
  2021-10-06 15:44 ` Re: Create trigger on after logon on schema hubert depesz lubaczewski <depesz@depesz.com>
  2021-10-06 16:09   ` Re: Create trigger on after logon on schema aditya desai <admad123@gmail.com>
@ 2021-10-06 18:16     ` Steve Midgley <science@misuse.org>
  1 sibling, 0 replies; 9+ messages in thread

From: Steve Midgley @ 2021-10-06 18:16 UTC (permalink / raw)
  To: aditya desai <admad123@gmail.com>; +Cc: Hubert Lubaczewski <depesz@depesz.com>; pgsql-sql <pgsql-sql@lists.postgresql.org>

On Wed, Oct 6, 2021 at 9:10 AM aditya desai <admad123@gmail.com> wrote:

> Hi Depesz,
> Sorry , I didn't mention it clearly. We are using these triggers for audit
> purposes.
>
> Triggers calls a procedure to insert username,machine.IPAddress into
> LogonTime in an audit table.
> We also have a trigger that gets fired BEFORE ALTER OR CREATE OR DROP on
> schema that will audit the user details in the audit table.
>
> Any alternative solution in Postgres is welcome.
>
>
>

In my experience, this is solved in a middle tier that brokers access to
Postgres. So the middle tier would handle login (even if brokering the
credentials back to Pg to achieve the login). And then the middle tier can
execute the logic to do login auditing along the lines you want.

That said, I could imagine logging the kind of information you describe not
on login, but on certain sql executions (DDL). I think you could set a
trigger to record IP and other system stats related to each of those
actions (this isn't possible to my knowledge for select statements). This
would be finer grained than logging login data, but would maybe accomplish
the same thing? Here's the kind of system info you can collect and log:
https://www.postgresql.org/docs/current/functions-info.html

I think it's probably more realistic to use the former method: log/audit
everything in a middle tier that brokers access to Postgres.

Steve

^ permalink  raw  reply  [nested|flat] 9+ messages in thread

* Re: Create trigger on after logon on schema
  2021-10-06 15:22 Create trigger on after logon on schema aditya desai <admad123@gmail.com>
  2021-10-06 15:44 ` Re: Create trigger on after logon on schema hubert depesz lubaczewski <depesz@depesz.com>
  2021-10-06 16:09   ` Re: Create trigger on after logon on schema aditya desai <admad123@gmail.com>
@ 2021-10-06 18:26     ` Erik Brandsberg <erik@heimdalldata.com>
  2021-10-07 05:19       ` Re: Create trigger on after logon on schema aditya desai <admad123@gmail.com>
  1 sibling, 1 reply; 9+ messages in thread

From: Erik Brandsberg @ 2021-10-06 18:26 UTC (permalink / raw)
  To: aditya desai <admad123@gmail.com>; +Cc: pgsql-sql <pgsql-sql@lists.postgresql.org>

Following up to Steve Midgley's comment, Heimdall Data provides a proxy
that can provide this level of auditing, and even trigger insertion of read
queries into an audit table if you want.  Disclaimer, I'm the CTO of
Heimdall Data...

On Wed, Oct 6, 2021 at 12:09 PM aditya desai <admad123@gmail.com> wrote:

> Hi Depesz,
> Sorry , I didn't mention it clearly. We are using these triggers for audit
> purposes.
>
> Triggers calls a procedure to insert username,machine.IPAddress into
> LogonTime in an audit table.
> We also have a trigger that gets fired BEFORE ALTER OR CREATE OR DROP on
> schema that will audit the user details in the audit table.
>
> Any alternative solution in Postgres is welcome.
>
> Thanks in advance.
>
> Regards,
> Aditya.
>
>
>
> On Wed, Oct 6, 2021 at 9:14 PM hubert depesz lubaczewski <
> depesz@depesz.com> wrote:
>
>> On Wed, Oct 06, 2021 at 08:52:45PM +0530, aditya desai wrote:
>> > Hi,
>> > Is there any way to write below Oracle trigger in postgres?
>> >
>> > CREATE TRIGGER T1 after logon on schema for each row
>> > execute procedure p1;
>>
>> What did it do?
>>
>> Please note that not everyone knowing Pg knows Oracle.
>>
>> I can imagine that trigger after logon means that p1 procedure will be
>> called after user successfully logs in, but what does the "for each row"
>> part mean?
>>
>> In PG, there are no login triggers. And, in any case, noone logs to
>> "schema".
>>
>> Best regards,
>>
>> depesz
>>
>>

-- 
*Erik Brandsberg*
erik@heimdalldata.com

www.heimdalldata.com
+1 (866) 433-2824 x 700
[image: AWS Competency Program]
<https://aws.amazon.com/partners/find/partnerdetails/?n=Heimdall%20Data&id=001E000001d9pndIAA;

^ permalink  raw  reply  [nested|flat] 9+ messages in thread

* Re: Create trigger on after logon on schema
  2021-10-06 15:22 Create trigger on after logon on schema aditya desai <admad123@gmail.com>
  2021-10-06 15:44 ` Re: Create trigger on after logon on schema hubert depesz lubaczewski <depesz@depesz.com>
  2021-10-06 16:09   ` Re: Create trigger on after logon on schema aditya desai <admad123@gmail.com>
  2021-10-06 18:26     ` Re: Create trigger on after logon on schema Erik Brandsberg <erik@heimdalldata.com>
@ 2021-10-07 05:19       ` aditya desai <admad123@gmail.com>
  2021-10-07 08:48         ` Re: Create trigger on after logon on schema aditya desai <admad123@gmail.com>
  2021-10-07 20:53         ` Re: Create trigger on after logon on schema Metin Ulusinan <metin.ulusinan@ssicilian.net>
  0 siblings, 2 replies; 9+ messages in thread

From: aditya desai @ 2021-10-07 05:19 UTC (permalink / raw)
  To: Erik Brandsberg <erik@heimdalldata.com>; Steve Midgley <science@misuse.org>; +Cc: pgsql-sql <pgsql-sql@lists.postgresql.org>

Thanks Erirk and Stever! I will dig more into it. Trying to use EVENT
TRIGGERS for DDL operations. Couldn't find great solution for LOGON yet.
Will try and check the middle tier path.

Regards,
Aditya.

On Wed, Oct 6, 2021 at 11:57 PM Erik Brandsberg <erik@heimdalldata.com>
wrote:

> Following up to Steve Midgley's comment, Heimdall Data provides a proxy
> that can provide this level of auditing, and even trigger insertion of read
> queries into an audit table if you want.  Disclaimer, I'm the CTO of
> Heimdall Data...
>
> On Wed, Oct 6, 2021 at 12:09 PM aditya desai <admad123@gmail.com> wrote:
>
>> Hi Depesz,
>> Sorry , I didn't mention it clearly. We are using these triggers for
>> audit purposes.
>>
>> Triggers calls a procedure to insert username,machine.IPAddress into
>> LogonTime in an audit table.
>> We also have a trigger that gets fired BEFORE ALTER OR CREATE OR DROP on
>> schema that will audit the user details in the audit table.
>>
>> Any alternative solution in Postgres is welcome.
>>
>> Thanks in advance.
>>
>> Regards,
>> Aditya.
>>
>>
>>
>> On Wed, Oct 6, 2021 at 9:14 PM hubert depesz lubaczewski <
>> depesz@depesz.com> wrote:
>>
>>> On Wed, Oct 06, 2021 at 08:52:45PM +0530, aditya desai wrote:
>>> > Hi,
>>> > Is there any way to write below Oracle trigger in postgres?
>>> >
>>> > CREATE TRIGGER T1 after logon on schema for each row
>>> > execute procedure p1;
>>>
>>> What did it do?
>>>
>>> Please note that not everyone knowing Pg knows Oracle.
>>>
>>> I can imagine that trigger after logon means that p1 procedure will be
>>> called after user successfully logs in, but what does the "for each row"
>>> part mean?
>>>
>>> In PG, there are no login triggers. And, in any case, noone logs to
>>> "schema".
>>>
>>> Best regards,
>>>
>>> depesz
>>>
>>>
>
> --
> *Erik Brandsberg*
> erik@heimdalldata.com
>
> www.heimdalldata.com
> +1 (866) 433-2824 x 700
> [image: AWS Competency Program]
> <https://aws.amazon.com/partners/find/partnerdetails/?n=Heimdall%20Data&id=001E000001d9pndIAA;
>

^ permalink  raw  reply  [nested|flat] 9+ messages in thread

* Re: Create trigger on after logon on schema
  2021-10-06 15:22 Create trigger on after logon on schema aditya desai <admad123@gmail.com>
  2021-10-06 15:44 ` Re: Create trigger on after logon on schema hubert depesz lubaczewski <depesz@depesz.com>
  2021-10-06 16:09   ` Re: Create trigger on after logon on schema aditya desai <admad123@gmail.com>
  2021-10-06 18:26     ` Re: Create trigger on after logon on schema Erik Brandsberg <erik@heimdalldata.com>
  2021-10-07 05:19       ` Re: Create trigger on after logon on schema aditya desai <admad123@gmail.com>
@ 2021-10-07 08:48         ` aditya desai <admad123@gmail.com>
  1 sibling, 0 replies; 9+ messages in thread

From: aditya desai @ 2021-10-07 08:48 UTC (permalink / raw)
  To: Erik Brandsberg <erik@heimdalldata.com>; Steve Midgley <science@misuse.org>; pgsql-sql <pgsql-sql@lists.postgresql.org>

To cut a long story short. We need Virtual Private Database kinda of setup
in Postgres.

Regards,
Aditya.

On Thu, Oct 7, 2021 at 10:49 AM aditya desai <admad123@gmail.com> wrote:

> Thanks Erirk and Stever! I will dig more into it. Trying to use EVENT
> TRIGGERS for DDL operations. Couldn't find great solution for LOGON yet.
> Will try and check the middle tier path.
>
> Regards,
> Aditya.
>
> On Wed, Oct 6, 2021 at 11:57 PM Erik Brandsberg <erik@heimdalldata.com>
> wrote:
>
>> Following up to Steve Midgley's comment, Heimdall Data provides a proxy
>> that can provide this level of auditing, and even trigger insertion of read
>> queries into an audit table if you want.  Disclaimer, I'm the CTO of
>> Heimdall Data...
>>
>> On Wed, Oct 6, 2021 at 12:09 PM aditya desai <admad123@gmail.com> wrote:
>>
>>> Hi Depesz,
>>> Sorry , I didn't mention it clearly. We are using these triggers for
>>> audit purposes.
>>>
>>> Triggers calls a procedure to insert username,machine.IPAddress into
>>> LogonTime in an audit table.
>>> We also have a trigger that gets fired BEFORE ALTER OR CREATE OR DROP on
>>> schema that will audit the user details in the audit table.
>>>
>>> Any alternative solution in Postgres is welcome.
>>>
>>> Thanks in advance.
>>>
>>> Regards,
>>> Aditya.
>>>
>>>
>>>
>>> On Wed, Oct 6, 2021 at 9:14 PM hubert depesz lubaczewski <
>>> depesz@depesz.com> wrote:
>>>
>>>> On Wed, Oct 06, 2021 at 08:52:45PM +0530, aditya desai wrote:
>>>> > Hi,
>>>> > Is there any way to write below Oracle trigger in postgres?
>>>> >
>>>> > CREATE TRIGGER T1 after logon on schema for each row
>>>> > execute procedure p1;
>>>>
>>>> What did it do?
>>>>
>>>> Please note that not everyone knowing Pg knows Oracle.
>>>>
>>>> I can imagine that trigger after logon means that p1 procedure will be
>>>> called after user successfully logs in, but what does the "for each row"
>>>> part mean?
>>>>
>>>> In PG, there are no login triggers. And, in any case, noone logs to
>>>> "schema".
>>>>
>>>> Best regards,
>>>>
>>>> depesz
>>>>
>>>>
>>
>> --
>> *Erik Brandsberg*
>> erik@heimdalldata.com
>>
>> www.heimdalldata.com
>> +1 (866) 433-2824 x 700
>> [image: AWS Competency Program]
>> <https://aws.amazon.com/partners/find/partnerdetails/?n=Heimdall%20Data&id=001E000001d9pndIAA;
>>
>

^ permalink  raw  reply  [nested|flat] 9+ messages in thread

* Re: Create trigger on after logon on schema
  2021-10-06 15:22 Create trigger on after logon on schema aditya desai <admad123@gmail.com>
  2021-10-06 15:44 ` Re: Create trigger on after logon on schema hubert depesz lubaczewski <depesz@depesz.com>
  2021-10-06 16:09   ` Re: Create trigger on after logon on schema aditya desai <admad123@gmail.com>
  2021-10-06 18:26     ` Re: Create trigger on after logon on schema Erik Brandsberg <erik@heimdalldata.com>
  2021-10-07 05:19       ` Re: Create trigger on after logon on schema aditya desai <admad123@gmail.com>
@ 2021-10-07 20:53         ` Metin Ulusinan <metin.ulusinan@ssicilian.net>
  2021-10-11 07:48           ` Re: Create trigger on after logon on schema aditya desai <admad123@gmail.com>
  1 sibling, 1 reply; 9+ messages in thread

From: Metin Ulusinan @ 2021-10-07 20:53 UTC (permalink / raw)
  To: aditya desai <admad123@gmail.com>; +Cc: Erik Brandsberg <erik@heimdalldata.com>; Steve Midgley <science@misuse.org>; pgsql-sql <pgsql-sql@lists.postgresql.org>

Hi,
I found an extension for postgresql for login hook. Please try this and
share us your experience. It's seems answer your needs.


https://github.com/splendiddata/login_hook



On Thu, Oct 7, 2021 at 8:19 AM aditya desai <admad123@gmail.com> wrote:

> Thanks Erirk and Stever! I will dig more into it. Trying to use EVENT
> TRIGGERS for DDL operations. Couldn't find great solution for LOGON yet.
> Will try and check the middle tier path.
>
> Regards,
> Aditya.
>
> On Wed, Oct 6, 2021 at 11:57 PM Erik Brandsberg <erik@heimdalldata.com>
> wrote:
>
>> Following up to Steve Midgley's comment, Heimdall Data provides a proxy
>> that can provide this level of auditing, and even trigger insertion of read
>> queries into an audit table if you want.  Disclaimer, I'm the CTO of
>> Heimdall Data...
>>
>> On Wed, Oct 6, 2021 at 12:09 PM aditya desai <admad123@gmail.com> wrote:
>>
>>> Hi Depesz,
>>> Sorry , I didn't mention it clearly. We are using these triggers for
>>> audit purposes.
>>>
>>> Triggers calls a procedure to insert username,machine.IPAddress into
>>> LogonTime in an audit table.
>>> We also have a trigger that gets fired BEFORE ALTER OR CREATE OR DROP on
>>> schema that will audit the user details in the audit table.
>>>
>>> Any alternative solution in Postgres is welcome.
>>>
>>> Thanks in advance.
>>>
>>> Regards,
>>> Aditya.
>>>
>>>
>>>
>>> On Wed, Oct 6, 2021 at 9:14 PM hubert depesz lubaczewski <
>>> depesz@depesz.com> wrote:
>>>
>>>> On Wed, Oct 06, 2021 at 08:52:45PM +0530, aditya desai wrote:
>>>> > Hi,
>>>> > Is there any way to write below Oracle trigger in postgres?
>>>> >
>>>> > CREATE TRIGGER T1 after logon on schema for each row
>>>> > execute procedure p1;
>>>>
>>>> What did it do?
>>>>
>>>> Please note that not everyone knowing Pg knows Oracle.
>>>>
>>>> I can imagine that trigger after logon means that p1 procedure will be
>>>> called after user successfully logs in, but what does the "for each row"
>>>> part mean?
>>>>
>>>> In PG, there are no login triggers. And, in any case, noone logs to
>>>> "schema".
>>>>
>>>> Best regards,
>>>>
>>>> depesz
>>>>
>>>>
>>
>> --
>> *Erik Brandsberg*
>> erik@heimdalldata.com
>>
>> www.heimdalldata.com
>> +1 (866) 433-2824 x 700
>> [image: AWS Competency Program]
>> <https://aws.amazon.com/partners/find/partnerdetails/?n=Heimdall%20Data&id=001E000001d9pndIAA;
>>
>

^ permalink  raw  reply  [nested|flat] 9+ messages in thread

* Re: Create trigger on after logon on schema
  2021-10-06 15:22 Create trigger on after logon on schema aditya desai <admad123@gmail.com>
  2021-10-06 15:44 ` Re: Create trigger on after logon on schema hubert depesz lubaczewski <depesz@depesz.com>
  2021-10-06 16:09   ` Re: Create trigger on after logon on schema aditya desai <admad123@gmail.com>
  2021-10-06 18:26     ` Re: Create trigger on after logon on schema Erik Brandsberg <erik@heimdalldata.com>
  2021-10-07 05:19       ` Re: Create trigger on after logon on schema aditya desai <admad123@gmail.com>
  2021-10-07 20:53         ` Re: Create trigger on after logon on schema Metin Ulusinan <metin.ulusinan@ssicilian.net>
@ 2021-10-11 07:48           ` aditya desai <admad123@gmail.com>
  0 siblings, 0 replies; 9+ messages in thread

From: aditya desai @ 2021-10-11 07:48 UTC (permalink / raw)
  To: Metin Ulusinan <metin.ulusinan@ssicilian.net>; pgsql-sql <pgsql-sql@lists.postgresql.org>

Thanks Metin.

On Fri, Oct 8, 2021 at 2:27 AM Metin Ulusinan <metin.ulusinan@ssicilian.net>
wrote:

> Hi,
> I found an extension for postgresql for login hook. Please try this and
> share us your experience. It's seems answer your needs.
>
>
> https://github.com/splendiddata/login_hook
>
>
>
> On Thu, Oct 7, 2021 at 8:19 AM aditya desai <admad123@gmail.com> wrote:
>
>> Thanks Erirk and Stever! I will dig more into it. Trying to use EVENT
>> TRIGGERS for DDL operations. Couldn't find great solution for LOGON yet.
>> Will try and check the middle tier path.
>>
>> Regards,
>> Aditya.
>>
>> On Wed, Oct 6, 2021 at 11:57 PM Erik Brandsberg <erik@heimdalldata.com>
>> wrote:
>>
>>> Following up to Steve Midgley's comment, Heimdall Data provides a proxy
>>> that can provide this level of auditing, and even trigger insertion of read
>>> queries into an audit table if you want.  Disclaimer, I'm the CTO of
>>> Heimdall Data...
>>>
>>> On Wed, Oct 6, 2021 at 12:09 PM aditya desai <admad123@gmail.com> wrote:
>>>
>>>> Hi Depesz,
>>>> Sorry , I didn't mention it clearly. We are using these triggers for
>>>> audit purposes.
>>>>
>>>> Triggers calls a procedure to insert username,machine.IPAddress into
>>>> LogonTime in an audit table.
>>>> We also have a trigger that gets fired BEFORE ALTER OR CREATE OR DROP
>>>> on schema that will audit the user details in the audit table.
>>>>
>>>> Any alternative solution in Postgres is welcome.
>>>>
>>>> Thanks in advance.
>>>>
>>>> Regards,
>>>> Aditya.
>>>>
>>>>
>>>>
>>>> On Wed, Oct 6, 2021 at 9:14 PM hubert depesz lubaczewski <
>>>> depesz@depesz.com> wrote:
>>>>
>>>>> On Wed, Oct 06, 2021 at 08:52:45PM +0530, aditya desai wrote:
>>>>> > Hi,
>>>>> > Is there any way to write below Oracle trigger in postgres?
>>>>> >
>>>>> > CREATE TRIGGER T1 after logon on schema for each row
>>>>> > execute procedure p1;
>>>>>
>>>>> What did it do?
>>>>>
>>>>> Please note that not everyone knowing Pg knows Oracle.
>>>>>
>>>>> I can imagine that trigger after logon means that p1 procedure will be
>>>>> called after user successfully logs in, but what does the "for each
>>>>> row"
>>>>> part mean?
>>>>>
>>>>> In PG, there are no login triggers. And, in any case, noone logs to
>>>>> "schema".
>>>>>
>>>>> Best regards,
>>>>>
>>>>> depesz
>>>>>
>>>>>
>>>
>>> --
>>> *Erik Brandsberg*
>>> erik@heimdalldata.com
>>>
>>> www.heimdalldata.com
>>> +1 (866) 433-2824 x 700
>>> [image: AWS Competency Program]
>>> <https://aws.amazon.com/partners/find/partnerdetails/?n=Heimdall%20Data&id=001E000001d9pndIAA;
>>>
>>

^ permalink  raw  reply  [nested|flat] 9+ messages in thread


end of thread, other threads:[~2021-10-11 07:48 UTC | newest]

Thread overview: 9+ messages (download: mbox mbox.gz follow: Atom feed)
-- links below jump to the message on this page --
2021-10-06 15:22 Create trigger on after logon on schema aditya desai <admad123@gmail.com>
2021-10-06 15:44 ` hubert depesz lubaczewski <depesz@depesz.com>
2021-10-06 16:09   ` aditya desai <admad123@gmail.com>
2021-10-06 18:16     ` Steve Midgley <science@misuse.org>
2021-10-06 18:26     ` Erik Brandsberg <erik@heimdalldata.com>
2021-10-07 05:19       ` aditya desai <admad123@gmail.com>
2021-10-07 08:48         ` aditya desai <admad123@gmail.com>
2021-10-07 20:53         ` Metin Ulusinan <metin.ulusinan@ssicilian.net>
2021-10-11 07:48           ` aditya desai <admad123@gmail.com>

This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox