home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a524 / 4.ddi / demodrop < prev    next >
Encoding:
Text File  |  1991-09-22  |  445 b   |  19 lines

  1. #!/bin/sh
  2. #
  3. #  $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 
  4. #
  5.  
  6. #  demodrop - Sets up database environment for SQL*Plus Design Tutorial
  7. #
  8. #  Created   Wilkins    02-20-87
  9. #
  10.  
  11. if [ $# -gt 2 ]; then
  12.     echo "Usage: $0 username passwd"
  13.     exit 1
  14. fi
  15. crscript $ORACLE_HOME/sqlplus/demo/demodrop.sql demodrop.tmp $1 $2
  16. sqlplus @demodrop.tmp
  17. rm demodrop.tmp
  18.