home *** CD-ROM | disk | FTP | other *** search
/ Winzipper / Winzipper_ISO.iso / programming / oracle7 7.2 / DB / UTIL72 / ULCASE3.CTL < prev    next >
Encoding:
Text File  |  1995-05-09  |  1.2 KB  |  38 lines

  1. -- Copyright (c) 1991 by Oracle Corporation 
  2. --   NAME
  3. --     ulcase3.ctl - <one-line expansion of the name>
  4. --   DESCRIPTION
  5. --     <short description of component this file declares/defines>
  6. --   RETURNS
  7. --
  8. --   NOTES
  9. --     <other useful comments, qualifications, etc.>
  10. --   MODIFIED   (MM/DD/YY)
  11. --    cheigham   08/28/91 -  Creation 
  12. -- 
  13. -- $Header: ulcase3.ctl 7020100.1 94/09/23 22:19:35 cli Generic<base> $ case3.ctl 
  14. -- 
  15. -- Variable length, delimited and enclosed data format
  16.  
  17. LOAD DATA 
  18. INFILE *
  19. APPEND
  20.  
  21. INTO TABLE EMP
  22. FIELDS TERMINATED BY "," OPTIONALLY ENCLOSED BY '"'    
  23. (empno, ename, job, mgr,
  24.  hiredate DATE(20) "DD-Month-YYYY",
  25.  sal, comm,
  26.  deptno   CHAR TERMINATED BY ':',
  27.  projno,
  28.  loadseq  SEQUENCE(MAX,1) )        
  29.  
  30. BEGINDATA
  31. 7782, "Clark", "Manager", 7839, 09-June-1981, 2572.50,, 10:101
  32. 7839, "King", "President", , 17-November-1981, 5500.00,, 10:102
  33. 7934, "Miller", "Clerk", 7782, 23-January-1982, 920.00,, 10:102
  34. 7566, "Jones", "Manager", 7839, 02-April-1981, 3123.75,, 20:101
  35. 7499, "Allen", "Salesman", 7698, 20-February-1981, 1600.00, 300.00, 30:103
  36. 7654, "Martin", "Salesman", 7698, 28-September-1981, 1312.50, 1400.00, 30:103
  37. 7658, "Chan", "Analyst", 7566, 03-May-1982, 3450,, 20:101
  38.