rbrooker
Member³
Hi,
i just tried for format this code:
and as you can see, the bulk collect is in the wrong place. Can this be fixed please?
i just tried for format this code:
Code:
DECLARE
-- Non-scalar parameters require additional processing
pi_attrs fadssproc.test.t_attrchanges;
BEGIN
-- Call the procedure
SELECT object_name
,object_id
,status BULK COLLECT
INTO pi_attrs
FROM dba_objects
WHERE rownum < 101;
fadssproc.test.display_records(pi_attrs => pi_attrs);
END;