Hi, fellows!
I had a PL/SQL which output generates a sql script:
DECLARE
fileHandler UTL_FILE.FILE_TYPE;
BEGIN
fileHandler := UTL_FILE.FOPEN('FULL_BACKUP', 'cedo_alteram.sql', 'W');
...
END
/
I had tried to use (inside of the pl/sql script), the following:
@cedo_alteram.sql
@@cedo_alteram.sql
EXECUTE IMMEDIATE 'EXECUTE IMMEDIATE 'cedo_alteram.sql';'
But no results I had obtained.
Is there any way I can run my cedo_alteram.sql script from my PL/SQL script, please?
I appreciate any tips you provide me.
Thanks, in advance,
Luiz