Bernhard S
Member³
In my trigger file *.trg I have several tabs with different triggers. When editing and storing with the new beta version, I got the last slash after the END; removed! This causes a lot of errors when deploying like that via SQL*Plus.
So instead of the correct:
it ends now wrongly like:
The triggers before the last one are fine and correctly ended with slash.
Why are those slashes never shown in PL/SQL Developer?
It might be easier if you see there as well what gets actually stored.
The behaviour is the same for a package file .*pck consisting of separate tab for spec and body: The body gets the final slash removed as well!
So probably this is a problem for all tabbed files containing PL/SQL Code which is supposed to always end with
So instead of the correct:
SQL:
END;
/
it ends now wrongly like:
SQL:
END;
The triggers before the last one are fine and correctly ended with slash.
Why are those slashes never shown in PL/SQL Developer?
It might be easier if you see there as well what gets actually stored.
The behaviour is the same for a package file .*pck consisting of separate tab for spec and body: The body gets the final slash removed as well!
So probably this is a problem for all tabbed files containing PL/SQL Code which is supposed to always end with
SQL:
END;
/