Re: Calling Procedure from another procedure in Postgres

2020-12-02 Thread Thomas Kellerer
Muthukumar.GK schrieb am 02.12.2020 um 11:20: > I need to call the procedure(not function) and insert the records > into a temporary table from another procedure in postgres. When > executing the procedure 'Sampleproc2',I got some below syntax error. > Kindly let me know whether postgres supports

Re: Calling Procedure from another procedure in Postgres

2020-12-02 Thread Pavel Stehule
st 2. 12. 2020 v 11:20 odesílatel Muthukumar.GK napsal: > Hi team, > > I need to call the procedure(not function) and insert the records into a > temporary table from another procedure in postgres. When executing the > procedure 'Sampleproc2',I got some below syntax error. Kindly let me know > w

Re: Calling Procedure from another procedure in Postgres

2020-12-02 Thread Hemil Ruparel
insert into is not valid On Wed, Dec 2, 2020 at 3:50 PM Muthukumar.GK wrote: > Hi team, > > I need to call the procedure(not function) and insert the records into a > temporary table from another procedure in postgres. When executing the > procedure 'Sampleproc2',I got some below syntax error.

Calling Procedure from another procedure in Postgres

2020-12-02 Thread Muthukumar.GK
Hi team, I need to call the procedure(not function) and insert the records into a temporary table from another procedure in postgres. When executing the procedure 'Sampleproc2',I got some below syntax error. Kindly let me know whether postgres supports this functionality or any other way of call