Sed Help.To Search Between Pattern1 And Pattern2 Containing Certain Text


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Sed Help.To Search Between Pattern1 And Pattern2 Containing Certain Text
# 1  
Old 12-06-2008
Sed Help.To Search Between Pattern1 And Pattern2 Containing Certain Text

Hi,

Here is a sample of my Test File

$ cat TestFile1

Prompt Table DQZ_ALTER_SCHEMA_ID;
ALTER TABLE DQZ.DQZ_ALTER_SCHEMA_ID MONITORING;
ALTER TABLE DQZ.DQZ_ALTER_SCHEMA_ID STORAGE ( NEXT 3464K );
Prompt Table DQZ_ALTER_SCHEMA_ID;
ALTER TABLE DQZ.DQZ_ALTER_SCHEMA_ID
MOVE LOB (MESSAGE)
STORE AS (
TABLESPACE CLEAN_DATA1
STORAGE (
INITIAL 256K
NEXT 1384K
MINEXTENTS 1
MAXEXTENTS 505
PCTINCREASE 1
FREELISTS 1
FREELIST GROUPS 1
BUFFER_POOL DEFAULT
));
ALTER TABLE DQZ.DQZ_ALTER_SCHEMA_ID
MODIFY LOB (MESSAGE)
(
PCTVERSION 10
);

REVOKE EXECUTE ON DQZ.DQZ_FORMS_VALIDATEX FROM CLEANDATAVNDR;
REVOKE EXECUTE ON DQZ.DQZ_FORMS_REQUIREDX FROM CLEANDATAVNDR;
REVOKE EXECUTE ON DQZ.DQZ_FORMS_DEFAULTSX FROM CLEANDATAVNDR;
REVOKE EXECUTE ON DQZ.DQZ_FORMS_ALLOWEDX FROM CLEANDATAVNDR;
REVOKE EXECUTE ON DQZ.DQZ_FORMS_VALIDATEX FROM SECURITY_MASTER_RL;
REVOKE EXECUTE ON DQZ.DQZ_FORMS_REQUIREDX FROM SECURITY_MASTER_RL;
REVOKE EXECUTE ON DQZ.DQZ_FORMS_DEFAULTSX FROM SECURITY_MASTER_RL;
REVOKE EXECUTE ON DQZ.DQZ_FORMS_ALLOWEDX FROM SECURITY_MASTER_RL;
CREATE OR REPLACE TYPE DQZ."DQZ_SECURITY_OBJECT_CDS" as object (
BUS_DAYS_CNV varchar2(25),
SIP CHAR(8),
ISIN varchar2(12),
ACCRU_MONTH_DAY_COUNT varchar2(8),
ACCRU_YEAR_DAY_COUNT varchar2(8),
MAT_DT DATE,
DATED_DT DATE,
CPN_RT NUMBER,
OID_DT DATE,
CCODE varchar2(3),
EFF_DT DATE,
PMT_FREQ_CD varchar2(2))
/

End Of File

Here is my pattern filter conditions

1) Pattern Range must start with "ALTER TABLE"
2) Pattern Range ends when it finds ";"
3) Between this range i want to select all the patterns that contain pattern " MOVE "

From the above file here is what i want to select

Expected Output

ALTER TABLE DQZ.DQZ_ALTER_SCHEMA_ID
MOVE LOB (MESSAGE)
STORE AS (
TABLESPACE CLEAN_DATA1
STORAGE (
INITIAL 256K
NEXT 1384K
MINEXTENTS 1
MAXEXTENTS 505
PCTINCREASE 1
FREELISTS 1
FREELIST GROUPS 1
BUFFER_POOL DEFAULT
));

I do not mind a either a sed or an awk syntax to acheive this.Need this very urgently friends any quick response is very appreciated.

Thanks And Kind Regards,
Rajan.S
# 2  
Old 12-06-2008
Hi,

this works for me:

Code:
sed -n '/ALTER TABLE/{N;/MOVE/!d};/ALTER TABLE/,/)\;/{p}' TestFile1

HTH Chris
# 3  
Old 12-06-2008
Hi Chris,

Its giving me the below error

$sed -n '/ALTER TABLE/{N;/MOVE/!d};/ALTER TABLE/,/)\;/{p}' TestFile1
sed: command garbled: /ALTER TABLE/{N;/MOVE/!d};/ALTER TABLE/,/)\;/{p}

Thanks,
Rajan
# 4  
Old 12-06-2008
Perhaps your sed version don't support the command separator ";", try this:

Code:
sed -n -e '/ALTER TABLE/{N;/MOVE/!d}' -e '/ALTER TABLE/,/)\;/p' file

Regards
# 5  
Old 12-06-2008
Getting an error on this one too

