Add a different character to the last line of a loop

Hello

I'm trying to use some pl/sql to generate a copy of RMAN script. After each line must be comma, but the last line of the loop should have a semicolon to complete the statement. How can I do?

In the example below, the copy for controlfile 3 should be a semicolon, not a comma:

run
{
SHUTDOWN IMMEDIATE
STARTUP MOUNT
COPY
DATAFILE 1 to ' / u20/oraflash/ORCL1/dbcopy/system01.dbf',
DATAFILE 2 to ' / u20/oraflash/ORCL1/dbcopy/undotbs01.dbf',
DATAFILE 3 to ' / u20/oraflash/ORCL1/dbcopy/drsys01.dbf',
4. FOR DATAFILE ' / u20/oraflash/ORCL1/dbcopy/example01.dbf',
5. FOR DATAFILE ' / u20/oraflash/ORCL1/dbcopy/indx01.dbf',
DATAFILE 6 to ' / u20/oraflash/ORCL1/dbcopy/tools01.dbf',
DATAFILE 7 to ' / u20/oraflash/ORCL1/dbcopy/users01.dbf',
DATAFILE 8 to ' / u20/oraflash/ORCL1/dbcopy/xdb01.dbf',
CONTROLFILE CURRENT FOR ' / u20/oraflash/ORCL1/dbcopy/control01.ctl',
CONTROLFILE CURRENT FOR ' / u20/oraflash/ORCL1/dbcopy/control02.ctl',
CONTROLFILE CURRENT FOR ' / u20/oraflash/ORCL1/dbcopy/control03.ctl',
*;*
ALTER DATABASE OPEN
}

My script is:

Set serveroutput on encapsulated format
Set feedback off

coil db_copy.rcv

