"Hakan Kocaman" <Hakan.Kocaman@xxxxxxxxx> writes: > If you want to get the OUT-Params each as columns, you got to call it > this way: > =# select (public.check_notice(2,'hello')).*; Try this way instead: select * from public.check_notice(2,'hello'); regards, tom lane