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

  1. Path: sparky!uunet!zaphod.mps.ohio-state.edu!swrinde!cs.utexas.edu!usc!news.service.uci.edu!beckman.com!deflenniken
  2. From: deflenniken@beckman.com
  3. Newsgroups: comp.databases.oracle
  4. Subject: Re: SQR
  5. Message-ID: <1992Dec9.163332.1064@beckman.com>
  6. Date: 9 Dec 92 16:33:32 PDT
  7. References: <1992Dec8.223829.11515@mr.med.ge.com> <6514.2b25ae0c@hayes.com>
  8. Organization: Beckman Instruments, Inc.
  9. Lines: 62
  10.  
  11. In article <6514.2b25ae0c@hayes.com>, fgreene@hayes.com writes:
  12. > In article <1992Dec8.223829.11515@mr.med.ge.com>, sidney@picard.med.ge.com (W. T. Sidney MFG Project Eng. X46324) writes:
  13. >> I'm interested in a report writer for oracle, other than SQL*ReportWriter.
  14. >> I've been told to look at SQR.
  15. >> 
  16. >> Does any one have any info on SQR or any other Third (3rd) party report
  17. >> writers?
  18. >> 
  19. >> Thanks
  20. >> 
  21. >> --
  22. >> -=Sid=-
  23. > SQR is a good product that includes a capability to generate matrix
  24. > reports. There is a fairly steep learning curve, but once you get into the
  25. > syntax it is easy to use.  Only shortcoming I have come across is that 
  26. > the product has no statistical capabilities.  That is, give me the
  27. > standard deviation, average, variance, etc., for a column or row of 
  28. > numbers.
  29.  
  30. SQR doesn't need simple statistical functions, since they are supplied
  31. by Oracle in standard SQL query.
  32.  
  33. E.g.  begin-select
  34.       AVG(col)
  35.       STDDEV(col)
  36.       VARIANCE(col)
  37.       FROM Table
  38.       WHERE ...
  39.       end-select
  40.   
  41. [user soapbox on]
  42.  
  43. I've climbed the learning curve hill for SQR, RPT, SQL*Reportwriter and 
  44. 'C' with embedded SQL, and SQR was by far the easiest to learn and the
  45. quickest to become productive at. It is a very rich procedural report writer
  46. with a somewhat quirky syntax. There is not much that we have not been able
  47. to do in SQR. We use it for batch programming, and call it from SQL*Forms as
  48. well as useing it for report writing. 
  49.  
  50. Highly recommended (me speaking not my employer).
  51.  
  52. [user soapbox off]
  53.  
  54. ..Darrell Flenniken 
  55.  
  56. Beckman Instruments
  57.  
  58.  
  59.  
  60. >   ---------------------------------------------------------------------------
  61. >   |      Frank Greene                  |          //////  //////             |
  62. >   |      DELPHI SYSTEMS, Inc.          |           ////    ////              |
  63. >   |      Telephone [615] 458-6032      |          ////    ////  //////       |
  64. >   |      324 Ootsima Way               |         ////    ////    ////        |
  65. >   |      Loudon, TN 37774              |        //////  //////  //////       |
  66. >   ----------------------------------------------------------------------------
  67. >   |         Of course, any opinions or suggestions are strictly my own       |
  68. >   ----------------------------------------------------------------------------
  69.