declare
cursor df is
Select
file No.,
substr(Name,29,50) name
Of
v$ datafile;
CF cursor is
Select
substr(Name,27,50) name
Of
v$ controlfile;
BEGIN
DBMS_OUTPUT. ENABLE (2000);
DBMS_OUTPUT. Put_line ('run');
DBMS_OUTPUT. PUT_LINE('{');
DBMS_OUTPUT. PUT_LINE (' ' STOP IMMEDIATELY ');
DBMS_OUTPUT. PUT_LINE ('STARTUP MOUNT');
DBMS_OUTPUT. PUT_LINE ('COPY');
for dfbkup in the loop of the df
dbms_output.put_line (' DATAFILE ' | dfbkup.file #|)
' TO ''' || ' / u20/oraflash/ORCL1/dbcopy /' | dfbkup.name | " «, ») ;
end loop;
for cfbkup looping CF
dbms_output.put_line (' CURRENT CONTROLFILE ' |)
' TO ''' || ' / u20/oraflash/ORCL1/dbcopy /' | cfbkup.name | " «, ») ;
end loop;
DBMS_OUTPUT. PUT_LINE (';');
DBMS_OUTPUT. PUT_LINE ("ALTER DATABASE OPEN");
DBMS_OUTPUT. PUT_LINE('}');
end;
/

spool off

Use a combination of dbms_output.put and dbms_output.put_line. PUT puts data into the buffer, but is not out then PUT_LINE adds data to the buffer and exits.

firsttime := true;
for cfbkup in cf
loop
  if not firsttime
  then
    dbms_output.put_line(',');
  end if;
  dbms_output.put(' CURRENT CONTROLFILE' || ' TO ''' || '/u20/oraflash/ORCL1/dbcopy/' || cfbkup.name );
  firsttime := false;
end loop;
dbms_output.put_line(';');

Tags: Database

Similar Questions

  • multicolumn ListBox scroll down to the last line - with AutoSize on

    Hello world:

    I have a question about scroll to the last row of a listbox multicolumn with a small twist: automatic resizing line Heght is on.

    I checked this point - listbox multicolumn - scroll down to the last element - but if one or several lines are automatically resized to have more than one line, then the actual number of visible lines differs from the numrows and the calculation ends up incorrect.

    Has anyone found how to do this?  If there is a property only to find the heght of a line in lines...

    Thank you!

    I developed what I think it's a solution to the test.  It is based on adding the line heights, in pixels, of the last row back, until it is greater or equal at the height of the content area of Listbox MC, also in pixels.  Add-on for the upper left row to display because the last line displayed can be split.  Thus, there is always an empty line at the bottom (which is the only way to ensure that the last message is completely visible).  Because of the way that LabVIEW scrolls lined with several lines, there may be several blank lines on the bottom.

  • How can I update the last line in a file.

    Hello

    I need to add text that should be on the 2nd last line of a text file. I get the last line using RandomAccessFile and surroundings,
            fileHandler.seek(fileHandler.length()-1-lastLine.length()-1);
            
            fileHandler.writeUTF("last_line\r"+lastLine.replaceFirst("0x00", "0x80"));
    updated the code above, I'm trying to add the text to the last line. But instead of add, the above code simply replaces the last line.
    How to solve this problem?

    BR
    Umer

    Just by adding a single line to rewrite the entire file may not be a good idea eapscially when the file is in MBs. so that is the reason why I use RandonAccessFile,.

    You don't know that? HDs store files on several trays at the same spot on the Board, so you won't lose anything in rewriting.

    I have also an other question. In other words, how I can I know the last line is achieved using PrintWriter?

    Steps to follow:
    1. read the entire file into a string
    2. parse the string by using the String.lastIndexOf ("\n") to the last character of line break.
    3. use printwriter to write the string up to the last line (use string.substring), then give your new data, and then enter the second part

    >

    BR
    Umer

  • Unicode character on the command line

    I have a folder that contains a non-ASCII character, "registered sign" (®), which can be typed in a Terminal by using the-r option.

    It is U + 00AE, and as an 8-bit character, it is 174 decimal. I want to be able to enter this character on the command line without

    typing Option, because I have to build a Terminal command using an application that

    is not respectful of Unicode. So option-r helps me create a string that contains this character.

    For example, in the Terminal, I made a folder in ~ with as its name in full (I typed a r while pressing the option key):

    > mkdir ~ /.

    I can list help

    > ls ~ /.

    but I have to be able to do so * without using any modifier key * (as option).

    I thought I could use something like (after cd ~)

    > ls \302\256

    or

    > ls \u00AE

    or

    > ls \xc2\xae

    but I could not do the shell to interpret what I type as registered r symbol. Everything what I enter is interpreted

    literally as individual characters rather that, for example, the \xC2 is considered a single character. I also tried different combinations

    quotes as double the backslash, but I continue get "No such file or directory".

    How can I represent this character on the command line without modifier keys? I'm on El Capitan, OS X 10.11.2, running bash 3.2.

    Have you tried zsh instead of bash?

    I think bash supports \u starting only 4.2

  • SQL to bring the last line and the just previous row in the table

    Hi all

    I have a table of orders, where a serial number can be booked with different number several times over several days.

    Requirement is to bring the last order (based on the date of creation) number associated with this serial number and just previous order number and data in the format below.

    Last order numberSerial numberReservation locationNo bookingPrevious order numberSerial numberReservation locationNo booking

    It is essentially to generate the report that a reserved serial number with how many times with different orders and report must contain details of order two in a line.

    Kind regards

    You asked for the last line, and you have not provided data of the example or the expected results, so you get what you asked for.

    You may be looking for data to be partitioned on another value, for example

    SQL > ed
    A written file afiedt.buf

    1. Select deptno, ename, empno, mgr, hiredate, prev_empno, prev_ename, prev_mgr, prev_hiredate
    2 starting at)
    3. Select deptno, ename, empno, mgr, hiredate
    lag (empno) 4, over (partition by deptno arrested by hiredate) as prev_empno
    lag (ename) 5, over (partition by deptno arrested by hiredate) as prev_ename
    lag (mgr) 6, over (partition by deptno arrested by hiredate) as prev_mgr
    lag (hiredate) 7, over (partition by deptno arrested by hiredate) as prev_hiredate
    8, case when hiredate = max (hiredate) on (deptno partition) then 1 0 otherwise fine as max_hiredate
    9 of PEM
    10       )
    11 * where max_hiredate = 1
    12.

    DEPTNO EMPNO, ENAME MGR HIREDATE PREV_EMPNO PREV_ENAME PREV_MGR PREV_HIRED
    ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ----------
    10 7934 MILLER 23/01/1982 7782, 7839 KING 17/11/1981
    20 7876 ADAMS 7788 23/05/1987 7788 SCOTT 7566 04/19/1987
    30 7900 JAMES 7698 03/12/1981 7654 MARTIN 7698 28/09/1981

    who is the last disc, by Department, as well as the previous within the same Department.

  • How to remove the last line of Utl_file

    Hi I have a requirement to write the output to a file. But everything I try the last line is coming as white. I can't understand why UTL_file last blank line as null. Is aby wat to fix this problem?

    /

    Declare

    Lfilehandler Utl_File.File_Type;

    Lfilepath varchar2 (100);

    Varchar2 (100) Lfilename: = "TESTFATCAFILEGEN.txt";

    Lhead VARCHAR2 (2000);

    Begin

    Dbms_output.put_line (' started read directories ");

    SELECT Filepath

    IN Lfilepath

    OF Interfacefileformathdrtbl

    WHERE Interfaceid = "FATCAPREXTFEED";

    Dbms_output.put_line ('found directory');

    Lhead: = ' this is a test generated file to test if the generation of the file that is happening or not. "

    Lfilehandler: = Utl_File.Fopen (Lfilepath, Lfilename, 'W');

    Utl_File.PUTF (Lfilehandler, Lhead |) '\n');

    Utl_File.fclose (Lfilehandler);

    Dbms_output.put_line ('generation of the file is complete");

    exception

    While others then

    Dbms_output.put_line ('down in the generation of file');

    Dbms_output.put_line ("sqlerr" |) SQLERRM);

    End;

    /

    UTL_FILE adds always new line at the end of the file if you use text mode. You must use the byte mode:

    Declare

    Lfilehandler Utl_File.File_Type;

    Lfilepath varchar2 (100);

    Varchar2 (100) Lfilename: = "TESTFATCAFILEGEN.txt";

    Lhead VARCHAR2 (2000);

    Begin

    Dbms_output.put_line (' started read directories ");

    SELECT Filepath

    IN Lfilepath

    OF Interfacefileformathdrtbl

    WHERE Interfaceid = "FATCAPREXTFEED";

    Dbms_output.put_line ('found directory');

    Lhead: = ' this is a test generated file to test if the generation of the file that is happening or not. "

    Lfilehandler: = Utl_File.Fopen (Lfilepath, Lfilename, 'WB');

    Utl_File.Put_RAW (Lfilehandler, UTL_RAW. CAST_TO_RAW (Lhead));

    Utl_File.fclose (Lfilehandler);

    Dbms_output.put_line ('generation of the file is complete");

    exception

    While others then

    Dbms_output.put_line ('down in the generation of file');

    Dbms_output.put_line ("sqlerr" |) SQLERRM);

    End;

    /

    SY.

  • InDesign CS6 fully justify won't fit on the left the last line of a paragraph.

    As Indesign CS6 does not seem to justify the last line of each paragraph to the left when I put it to justify fully in my paragraph styles is there a way I can automatically add a space without paragraph at the end of each paragraph?  The text for the book, I formatted is all part of a text as it has been imported the document of my client.  So I can't us the end of the story to rinse.  Help...

    It is withdrawal and spacing...

  • View the last line of a JTextArea wrapped in a get

    I use a JTextArea to permanently display the generated text of asynchronously and sporadically. The JTextArea is encapsulated in a get. When new text is added to the JTextArea I need to always show the last line of text. The only solution I've found so far is to find the length in characters of the text and before the JTextArea #setCaretPosition (). I can't believe that this is preferable, because to find the character length means first to convert the content of the JTextArea in chain!

    Is there a better way to do this?

    Use the javax.swing.text.Utilities class. Method
    mutable public static int getRowStart (JTextComponent c, int OFFS)

    You can pass the length of the document and your JTextArea.

    Or just use textArea.setCaretPosition (textArea.getDocument () .getLength ())

  • OfficeJet 6500 intermittently does not print half of the last line in the lower doc

    Using an Officejet 6500 E709a connected to Windows 7 64-bit PC via ethernet LAN.  Intermittently, the printer is unable to print a part of the last line of the document.  A 12 point font for example it does not print the bottom half of the letters on the last line of text.  What software (word, excel, PDF, etc.) and it does not matter hwer on the page of the last line falls.  It occurs only on the last page of multipage documents.

    Try that and see if it helps the question:

    1. In the Windows taskbar, click the Windows icon ( ), type control printers in the Search text box and press ENTER. The Printers window opens.

  • TextStyle.lineHeight on a label causes the last line of text to be cut?

    I have the following QML (hosted in a TabbedPane, so who could possibly make a difference):

    {Of container
    {Label
    text: "Lorem ipsum dolor sit amet, adipiscing elit computer."
    Multiline: true
    textStyle.fontSize: FontSize.XLarge
    textStyle.lineHeight: 0.8
    textStyle.color: Color.Black
    }
    }

    Setting the property textStyle.lineHeight to something less than 1.0 is what I expect, except that the last line of the text of the label is cut down. Any ideas how to get around this problem, or if I do something wrong?

    Screenshot of the results, a device Dev Alpha B running OS 10.0.9.348. Results look the same on the simulator of 10.1.

    It looks like a bug. As a solution, try adding "\n" at the end of the text.

  • DESKJET 1515 DOES NOT PRINT THE LAST LINE WHEN COPYING

    I RECENTLY BOUGHT A DESKJET PRINTER 1515 AND WHEN I TRY TO COPY THE PRINTER, IT WILL NOT PRINT THE LAST LINE. IS THIS A FIRMWARE ISSUE?

    Hi, the 1515 margins Top: 1.5 mm; Left: 3.2 mm; Downstairs: 14.5 mm; Right: 3.2 mm.

    If you original contains data below the 14.5 mm then that would explain your question of copy.

  • C6280 sometimes cut the last line of text

    I was not able to understand this one... I do not get a margin in Word printing error, but the last line of text, even in the middle of a page the low 80% of it has failed.  It's as if the printer thinks it has reached a limit of impression, but this is no the case near the edge of the paper.  It is not just a problem with Word.  I was using Memorex, software for labeling this morning, and it's the same thing.  In this case, the omission was near the edge of the CD label stamped, but it was far from the edge of the paper.  Any help with this would be appreciated.

    It worked for me:

    1. go into your printers folder, right click on the connected network printer that you experience the problem with and select "Properties".

    2. when the Properties window opens, click the "Ports" tab

    3. at the bottom of the tab window Ports is a check box "Enable bidirectional support", uncheck the box and click 'OK '.

    now print something where you have already encountered the problem.   I think this might work for some users.

  • Tabular forms – test whether cursor/focus in the last line (Apex 5.0)

    I would like to optimize my sub fast data entry form. I have already added dynamic actions for Excel style and down navigation with up and down keys and also auto-insert new line when you press enter on the last field.

    The last thing that I want to achieve is to creata a dynamic action trigger that fires only when cursor is in the last row of tabular presentation. I tried to do that with the function. is() JS, but without success.

    Is there a way to test whether the current row (the row with focus) is the last line in the form of tables?

    Yes, look that I wanted to accomplish was that, if the cursor is in the last line (column_name1) that if the user presses THE button the last row is deleted and cursor is focused on the previous line (column_name2).

    After numerous tests that would be a DA who works for me:

    Event: Down key

    Selection type: jQuery Selector

    jQuery selector: .column_name1

    Condition: Expression JavaScript: (event.keyCode = $. ui.keyCode.UP) & (.closest("tr").is$ (this.triggeringElement) (": last-child"))

    Code:

    $(this.triggeringElement).closest("tr").remove ();

    $('input.column_name2:last').focus ();

  • [ADF, JDev 12.1.3] To run a query on the fly is always necessary to define a VO? How to get the Id of the last line inserted in a VO...

    Hallo,

    Sometimes, in the code for my application, I need to run smaller queries to retrieve data from the database.

    I wonder if for these queries, it is necessary to define a View object or if I can avoid this for example creation and execution of a VO on the fly.

    In this case I would not define a VO, given that queries will be never used to display data, but only for the internal logic.

    A use case, I want to solve it next.

    I would like to create a function to be used after validation for last inserted record by a user in a TableVO.

    For example

    Select the Id of the Table where UserId =? and Type =?

    The query should be run in a managed bean...

    public String okButton_action() {}

    OperationBinding operationBinding is BindingsUtils.getBindings () .getOperationBinding ("Commit");.

    Object result = operationBinding.execute ();

    If (! operationBinding.getErrors () .isEmpty ()) {}

    Error handling

    return;

    }

    Here, I need to:

    1. run the query to get the Id of the last inserted record

    2 call the setCurrentRowWithKey on the TableVO to update the display

    and get the Id (identity/auto-increment) than the database

    assigned to the field

    return "return";

    }

    If I can create a function that creates / runs the VO on the fly and return the value ID... It is best to create it in a class of public services or in the implementation class TableVO?

    I need to get the Id of the last line inserted since the ADF is not able to manage MS SQL Server identity fields (it seems that REFRESH AFTER INSERT cannot be used with non - Oracle DB).

    Any notice will be welocome.

    Thank you

    Federico

    The query should be run in a managed bean...

    Much better to execute the query in the template project.

    Example query: http://amit-adf-work.blogspot.com/2013/09/how-to-execute-sql-using-adf-application.html

    If I can create a function that creates / runs the VO on the fly and return the value ID... It is best to create it in a class of public services or in the implementation class TableVO?

    If you have the function that accepts the SQL as a parameter, then this should go to class util.

    Dario

  • By creating a form that has several text boxes to a single character on the same line, how can I get the cursor to go in the next text box automatically after inserting a character?

    By creating a form that has several text boxes to a single character on the same line, how can I get the cursor to go in the next text box automatically after inserting a character?

    Create a text field and use the option 'comb n characters.

