This should be simple but I've spend the whole day without success.
Portion of code:
TABLESPACE reference
NOLOGGING
STORAGE ( INITIAL 10M
NEXT 10M
PCTINCREASE 0
) BUILD IMMEDIATE
AS
All in the world I want to find is:
STORAGE ( INITIAL 10M
NEXT 10M
PCTINCREASE 0
)
Then I would replace it with nothing.
It would be simple if all was in a single line but multiple lines are a problem. Im not sure how to represent this because the clauses and number of lines between both parenthesis are variable. Just want to find the next ')' after the first 'STORAGE ('.
Thanks in advance!!
Portion of code:
TABLESPACE reference
NOLOGGING
STORAGE ( INITIAL 10M
NEXT 10M
PCTINCREASE 0
) BUILD IMMEDIATE
AS
All in the world I want to find is:
STORAGE ( INITIAL 10M
NEXT 10M
PCTINCREASE 0
)
Then I would replace it with nothing.
It would be simple if all was in a single line but multiple lines are a problem. Im not sure how to represent this because the clauses and number of lines between both parenthesis are variable. Just want to find the next ')' after the first 'STORAGE ('.
Thanks in advance!!