home *** CD-ROM | disk | FTP | other *** search
/ Winzipper / Winzipper_ISO.iso / programming / oracle7 7.2 / DB / UTIL72 / ULCASE1.SQL < prev    next >
Encoding:
Text File  |  1995-05-09  |  998 b   |  39 lines

  1. Rem  Copyright (c) 1991 by Oracle Corporation 
  2. Rem    NAME
  3. Rem      ulcase1.sql - <one-line expansion of the name>
  4. Rem    DESCRIPTION
  5. Rem      <short description of component this file declares/defines>
  6. Rem    RETURNS
  7. Rem 
  8. Rem    NOTES
  9. Rem      <other useful comments, qualifications, etc.>
  10. Rem    MODIFIED   (MM/DD/YY)
  11. Rem     ksudarsh   03/01/93 -  comment out vms specific host command 
  12. Rem     ksudarsh   12/29/92 -  Creation 
  13. Rem     cheigham   08/28/91 -  Creation 
  14. rem 
  15. rem $Header: ulcase1.sql 7020100.1 94/09/23 22:19:26 cli Generic<base> $ 
  16. rem 
  17. set termout off
  18. rem host write sys$output "Building first demonstration tables.  Please wait"
  19. set feedback off
  20. drop table emp;
  21. drop table dept;
  22.  
  23. create table emp
  24.        (empno number(4) not null,
  25.     ename char(10),
  26.     job char(9),
  27.     mgr number(4),
  28.     hiredate date,
  29.     sal number(7,2),
  30.     comm number(7,2),
  31.     deptno number(2));
  32.  
  33. create table dept
  34.        (deptno number(2),
  35.     dname char(14) ,
  36.     loc char(13) ) ;
  37.  
  38. exit
  39.