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