home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
- #
- # $Header: demodrop.sh.120,v 50117.8 89/04/24 12:35:29 pgreenwa Exp $ base sqlplus sqlplus/demo demodrop.sh 120 Copyr (c) 1988 Oracle Corporation
- #
-
- #
- # demodrop - Sets up database environment for SQL*Plus Design Tutorial
- #
- # Created Wilkins 02-20-87
- #
-
- if [ $# -gt 2 ]; then
- echo "Usage: $0 username passwd"
- exit 1
- fi
- crscript $ORACLE_HOME/sqlplus/demo/demodrop.sql demodrop.tmp $1 $2
- sqlplus @demodrop.tmp
- rm demodrop.tmp
-