This file contains 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 in ./*/ ; do (cd "$d" && git branch | grep -v "develop" | grep -v "master" | grep -v "release" | xargs git branch -D); done |
This file contains 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 | |
v_object_name ALL_OBJECTS.OBJECT_NAME%type; | |
v_object_id ALL_OBJECTS.OBJECT_ID%type; | |
v_session_id V$LOCK.SID%type; | |
v_session_serial V$LOCK.serial#%type; | |
v_sql_stmnt varchar2(400); | |
begin | |
-- RUN AS SYSDBA | |
-- PUT YOUR OBJECT NAME HERE!!! | |
v_object_name := 'CER_CERTIFICACIONES_EVALUACION'; |