home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #30 / NN_1992_30.iso / spool / comp / database / oracle / 2577 < prev    next >
Encoding:
Internet Message Format  |  1992-12-21  |  1.9 KB

  1. Path: sparky!uunet!europa.asd.contel.com!howland.reston.ans.net!sol.ctr.columbia.edu!destroyer!fmsrl7!ef2007!ef5003!wwm
  2. From: wwm@ef5003.efhd.ford.com (Bill Meahan)
  3. Newsgroups: comp.databases.oracle
  4. Subject: Explain THIS, please!
  5. Date: Fri, 18 Dec 1992 20:42:01 GMT
  6. Organization: Ford Motor Co., EFHD Ypsilanti Operations
  7. Lines: 48
  8. Distribution: world
  9. Message-ID: <1gtd91INN7ln@ef2007.efhd.ford.com>
  10. NNTP-Posting-Host: ef5003.efhd.ford.com
  11.  
  12. I'm tearing my hair out at the following:
  13.  
  14.  
  15. SQL> l
  16.   1  select '%' Shift,
  17.   2   p.prefix||'-'||p.base_code||'-'||p.suffix||p.control_code PartNumber,
  18.   3   s.scrap_code Reason,
  19.   4   SUM(s.cost) TotalDollars
  20.   5   FROM cimcmms.scrap_count_history s, acg.part p
  21.   6   WHERE s.part_key=p.key
  22.   7    AND s.work_center_code = '75021'
  23.   8    AND s.production_date BETWEEN '1-Dec-92' AND '13-Dec-92'
  24.   9    AND s.shift LIKE '%'
  25.  10    AND s.part_key IN ( SELECT ss.part_key
  26.  11       FROM cimcmms.scrap_count_history ss
  27.  12       WHERE ss.work_center_code = '75021'
  28.  13        AND ss.production_date BETWEEN '1-Dec-92' AND '13-Dec-92'
  29.  14        AND ss.shift LIKE '%'
  30.  15        AND ROWID <11
  31.  16       GROUP BY ss.part_key
  32.  17       ORDER BY SUM(ss.cost) desc )
  33.  18   GROUP BY '%',
  34.  19   p.prefix||'-'||p.base_code||'-'||p.suffix||p.control_code,
  35.  20   s.scrap_code
  36.  21   ORDER BY p.prefix||'-'||p.base_code||'-'||p.suffix||p.control_code,
  37.  22*  SUM(s.cost) desc
  38.  
  39. SQL> /
  40.      ORDER BY SUM(ss.cost) desc )
  41.      *
  42. ERROR at line 17: 
  43. ORA-00907: missing right parenthesis 
  44.  
  45. SQL> spool off
  46.  
  47. There certainly AREN'T any mismatched parentheses!
  48.  
  49. Any ideas what is going on?
  50.  
  51. The sqlplus version is 3.0.12.1.1
  52. The ORACLE version is 6.0.36.1.1
  53. Computer is HP 9000/867  HP-UX 8.0
  54.  
  55. -- 
  56. Bill Meahan            |EFHD Information Systems Staff
  57. Plant Floor Systems Specialist    |Ford Motor Company
  58. wwm@ef5003.efhd.ford.com          | +1 313 487 6122
  59. ..!fmsrl7!pmsmam!wwm           |I'm not paid to speak for Ford!
  60.