Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> Re: UNIX help needed for sed multi-line pattern space

Re: UNIX help needed for sed multi-line pattern space

From: Ron Rogers <RROGERS_at_galottery.org>
Date: Thu, 15 Nov 2001 12:07:20 -0800
Message-ID: <F001.003C693D.20011115112526@fatcity.com>

Alan,
 What do you mean the file is to large for vi? If you are going to string the lines together be sure that you don't overrun the linitations of the server input line length. If you need to have continuations in the line I think that the \ tells the server the command is continued on the next line.  Check the server manufacturer's site for support discussions. ROR mª¿ªm

>>> amartin_at_dlis.dla.mil 11/15/01 12:55PM >>>
If I have the following two-line sql statement in a file:

SELECT A,B,C FROM TABLE1
WHERE A=1; and want to create a single line, I could use the following sed script:

/[^;]$/{
 N
 s/\n/ /
}

which would produce:

SELECT A,B,C FROM TABLE1 WHERE A=1; What would my sed script look like if there were 2, 3, or even 4 continuation lines (unknown number of lines)? Note that the file is too large for vi.
Any good UNIX sites where I could post UNIX questions?

Thanx,

Alan Martin
Principal Consultant
Defense Logistics Information Service
amartin_at_dlis.dla.mil

--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Ron Rogers
  INET: RROGERS_at_galottery.org

Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051
San Diego, California        -- Public Internet access / Mailing Lists
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
Received on Thu Nov 15 2001 - 14:07:20 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US