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
select table_name from user_constraints | |
where r_constraint_name in | |
(select constraint_name | |
from user_constraints | |
where constraint_type in ('P','U') | |
and table_name = upper('&tableOfInterest') | |
) |
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
CATALINA_OPTS="-Xdebug -Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=n" |
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
select * from v$locked_object; |
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
// para subir o jetty numa determinada porta via linha de comando | |
mvn -Djetty.port=9999 jetty:run | |
// para subir o jetty numa determinada porta via Goals (Eclipse) | |
jetty:stop -Djetty.port=8080 jetty:run |
NewerOlder