Skip to content

Instantly share code, notes, and snippets.

@scanbix
Created April 3, 2018 06:39
Show Gist options
  • Save scanbix/d41350fba0266430b382cce1ca2c03ae to your computer and use it in GitHub Desktop.
Save scanbix/d41350fba0266430b382cce1ca2c03ae to your computer and use it in GitHub Desktop.
Bash template for SQL plus DDL in Oracle
#!/bin/bash
# Purpose:
# Author: Full_name <email@>
# Note :
# Last updated on : 2018-03-05
# -----------------------------------------------
sqlplus -S /nolog <<EOF
--connect user/pass
@cleanup_database_tables.sql
--select * from dual;
EOF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment