Hi,
I want to create a lst file from a sql script
Here is my code:
BEGIN
DECLARE
loc_bia_foracid GAM.foracid%TYPE;
loc_fba_foracid GAM.foracid%TYPE;
out_spool VARCHAR2(32000);
BEGIN
loc_bia_foracid:= '&loc_bia_foracid';
loc_fba_foracid:= '&loc_fba_foracid';
out_spool := out_spool || '|' || loc_bia_foracid;
out_spool := out_spool || '|' || loc_fba_foracid;
END;
If I don't give the no of characters for out_spool
it gives me an error.
And I want my lst file to be more than 32k characters.
Also I need to know how do I define it in a stored procedure.