$ sed -n -e '/ALTER TABLE/{N;/MOVE/!d}' -e '/ALTER TABLE/,/)\;/p' TestFile
sed: command garbled: /ALTER TABLE/{N;/MOVE/!d}
# 6  
Old 12-06-2008
Copy and paste following lines to a file called sedfile:

Code:
/ALTER TABLE/{
N
/MOVE/!d
} 
/ALTER TABLE/,/;/p

then

Code:
sed -n -f sedfile Testfile1

# 7  
Old 12-06-2008
Works Perfect Thanks Chris And Frank....
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Get lines which has pattern1, pattern2 and pattern3 in it

Version: RHEL 6.5 In the below text file, I want to find the lines which has the string JOHN , KATE and STEVE in it. The logic is to grep with an AND condition ie. get all lines with JOHN AND KATE AND STEVE $ cat sometext.txt PHILIP worked in HR JOHN along with KATE fixed several IT... (4 Replies)
Discussion started by: John K
4 Replies

2. Shell Programming and Scripting

Match pattern1 in file, match pattern2, substitute value1 in line

not getting anywhere with this an xml file contains multiple clients set up with same tags, different values. I need to parse the file for client foo, and change the value of tag "64bit" from false to true. cat clients.xml <Client type"FIX"> <ClientName>foo</ClientName>... (3 Replies)
Discussion started by: jack.bauer
3 Replies

3. Shell Programming and Scripting

Delete Lines : after pattern1 and between pattern2 and pattern3 using awk/sed/perl

Hi I need to delete lines from a file which are after pattern1 and between pattern 2 and patter3, as below: aaaaaaaa bbbbbbbb pattern1 cdededed ddededed pattern2 fefefefe <-----Delete this line efefefef <-----Delete this line pattern3 adsffdsd huaserew Please can you suggest... (6 Replies)
Discussion started by: vk2012
6 Replies

4. Shell Programming and Scripting

Append text to line if begins with pattern1 AND does not end with pattern2

Hello, I'm looking for sed solution to change ... <li>keyword</li> <li>keyword <li>keyword</li> <li>keyword <li>keyword</li> ... to ... <li>keyword</li> <li>keyword</li> <li>keyword</li> <li>keyword</li> <li>keyword</li> ... I.e., if lines beginning with <li> do not end with... (3 Replies)
Discussion started by: pioavi
3 Replies

5. Shell Programming and Scripting

delete part of file from pattern1 to pattern2

Hi all! How can I delete all the text starting from <string1> to <string2> in all the .txt files of the folder "FOLDER" ? Thanks a lot! mjomba ... </s> <s> <w></w> </s> <s> ... to get: (1 Reply)
Discussion started by: mjomba
1 Replies

6. Shell Programming and Scripting

Search file for pattern2 starting from occurence of pattern1

Hi folks, I have a file which contains several occurences of 2 different patterns. I need to find out the line of first occurence of pattern2 starting after the position of first occurence of pattern1. example file: aaaa pattern2 bbbb pattern1 ccc pattern2 ddd pattern1 eee pattern2... (9 Replies)
Discussion started by: sameucho
9 Replies

7. Shell Programming and Scripting

How to remove a specific line matching pattern1 and pattern2 ?

Hi, I have a file like below: . . . . Jack is going home Jack is going to school Jack is sleeping Jack is eating dinner John is going home John is eating breakfast . . . The specific line is: Jack is going home (2 Replies)
Discussion started by: salih81
2 Replies

8. Shell Programming and Scripting

SED Exclude Matches Between Pattern1 And Pattern2 Containing Pattern3 Print The Rest

Hi, From the sample file below Conditions 1) Pattern Range must start with "ALTER TABLE" 2) Pattern Range ends when it finds ";" 3) Between this range i want to select all the patterns that contain pattern " MOVE " Note : I would like to exclude the above pattern matches and print... (1 Reply)
Discussion started by: rajan_san
1 Replies

9. Shell Programming and Scripting

grep all lines from PATTERN1 to PATTERN2

Hi! From a file like this one : hello ... PATTERN1 ... lines between patterns .. PATTERN2 ... I would like to extract only the lines between patterns, probably with awk I think? Thanks a lot for your help, Tipi (5 Replies)
Discussion started by: tipi
5 Replies

10. Shell Programming and Scripting

how to delete text from line starting pattern1 up to line before pattern2?

My data is xml'ish (here is an excerpt) :- <bag name="mybag1" version="1.0"/> <contents id="coins"/> <bag name="mybag2" version="1.1"/> <contents id="clothes"/> <contents id="shoes"/> <bag name="mybag3" version="1.6"/> I want to delete line containing mybag2 and its subsequent... (5 Replies)
Discussion started by: repudi8or
5 Replies
Login or Register to Ask a Question