Obviously,

this part of tr_f_def():

******************************
                -- delete the contents
--              delete from f;
                IF EXISTS (SELECT 1 FROM f) THEN
                        DELETE FROM F;
                        VACUUM F;
                END IF;
******************************


should simply read:

******************************
                -- delete the contents
                delete from f;
******************************



--
Best,




Frank.


---------------------------(end of broadcast)---------------------------
TIP 3: if posting/reading through Usenet, please send an appropriate
      subscribe-nomail command to [EMAIL PROTECTED] so that your
      message can get through to the mailing list cleanly

Reply via email to