Skip to content

Instantly share code, notes, and snippets.

@gvenzl
gvenzl / TestDatabaseSetup.md
Last active January 13, 2025 03:21
Setup scripts for test databases for Oracle, MySQL, Postgres, SQL Server, and Db2
@nochmu
nochmu / pom.xml
Last active February 22, 2018 19:11
call utPLSQL-CLI with exec-maven-plugin
<project>
...
<properties>
<!-- Datbase -->
<db.host>oradev</db.host>
<db.port>1521</db.port>
<db.service>dev.loc</db.service>
<db.user.test>TEST</db.user.test>
<db.pw.test>test</db.pw.test>
@samisalkosuo
samisalkosuo / Deploy_Oracle.sh
Last active June 17, 2022 09:37
Oracle 12c silent installation files, including response files. Start installation executing Deploy_Oracle.sh. See also here: http://sami.salkosuo.net/silent-service/.
#!/bin/sh
#Set up Linux and oracle
echo "Deploying Oracle..."
if [[ "$1" != "" ]] ; then
DEFAULT_PWD=$1
echo "Using user specified default password"
else
DEFAULT_PWD=passW0RD