home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a524 / 40.ddi / testdrive.sh < prev    next >
Encoding:
Text File  |  1980-01-08  |  2.0 KB  |  72 lines

  1. :
  2. # $Header: testdrive.sh,v 6.2 89/03/17 17:45:53 mho Exp $ testdrive.sh 
  3. #
  4. # testdrive.sh
  5. #
  6. # usage: testdrive.sh <local_pass> <lhoststr> <remote_pass> <rhoststr>
  7. #
  8. #    This shell program calls sqlplus and contains a short .sql input
  9. #        script to test the net drivers (Net*TCP, NET*Async, etc.)
  10. #
  11. #    <local_pass> - (e.g. scott/tiger)
  12. #            user/password for connecting to local database
  13. #    <lhoststr> - (e.g. T:hqsun6:UNIXDEV)
  14. #            network driver specification string for local
  15. #            database
  16. #    <remote_pass> - (e.g. adams/wood)
  17. #            user/password for connecting to remote database
  18. #    <rhoststr> - (e.g. T:dread:N)
  19. #            network driver specification string for local
  20. #            database.
  21. #
  22. #    Testdrive.sh assumes itself to be called on the local machine (i.e.
  23. #    the hostname specified in <lhoststr>).  It invokes sqlplus and 
  24. #    connect, through <local_pass>, to the local database.  Then it
  25. #    invokes the specifed network driver by
  26. #        "connect <remote_pass>@<rhoststr>"
  27. #    Upon connection, it performs some data definition and data
  28. #    manipulation operations.  Finally, it calls the SQL*Plus
  29. #    'COPY' command to copy a table back and forth between the
  30. #    local and remote databases through the net driver.
  31. #    It produces a spool file 'testdrive.out' in the current working
  32. #    directory.
  33.  
  34. if test $# -ne 4
  35. then echo "Usage: 
  36.       testdrive.sh <local_pass> <lhoststr> <remote_pass> <rhoststr>"
  37.      exit
  38. fi
  39.  
  40. LOCAL_PASS="$1"
  41. LHOSTSTR="$2"
  42. REMOTE_PASS="$3"
  43. RHOSTSTR="$4"
  44.  
  45. sqlplus ${LOCAL_PASS}@$LHOSTSTR >/dev/null 2>&1 <<!
  46. spool testdrive.out
  47. connect ${REMOTE_PASS}@$RHOSTSTR
  48. create table temp (col1 number, col2 char(5));
  49. insert into temp values (1,'A');
  50. insert into temp values (2,'B');
  51. insert into temp values (3,'C');
  52. select * from temp;
  53. update temp set col2 = 'BB' where col1 = 2;
  54. select * from temp;
  55. copy to ${LOCAL_PASS}@$LHOSTSTR -
  56. replace tempcopy -
  57. using select * from temp;
  58. copy from ${LOCAL_PASS}@$LHOSTSTR -
  59. create tempcopy2 -
  60. using select * from tempcopy;
  61. drop table temp;
  62. select * from tempcopy2;
  63. drop table tempcopy2;
  64.  
  65. connect ${LOCAL_PASS}@$LHOSTSTR
  66. drop table tempcopy;
  67.  
  68. disconnect;
  69. !
  70.