print one line of output to two lines - Possible or not?

Hi all

Could you please tell me is below possible approach or not?

Requirement: -.

I want to display the result in two rows, with the data in a row.

Example:

Select l_output1, double l_output2;

Then my output should appear as:

l_output1

l_output2

(Not as l_output1 l_output2)

I tried like below, but it does not.

Select l_output1. Chr (10) | the double l_output2

but it is still printing on the same line. (Chr (10) for the new power line)

Thanks in advance.

Kind regards

UVA

Simply replace the spaces with a jump of line as:

SQL > select REPLACE ('abc def GHI ',' ', 10 double;)

REPLACE('AB)

-----------

ABC

def

IGS

The above output is sqlplus in Unix, other tools may appear differently, but line breaks will be there.

John

Tags: Database

Similar Questions

  • HP deskjet 5150 does only print one line at a time

    My deskjet 5150 worked very well until another paper went through and stuck.  I was able to pull the tail of the outside before he completely crossed, thus eliminating the document.  After that, the printer went from normal to print to print one line at a time, with long breaks between the two, such that a journal would take several minutes to print.

    It happened before, and it seems that one of the many random things that I try finally works (striking out the cartridges, etc.), or he decides to forms and works correctly at some point anyway.  I don't know what is the actual active ingredient.  However, it has recovered from such behaviour several times before.

    I should mention that this malfunction/recovery routine began and most recently occurred when connected to my old iBook G4 Mac computer.  I have just this week has changed to a MacBook Pro, the latest operating system running, and the printer is not different.  It prints one line at a time.

    I don't know when this has happened to the other HP printers that I had in the past, I just put away, not realizing that they still had plenty of life in them left.  This one, I have "revived" several times already.  But how, I'm not sure!

    You have any ideas?

    Hi there chitownchic,

    I suggest paper paper jam for the troubleshooting steps that are recommended for the jamming problem you had. Generally a very good cleaning of the rollers will help a little, and also a power reset.

    "Paper jam" Error Message on the computer

    I hope that helps!

    Have a great day, thanks for posting in the community

  • Test page will only print a line of text, not the full page

    Hi all

    I am new to the forum and have joined today.

    I have HP Deskject 1510 printer running system 8.1 Win.

    I installed my system with a driver update from HP to enable victory support 8.1. But now I can't find my tab driver in Device Manager. The printer works fine, but only

    Hi Kindji,

    Welcome to the HP Forums!

    I understand that you are able to print, but the test page will print only one line of text and not the whole page. Please start with the print and Scan doctor to help use to identify and possibly solve the problem.

    Printing HP and doctor Scan is a free utility (tool) that allows to quickly solve common printing, scanning and connectivity problems, including but not limited to:

     
  • My deskjet d1455 printer only prints one line at a time, every 30 seconds

    How can I fix?

    This is caused by the failure of one of your cartridges.  Remove the black print cartridge and print a test page.  The printer prints at a normal speed?  Is therefore the black cartridge was the issue and needs to be replaced.  If it isn't then, put the black back cartridge in and remove the color cartridge and the test page printed.  If the printer now prints speed the color cartridge is responsible and must be replaced.

  • Need to align the two radio buttons in one line

    Hi all

    In my BlackBerry Application, I have a part of the user interface where I need to align two radio buttons in one line.

    I used the code to design the user interface, but the two radio buttons below are overlapping.

    SerializableAttribute public class BBSettingsScreen extends form {}

    Rbg RadioButtonGroup = new RadioButtonGroup();

    RadioButtonLayout raButtonLayout = new RadioButtonLayout();

    raButtonLayout.add (new RadioButtonField ("ONE", rbg, true, RadioButtonField.FIELD_RIGHT));
    raButtonLayout.add (new RadioButtonField ("TWO", rbg, false, RadioButtonField.FIELD_LEFT));

    Add (raButtonLayout);

    SerializableAttribute public class RadioButtonLayout extends Manager {}

    public RadioButtonLayout() {}
    Super(Manager.VERTICAL_SCROLL |) Manager.RIGHTMOST);
    }

    protected void sublayout (int width, int height) {}
    Field field;
    get the total number of areas falling under this Manager of
    int numberOfFields = getFieldCount();
    int x = 0;
    int y = 0;
    for (int i = 0; i)< numberoffields;i++)="">
    field = getField (i); get the field
    setPositionChild(field,x,y); set the position of the field

    layoutChild (field, width, height); Spread the field
    x += 30;
    }

    width = 70;
    height = 20;

    setExtent (width, height);
    }

    }

    }

    Please help on this...

    Thank you & best regards

    Chintada Ravikumar

    Try this:

    RadioButtonGroup rgb=new RadioButtonGroup();
    HorizontalFieldManager hr1=new HorizontalFieldManager(FIELD_HCENTER);
    RadioButtonField radioOne=new RadioButtonField(" RadioOne",rgb,true)
    {
        protected void layout(int width, int height)
        {
            super.layout(75,30);//Width and height according to the button name;
            setExtent(75,30);//width and height according to the button name;
        }
    };
    hr1.add(radioOne);
    RadioButtonField radioTwo=new RadioButtonField(" RadioTwo",rgb,false)
    {
        protected void layout(int width, int height)
        {
            super.layout(75,30);//Width and height according to the button name;
            setExtent(75,30);//Width and height according to the button name;
        }
    };
    radioTwo.setPadding(0, 0, 0, 20);
    hr1.add(other);
    add(hr1);
    
  • Syntax of content streams - two commands on one line

    Hello

    I developed PDF parser for partial application and it works for most PDF I need.

    But recently I came across the piece of code that looks like this:

    BT
    /T1 1 Tf
    12 0 0 12 21.7323 769.5831 Tm
    (A)Tj
    -0.01 Tw 11.4 0 0 12 57.7323 769.5831 Tm
    [(P)25(od )35(...)]TJ
    0.134 Tw -30.43 -1.056 Td
    0 Tw (-)Tj
    0.087 Tw T*
    
    ET
    

    There are two commands on one line (Tw and Tm, Tw and Td, Tw and Tj, Tw and T * etc.) and Adobe Reader displays PDF file very well.

    (1) how it is supposed to be threaded? First TW and Tm Tm, or seconds first (take 6 arguments and check if there is anything left) and Tw as second operation?

    (2) where this situation is documented in the PDF reference? I want to check for general handling avoid another flaw in my application.

    Thank you

    The only requirement in a content stream is that there are some 'spaces' between operators and operands.  If this space is a space, tab, line break, etc. belongs to the PDF producer.  In more recent writers of PDF, there are NO jumps line (CR/LF) and only spaces.

    (the exception to this rule is inline images)

  • HP laserjet 1536: printing problem, the document will not be printed. It will print numbers on one line on each page

    Do not print the print in the English format and symbols jumbled requests. It prints a line on a single document holding all my paper from the paper tray

    You driver is the wrong driver or it is damaged. Suggest that you turn the printer off. Now to the computer go into devices and printers and delete the printer. Now turn off the computer and turn it back on and make sure that the printer is no longer in devices and printers. Now turn on the printer and the computer should see the printer and try reloading. If she does not see if it works now. If it does not report back for further instructions.

  • Photo printing, vertical lines when you print multiple images on a page

    I went from iPhoto to Photos. Now I'm having a problem printing (HP Photosmart Premium 309 c) pages with many photos for my annual calendar. Often the picture on the right will have vertical lines. I use PS 14 items.  I did this for years and I am sure that the problem is related to Photos and the fact that my photos are now in the cloud and not on my Mac.

    I recently removed my hard drive iPhoto library - because I don't have enough space on my Air.

    Hello

    Thank you for using communities of Apple Support.

    I understand that whenever you print photos of the Photos on your Mac app, the lines appear in the printed image resulting.  The following steps will help isolate the matter with Photos or the printer itself.  To start, please print one of the photographs from the Photos app to confirm a specific photo translates into lines on the printed copy.  After seeing the photo, please export the original photo of the Photos app on your desktop, open the photo in the preview and then print this photo.

    Export pictures in their original format

    1. Select the photos you want to export.

    2. Choose file > export > export Original unmodified.

    3. Click Export.

    4. Choose where to save the exported photo files and then click Export the originals.

    Please report back with the results of these steps so that we can help you.

    Take care.

  • Single-line print multi-line TextField

    Hi all

    I have 2 TextFields on a frame in my film. What happens is, if my connection to losses of film to a server, it starts to run a timer to continue to retry the connection every 10 seconds. And what I'm trying to do is to write in one of current advance TextFields and what 'Retry' count on what we... But for some reason, I'll try to have 2 htmlText lines appear on the same line, except the second method htmlText adds new text to a line break.

    I already put the TextField on the stage to be single line and no. WordWrap, and set the text of TLF. So how could it possible to appear on separate lines 2. ? What confuses me the most, is that I updated the TextField on the stage and in the following single line (* just to see if it helped, and there no), then why he would print to a second line is spooky in my mind.

    Here is my code:

    / * There are 2 TextFields:

    *    #1. Title/header field, this text will not change.

    *    #2. Message/info field, this is the text I want to change to each loop timer

    */

    function retry_connectSocket(event:TimerEvent)

    {

    trace ("FUNCTION IN: retry_connectSocket():");

    WBDMovie.errorMsg_textField.multiline = false;

    WBDMovie.errorMsg_textField.wordWrap = false;

    Add text to the textfield 'errorMsg_textField ':

    err_string = ' # ' + myTimer.currentCount + '. '. Retrying connection... "

    WBDMovie.errorMsg_textField.htmlText = "< font color ="#FFFFFF"size = '25' > < b > ' + err_string + ' < /b > < / police > ';

    Call function 'connectSocket()' to try to reconnect to the server:

    connectSocket();

    If socket.connected returns TRUE, then the connection has succeeded

    If (socket.connected)

    {

    Print the Message that the connection is successful:

    WBDMovie.errorMsg_textField.htmlText += ' < font color = "#00FF00" size = '25' > connection successful! " "< / police > ';

    } else {}

    Print the Message saying that the connection has failed:

    WBDMovie.errorMsg_textField.htmlText += ' < font color = "#FF0000" size = '25' > Connection Failed! "< / police > < br / > ';

    }

    }

    No idea why it is printing several lines? In addition, any ideas for why the "BOLD" < /b > < b > tags do nothing no more?

    Any ideas or suggestions would be greatly appreciated!

    Thanks in advance,

    Matt

    Have you tried to use a regular dynamic TextField instead of a TLFTextField?

  • Black Print skip lines at random

    When I print a document, a few lines in the whole of the page (at random), the top characters are not inking.  Another words, I demi-caracteres (only the bottom half) across the entire line.  I have on OfficeJet Pro L7580 and I replace the cartridge with a 88 HP.  I also cleaned the printheads several times and also to align the printheads several times.  Sometimes, I received a message "Unable to align" when I run this task.  All other colors are working properly.  It's only the black print on the page. Please notify.  I do not often use this printer, but I need to work properly.  Thank you!

    All the previous suggestions don't have for my Deskjet 1050 j410 printer. What does not work, for some stupid reason, is unplug the printer, then hold down the Cancel button and the color button while plugging the printer into (This restores the default printer). With each restoration test page jumped lines less until the 6th or 7th reset when it was finally clear.

    A strange but effective solution however. I hope this helps.

  • Print rule lines in OneNote?

    Hi, I would ask if this is someone who knows how I can print rule lines in onenote. Because I have not found this option to print rule lines.

    Please help me,

    Best regards
    S

    Sexy Hello

    I use Microsoft Office and not much experience with OneNote, but before you wait here for a response test see the OneNote Help file. You might find something there.

  • DeskJet D4360: why my printer prints some lines in italics?

    I recently put in a new printer cartridge and now the printer prints some lines randomly on the page in italics.  Why?  How can I fix it?

    Hi Ba-rk , thanks for getting back to me!

    I hope you had a great weekend!

    If you make a copy of something from the glass as opposed to aprint without italics, the copy comes out with italics?

    I suggest to remove the cartridges and perform a power reset.  Unplug the power cord from the printer and the power outlet, then wait 60 seconds. After 60 seconds, plug back in the printer. Make sure that you connect the printer directly to a wall outlet. Make sure to bypass any surge protector or power bar.

    I recommend also to download and run the HP print and Scan doctor.

    Please hold me!

  • HP C4280 print alternate lines of light/dark of a document

    New installation cartridge ink but continues to print alternating lines

    This could be something in the software, you are printing from or system of ink from the printer itself.

    There is a document to help resolve lines or streaks in impressions located here.

    I hope this helps.

  • 114 the desire doesn't print all lines of text

    When you print an email (TEXT), my desire 114 printer prints all lines of text with the same quality.  Some of the lines are darker than others, some lines are barely readable or white, while some lines print only half the size of the font.  When I print a report of State printer, a few lines (like the lines 3, 6, 9 for example) do not print.

    I cleaned up, second level cleaned and aligned the printer several times without success.  Because it's consistent printing for printing when PRINTING TEXT, it almost seems like the printer receives no signal for some lines or print on paper areas.  If a JPG or image is printed, it prints in full.

    Any ideas?

    Thanks for your answer, but after all my attempts to clean the printer heads and firmly reinstall the black cartridge has solved my problem.  I think that the resettlement is actually what solved my problem because like I said in my previous post, it appeared that the printer would not print a few lines compared to others.

    Thanks again for your response.

  • WHEN PRINTING MY PRINTER DELL A940 PRINTER, IT PRINTS BLUE LINES

    I OWN A DELL A940 PRINTER AND WHEN I PRINT, IT PRINTS BLUE LINES., WHAT IS THE CAUSE FOR THIS? THANKS TO ANYONE WHO HELPS ME., VERY APPRECIATED, STEVE

    Hi STEVE,.
     
    From my research, this issue seems to be common for this model of printer.
     
    Replace the cartridge of the printer to resolve the issue. Here's a post that responds to this problem of Dell support. Check if the post will help you also.

Maybe you are looking for

  • the user of the simultaneous listing licenses

    Hello We have 5 tiara concurrent license. Now is mounted in use and I find myself being frequent "who uses licenses" so as to address users who may have checked out a license but are not needing more. Or not as desperately as another user. I tried to

  • Upgrading CPU for a CQ62-220US

    Can you tell me what the fastest CPU I can use in this laptop. Product #WQ850UA #ABA, Windows 7 Home Prem, USA.

  • Blue screen after Microsoft Update

    Hi-On Tuesday morning, 25/08/09, Microsoft began offering the KB973879 update.It seems that some people get the bluescreens may be responsible for this update.While this issue is being developed on, you can run a system restore.Please read this docum

  • U2415, artifacts monitor after power off for a period of time. Solved by allowing the DP1.2

    U2415 - artifacts monitor after power off for a period of time I'm running Win 8 Pro 64 bit, Asus GTX 760. Connected to the U2415 using the miniDP to DP cable. It is: after turning off my monitor for a period of time (PC fixed IT), 2 hours or more, a

  • How to call another application (compose e-mail)

    I want my application have menu to call the Messaging Application, as in the SMS and MMS application, there menu "compose Email". How to do this? Thanx