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
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-dependency-plugin</artifactId> | |
<executions> | |
<execution> | |
<phase>prepare-package</phase> | |
<goals> | |
<goal>copy</goal> | |
</goals> |
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
/** | |
* I found after running a particular performance test that Oracle started hanging, | |
* and I noticed that the drive space was full. I eventually noticed that the TEMP | |
* tablespace had expanded to fill all the avlailable drive space. I found the following | |
* set of commands online that allowed me to drop the bloated tablespace and recreate | |
* a new one. | |
* @author John A. Marsh (with lots of help from the Internet) | |
* @since 2014-08-01 | |
*/ |
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
SET DEFINE OFF; | |
SET SERVEROUTPUT ON; | |
SET FEEDBACK OFF; | |
--/ | |
DECLARE | |
newStartNumber INTEGER; | |
oldStartNumber INTEGER; | |
difference INTEGER; | |
BEGIN |
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
/** | |
* USE WITH CAUTION! | |
* This script attempts to drop every object it can find in the current schema. | |
* - Tables (including constraints) | |
* - Views | |
* - Sequences | |
* - More... | |
* | |
* @author John A. Marsh - ThreeLeaf.com (c) 2014 | |
*/ |
NewerOlder