Maybe you are looking for

  • Brand new Satellite A200-1VG CD/DVD disc does not?

    Everything is fine, but when I put a CD in the drive, nothing appears on my screen and it starts to make a dull sound like he's trying to play but can't. This laptop is straight out of the box. Is there anything I can try before I bring her to the sh

  • updates to window cannot get installed error code 646

    I FACED THIS PROBLEM EARLIAR ALSO AND I TRIED TO DIAGONISTIC MS SUPPORTS THE TOOL ON 03/01/10 AND ALSO MS FIX IT FOR ME TOOL ON 03/03 / 10 AND ALSO THANKS TO INSTRUCTIONS VERBAL MS ENGINEER ON 03/04 / 10, BUT NOT. FINALLY ON 11/03/10 ALL PENDING UPDA

  • POWER VAULT NX200 [GRO]

    Buongiorno, abbiamo uno degli disk hard raid danneggiato, comprarne in vorremmo uno del in sostituzione. It Service tag e: jq4m75j.e urgent dato che since he nostro sistema di sorveglianza video. Grazie thousand

  • Is it possible to upgrade a license remotely

    I want to spend a PIX515 license. The box is off site, should I really go there to achieve it - there is perhaps a cunning alternative?

  • Disappear over blackBerry Smartphones calendar items in 60 days

    I have a Curve 8330 running OS 4.5.0.186. I sync with Outlook 2007. In the synchronization options, I check "all synchronization events" or something like that. I have 3 calendars on my computer mapped to sync the BB, my personal calendar and 2 archi