This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FOR /d /r . %%d IN ("obj") DO @IF EXIST "%%d" rd /s /q "%%d" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DECLARE | |
cnt NUMBER; | |
BEGIN | |
SELECT COUNT(*) | |
INTO cnt | |
FROM all_users | |
WHERE username = 'GP_BLANK'; | |
IF (cnt>0) THEN | |
EXECUTE IMMEDIATE 'DROP USER GP_BLANK CASCADE'; | |
end if; |