type function is record (f1 NUMERIC,f2 NUMERIC..); this is in oracle
kindly tell me what is the substitute to use "is record " in postgres.
its urgent .
thanks and rgds
vpmm
--
View this message in context:
http://postgresql.1045698.n5.nabble.com/postgresql-referencing-and-creating-type
create or replace package CUM_A_TYPES
as
type LT_PAYMENT is record
(BASICnumber,
DPnumber,
GRADE_PAYnumber
);
TYPE TYPE_CALC_TAX is record
(
FIN_ROLE_ID number(8),
CALC_FOR_ROLE_CODE number(4));
NEED TO CONVERT THIS TO POSTGRES , ANYBODY PLS HELP ME I M NEW TO
In reply to this post by vpmm2007
create or replace package CUM_A_TYPES
as
type LT_PAYMENT is record
(BASICnumber,
DPnumber,
GRADE_PAYnumber
);
TYPE TYPE_CALC_TAX is record
(
FIN_ROLE_ID number(8),
CALC_FOR_ROLE_CODE number(4));
NEED TO CONVERT THIS TO