home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #31 / NN_1992_31.iso / spool / comp / database / ingres / 2142 < prev    next >
Encoding:
Text File  |  1992-12-25  |  964 b   |  26 lines

  1. Newsgroups: comp.databases.ingres
  2. Path: sparky!uunet!gatech!darwin.sura.net!uvaarpa!cv3.cv.nrao.edu!mail-to-news-gateway
  3. From: domke@wudos5.wustl.edu (Fred M. Domke)
  4. Subject: RE: DB admin tools
  5. Message-ID: <199212241615.AA22058@wugate.wustl.edu>
  6. Sender: root@nrao.edu (Operator)
  7. Organization: National Radio Astronomy Observatory
  8. Date: Thu, 24 Dec 1992 16:15:17 GMT
  9. Lines: 15
  10.  
  11. If you are using SchemaDef II, you may wish to modify the OSQ for the Save_Info 
  12. frame.  The code to extract view definitions does a 'squeeze', 'trim' and 
  13. concatenates a blank between multiple rows of view definition text.  Since the 
  14. text may not split at word boundaries, this may fail.  Specifically, modify line 
  15. 85 of Sav_Info.OSQ from 
  16.     "SELECT IItext = squeeze(v.text_segment),"... 
  17. to 
  18.     "SELECT IItext = v.text_segment,"... 
  19. and modify line 107 from
  20.     "IIdesc = IIdesc + trim(IItext)+' ';" 
  21. to 
  22.     "IIdesc = IIdesc + IItext;".
  23.  
  24. Other than that, it seems to work fine.
  25.  
  26.