Dbms_output doesn't output

Hi,
Please try this in sql developer version 1.0.0.15.57
BEGIN
DBMS_OUTPUT.PUT_LINE('hi' || rpad('heyhey', 255, 'x'));
END;
Doesn't output anything, but this does.
BEGIN
DBMS_OUTPUT.PUT_LINE('hi');
END;
Both work in sqlplus. Is this a bug?
Thank you.

Not sure that this is a bug... dbms_output.put_line has a limit of 255 characters per line.
See this asktom link that explains it and gives a fix for it...
http://asktom.oracle.com/pls/ask/f?p=4950:8:::::F4950_P8_DISPLAYID:146412348066
'hi' || rpad('heyhey', 255, 'x')) would be 255 characters plus 2 equaling 257.
Error starting at line 1 in command:
BEGIN
DBMS_OUTPUT.PUT_LINE('hi' || rpad('heyhey', 254, 'x'));
END;
Error report:
ORA-20000: ORU-10028: line length overflow, limit of 255 chars per line
ORA-06512: at "SYS.DBMS_OUTPUT", line 35
ORA-06512: at "SYS.DBMS_OUTPUT", line 133
ORA-06512: at line 2
When I change the rpad to 253 the output is fine and this nasty error doesnt show up. Using SQL Developer ofcourse the whole time.
Tried this with SQL Plus 9.2 database and got exact same error.. So, like I said.. Not a bug.. Normal for at least 9.2 database.
Message was edited by:
Mark Reichman

Similar Messages

  • Macbook Pro 15-inch (Retina Display) HDMI doesn't output audio to TV

    My rMBP's HDMI port doesn't output audio through the HDMI cable to my TV. Instead, the audio plays on the laptop's speakers. I know the problem is not the HDMI cable nor the TV because my TV speakers play sound when I connect my Windows laptop via the same HDMI cable and TV jack.
    Anybody know a fix?

    I have this exact same problem, I have gone to preferences, ans selected the output as HDMI and nothing happened.  Later I went to Utilities, Audio MIDI Setup and tried to select different options to get the sound working and nothing, the volume for the HDMI was grey, disactivated, all the time.  Any new findings lately?  I have my computer fully updated.

  • My hp pav p7-1240 doesn't output to my monitor after i wake it up

    I bought a new desktop (HP Pavilion P7-1240 ) just over a month ago because my previous one died. I am still using my old monitor that works fine. The last couple days however, I have woken my computer up and it seems as though it will not output any signal to the monitor. The light turns from blue to yellow on the desktop, but my monitor light stays yellow. \
    I tried holding the power button and shutting it off and turning it back on again, but the only thing that i find will work is if I unplug the power cord from my desktop and then plug it in and turn it on again.
    Any help much appreciated.

    Hi:
    The only advise I can offer is to see if you can get Vista recovery disks for your notebook by following the info at the link below. Click on the link labeled "Order Recovery Media."
    http://h10025.www1.hp.com/ewfrf/wc/softwareCategory?os=2093&lc=en&cc=us&dlc=en&sw_lang=&product=3860...
    If the link doesn't work, you will have to call HP and order them by phone. Try either of these #'s.
    They will cost significantly less if you can get them from HP.
    800-474-6836 or  888-999-4747.
    If HP no longer has them, you can get them from this vendor at the link below for $27+shipping.
    http://www.computersurgeons.com/productdetails.aspx?ID=12898
    Pass the cost of the recovery disks on to the buyer. They will probably be happy to have a set of recovery disks for the PC.
    Paul

  • DMP 4310G doesn't output audio

    Hello experts,
    I am totally new to this support community, so my apologies if this is not the right place/tag for this question.
    We've got a number of 4310G DMPs and as our DMM is not yet operational, I decided to explore the players a little bit as standalone devices, acessing them via Web-Browser.
    The issue I am facing is that no audio is coming out of the DMP when I play videos, except for MPEG, which works fine.
    I have tried WMV, AVI and SWF, but the audio doesn't come out for none of these.
    My firmware version is 5.2.3 and I have tried outputing the audio via HDMI to a Samsung Professional display, as well as via 3.5mm audio output to a speaker.
    To make sure the audio format was suported, I loaded an MP3 file to the flash memory of the DMP and played it. All worked fine. Afterwards I embedded the same audio file into a flash project (Flash Lite 3.1, Actionscript 2.0). Worked fine on my PC, but on the player, no sound at all, only the graphics.
    Ps: I have already checked the audio parameters. They seem to be correct (50 on each channel), so I am running out of ideas on what else to check/try.
    Please, any help will be appreciated.
    Many thanks in advance.
    Ricardo

    Hello Ricardo,
    I assume you have confirmed that the Audio and Video Codec your content is using is mentioned in the data sheet below :
    http://www.cisco.com/en/US/prod/collateral/video/ps9339/ps7220/data_sheet_c78-625677.html
    Couple of Questions :
    1) Are all the DMP 4310 having this issue or only the few ?
    2) If you are having the issue with all, I would examine the content's codec first. If you believe that the content has the right codecs then I would ask you to open a TAC case for further analysis.  You can check the codec the Video is using by opening the file in VLC Player and clicking on Media Information. Or Use a Freeware for windows called as "MediaInfo" .
    3) Are you hosting the content (Video File) on a CIFS share , Internal Flash or attached USB ?
    Can you attach the MIB DUMP from the DMP to this forum so that we can take a look ?
    Procedure to collect the dump : Just paste the URL in the browser
    https://admin@password:10.0.0.1/get_param?p=*.*
    replace the "password"  with DMP's password
    and the 10.0.0.1 with the IP address of the DMP's client
    Save the output in a Text file and attach it to the forum. Also if you have the actual content that is having the issue - Please attach it to the forum too.
    Thanks,
    Sagar Dhanrale

  • Schema tool simply doesn't output anything

    In what situations does the ant schematool not output anything and simply
    let the ant script continue? I have the following piece of ant script:
    <antcall target="compile"/>
    <taskdef name="schematool"
    classname="com.solarmetric.modules.integration.ant.SchemaToolTask"
    classpathref="jarpath"/>
    <schematool action="refresh" ignoreErrors="true">
    <config ConnectionDriverName="${project.db.driver}"
    ConnectionUserName="${project.db.uid}"
    ConnectionPassword="${project.db.pwd}" ConnectionURL="${project.db.url}"
    LicenseKey="LICENSE KEY CENSORED" SynchronizeSchema="false"/>
    <fileset dir="${project.build.outputDir}">
    <include name="**/*.jdo" />
    </fileset>
    <classpath>
    <path refid="jarpath"/>
    <pathelement location="${project.build.outputDir}"/>
    </classpath>
    </schematool>
    When I change one of the ${project} settings to a non-existent property the
    tool starts screaming hell and murder that it can't connect to the database.
    However in normal execution the schematool doesn't do anything. It doesn't
    even tell me it's refreshing anything.
    Does this mean that it somehow can't find my jdo-files? I've passed exactly
    the same fileset and classpath into jdoc and it CAN find my .jdo's and
    classes.
    Love to hear from ya,
    Martin van Dijken

    In article <[email protected]>, Martin van Dijken wrote:
    The night must have done my computer some good or something.When all else fails, trying again in the morning is always a good
    solutin :)
    All of a sudden
    the tables are being created. I did have my logging for schema creation a
    little too quiet so it didn't output anything. Maybe in fidgeting with
    log4j.properties I corrected something else as well.
    Anyway problem solved,
    Thanks
    "Marc Prud'hommeaux" <[email protected]> wrote in message
    news:[email protected]...
    Martin-
    Does this mean that it somehow can't find my jdo-files? I've passed
    exactly
    the same fileset and classpath into jdoc and it CAN find my .jdo's and
    classes.Most probably that is what is happening.
    I hate to second-guess, but are you sure the fileset for the jdoc and
    schematool tasks are exactly the same?
    Also, if you enable trace-level logging for all of Kodo's categories, do
    you see any output at all from the target?
    In article <[email protected]>, Martin van Dijken wrote:
    In what situations does the ant schematool not output anything and
    simply
    let the ant script continue? I have the following piece of ant script:
    <antcall target="compile"/>
    <taskdef name="schematool"
    classname="com.solarmetric.modules.integration.ant.SchemaToolTask"
    classpathref="jarpath"/>
    <schematool action="refresh" ignoreErrors="true">
    <config ConnectionDriverName="${project.db.driver}"
    ConnectionUserName="${project.db.uid}"
    ConnectionPassword="${project.db.pwd}" ConnectionURL="${project.db.url}"
    LicenseKey="LICENSE KEY CENSORED" SynchronizeSchema="false"/>
    <fileset dir="${project.build.outputDir}">
    <include name="**/*.jdo" />
    </fileset>
    <classpath>
    <path refid="jarpath"/>
    <pathelement location="${project.build.outputDir}"/>
    </classpath>
    </schematool>
    When I change one of the ${project} settings to a non-existent propertythe
    tool starts screaming hell and murder that it can't connect to thedatabase.
    However in normal execution the schematool doesn't do anything. Itdoesn't
    even tell me it's refreshing anything.
    Does this mean that it somehow can't find my jdo-files? I've passedexactly
    the same fileset and classpath into jdoc and it CAN find my .jdo's and
    classes.
    Love to hear from ya,
    Martin van Dijken
    Marc Prud'hommeaux [email protected]
    SolarMetric Inc. http://www.solarmetric.com
    Marc Prud'hommeaux [email protected]
    SolarMetric Inc. http://www.solarmetric.com

  • HDMI audio doesn't output to AV receiver

    - 2013 Mac Book Pro Retina 15
    - OSX 10.9.4
    - Pioneer SC-1522K receiver
    - Panasonic AE-8000 projector
    I have problem with my hdmi audio output to my receiver after upgrading to Mavericks.  If I connect my MBP to the receiver, my receiver will appear as an output in my sound preference setting for me to select in addition to the "Internal speaker".  However, whenever my projector(connect to the receiver as an output) is turned on, my receiver will disappear in the sound output selection. So the Video is output to the projector but the audio can only be played by the MBP instead of the the receiver. Before I upgraded to Mavericks, the video is output to the projector and the audio is output to the receiver. 
    I tried to use my Dell laptop and it works fine.  The video is output to the projector and the audio is output to the receiver.
    Can someone help on this please?

    HDMI is sort of "finicky"  .  try connecting to a different TV, or with a different cable.  Also turn either device on and off a time or too.

  • I can't believe ATV doesn't output @ 24p......

    ......If it did it would simply be the best on demand streaming device on the market.
    In it's current format it is, for me, completely unuseable. I understand that some people are not bothered by it, but watching a film without dropped frames every second is a must for me in order to enjoy it. My BD player outputs at 24p, my Windows PC (with the right graphics card) outputs at 24p and the Roku 3 media player also outputs at 24p.
    If Apple brings 24p to the table, coupled with the absolutely gorgeous GUI, then it will be a hands down winner - it's as simple as that.
    Just making my thoughts known, would be interested to know if anyone else agrees or sees any reason why 24p shouldn't or wouldn't be included on the next generation of ATVs.
    Jarv

    in itunes click file-add file/folder to libary this will import your mp3's and convert to acc's to be played on ipod touch for videos follow the same procedure but once imported click filim-choose one of your videos (click on it) and click advanced create ipod/iphone version.Pictures can be automatically synced when you plug in your ipod touch chose your device and click the photos tab then chose automatically sync photos and chose a folder to import the photos from
    aaron

  • When I strike keyboard it doesn't output what is suppose to be

    the keyboard works fine in console environment, but when it goes to GUI, strange thing happens, for example, if I want to push "R" key, it outputs " T ", if I push "G", it outputs "H", exactly one letter shift. I don't know what's wrong at beginning I thought I chose wrong keyboard type, but after I tried several types (sun type, IBM thinkpad type, ...), the problem still lies there. any suggestion??
    thank you

    The process can take a few seconds to close. Sometimes you need to use Task Manager.

  • HD 7100 1 STB doesn't output thru HDMI

    Hi, All. 
    Just received HD 7100 1 STB and after successful activation I can not access the STB setup menu by following the instructions in the manual which calls for connecting the TV and STB via HDMI,  turn off the STB and manually press Menu on STB while leaving TV on.....then the Menu is supposed to show on the TV. No menu shows on the TV regardless of what format the TV is config'd to receive. I can access the STB in the regular FIOS menu and config the video settings but no where is there a setting for activating HDMI output from the STB. I am only able to receive video by connecting the tv  to the STB via coax. Am I missing a step or do I possibly have a defective STB? I do receive an HD signal using coax but I would sure like to connect using HDMI.
    Thanks,
    RichC426
    Message Edited by RichC426 on 12-28-2008 05:40 PM

    RichC426,
    First, I don't believe you are getting a true HD picture via coax from the STB. HD signals are only sent via the HDMI and component cable connections.
    This may be a silly question, but have you changed the "input source" or whatever they call it on your TV? Getting the input via the coax is one source, the HDMI input is another source, and you need to change to that source. I don't think any TVs will automatically switch, otherwise you could not have a different device inputting live to the TV at the same time.
     And, if you can't get the HDMI to work, try the component cable option. You need five cables, three for the video and two for the sound.
    Justin
    Verizon FiOS TV, Internet, and phone
    IMG 1.6.0, Build 06.89
    Keller, TX

  • XSL doesn't output markup in XML file

    Hi all.
    I'm developing a webapp that will allow me to post news about the product I manage.
    This is a small part of the portal I'm building for the product.
    So far I've managed to implement a very nice pattern that implements a clear separation between data, logic and presentation using xslt transformations, EJB's to access database data, servlets and some util classes to do the cleaver stuff.
    With the news webapp I want to be able to post some news in a formatted manner.
    My idea was to use html tags along the news content everytime I felt I should highlight something, or indicate a web link, etc.
    Now I realize that this is not so simple as I supposed it would be.
    I ran some simple tests to this idea and noticed that the parser 'eats' html tags I've put in the xml file.
    For example, with a xml file similar to this:
    <?xml version="1.0" encoding="iso-8859-1"?>
      <contacts>
        <contact>
          <name><b>Pedro Gaspar</b></name>
      ...and a xsl file containing, somewhere:
    <xsl:value-of select="contacts/contact/name"/>I get the output "Pedro Gaspar" in the browser.
    If I escape the markup characters, I get them as text in the browser so the markup won't work either.
    I have a solution for this and that's having the servlet produce the html output itself through out.println(...) lines but I'd rather not go that way and mantain a single architecture in the entire portal.
    I also tried to use '[' and ']' instead of real markup and use the XPath function translate(str,"[]","<>").Didn't work either.
    I thought that was the way this posting funcionality at java.sun.com worked but I guess not.
    Right now I feel I would rather prefer to have plain text in my posted news than having them in a more beautiful format but through html embedded in servlets.
    If someone knows how can one pass html tags to the bowser using xslt transformations, please advice.
    Thanks!

    <xsl:value-of select="x"/> produces a string that consists of all text nodes in x.
    <xsl:copy-of select="x"/> produces an exact copy of x.
    Go to http://www.zvon.org/ for more information like this.

  • Gcc doesn't output UTF-8 on a bash terminal

    Hello,
    I am running g++ with a peace of source code on my TTY1 which uses bash,
    g++ shows the warnings, errors and problems but instead of ' or " or ` I see only "boxes".
    Example, like it should be:
    [peter@fedora ~]$ g++ -o test test.cpp
    test.cpp: In function 'int Whathappens()':
    test.cpp:24: error: expected ';' before '}' token
    LOCALE="en_US.UTF-8"
    But on my arch-box I got
    $ g++ -o test test.cpp
    test.cpp: In function [box]int Whathappens()[box]:
    test.cpp:24: error: expected [box];[box] before [box]}[box] token
    LOCALE="en_US.UTF-8"
    If I set "en_US.iso88591" everything is fine, but that is not a solution
    Is this a problem of Bash or a problem of GCC?
    Please help me.

    Okay.
    I switched to font to LatArCyrHeb-16.psfu.gz (I don't know the font, but fedora use a smiliar)
    I really looks like, that ArchLinux is using by default a non UTF-8 font?!
    <edit>
    It is 8x16 default psfu, should be utf8 aware but doesn't look like...
    Last edited by hoschi (2010-08-15 19:06:59)

  • GPTR doesn't output pulses

    I'm controlling GPCTR0 on a PCI-6035E card with software (Labwindows) that has it send out a single logic pulse. In the past month, the counter has gone from working fine, to outputting pulses of about .1V, to not pulsing at all. I've tried switching to counter 1, to no avail. I've also run the online diagnostic on the PCI card, and it passes alll of the tests. What's going on?

    perhaps your VI may be corrupt. If it passes all the diagnostics and the other counter does the same, it is most likely a software problem. Perhaps your VI may be corrupted or something in the code is wrong. I think it would be helpful to see the code you are using to generate this pulse.
    Derek

  • Output file from ABAP program

    I am using the program Z_SAP_HIERARCHY_DOWNLOAD to output a hierarchy in BW to a specified drive. It works fine when I go to SE38 and run it. However, when I run it from a process chain, it doesn't output the file. How can I generate the output file by running the program from a Process Chain? Thanks.

    Hello Uday,
    i suppose if you run the program within a process chain it will be started
    in a background process. All downloads via the SAPGUI onto your local
    PC (or network drive) are not possible in the background because there is no
    connection to your PC during the excecution of the report in the background.
    Try to save the download on an accessible file system on the application server
    and download it from there afterwards.
    Which function module is used to download the data (GUI_DOWNLOAD or the older version WS_DOWNLOAD) in your report?
    To save data on the application server use the ABAP statements
      OPEN DATASET filename FOR OUTPUT    -> for creation of file
      TRANSFER record TO filename                  -> for transfer of one record
      CLOSE DATASET filename                        -> for closing the file
    Regards,
    Ralf Matthies

  • Output Timecode to DSR-45

    Hi All,
    I'm trying to figure out how to output timecode to my Sony DSR-45 DVCAM deck. I know FCP doesn't output TC over firewire, so I purchased the Keyspan USA-28X to connect the RS-422 deck control to a USB port. I have no problem capturing video and controlling the deck using this method, but I still can't output the darn TC.
    For example, if I try to Black and Code a tape, the system just blacks a tape with the constant TC of 00:00:00:00.
    Any suggestions of how I can fix this?
    Thanks.

    Firewire out thru DV isn't broken...it wasn't supposed to be there in the first place. It isn't accurate after a long output. Which is why I only use it to black a tape for a minute or two.
    NO system should send out timecode. The way I have always done things is to black a tape striping timecode using the deck to preset the code. Either the whole tape and then insert edit, or the first couple minutes then set the deck to generate new code as I Assemble Edit. The deck manages the code, not the NLE.
    Even with my little fix that uses SimpleVideoOut, I only black the first few seconds of the tape...then I let the deck regenerate the code. This is because the deck doesn't allow me to set a start timecode (the similar model JVC DVCAM deck does...a VERY useful feature).
    TC to DSR-11
    Since FCP 4 we have been unable to stripe a new TC such as 00:58:00:00 or 01:58:00:00 to a DVCAM tape with the DSR-11. NO MORE!! I think I found a solution.
    Get SimpleVideoOut from the Apple (its free):
    http://developer.apple.com/samplecode/SimpleVideoOut/SimpleVideoOut.html
    Then create a QT Movie in FCP or Xpress Pro from a sequence which has the starting TC you want on the tape. I just tried it with 00:58:00:00. In the timeline, I just put Bars & Tone for 90 seconds and a black slug for 45 (to take me over 01:00:00:00). You could create a sequence with whatever combination you wanted with the TC set to start at whatever timecode you need for your choice. But the Timeline TC MUST be set to your desired starting code. The exported QT file will have this TC in it.
    Then load this DV QT movie into SimpleVideoOut (having selecting Firewire / Apple Firewire PAL or NTSC when you open the app).
    Now load a fresh DVCAM tape and set your DSR-11 to:
    REC MODE = DVCAM
    DV IN TC = EXTERNAL
    (Have the TC display turned on for this first test so you can verify it has worked.)
    Then just hold the REC and PLAY buttons together on the DSR-11 and press play in the SimpleVideoOut app and the new TC will be recorded to your DVCAM tape. Hey presto you are now able to stripe a tape with what ever timecode you want using a DSR-11.
    Remember to turn 'DV IN TC' back to INTERNAL on the DSR-11 when you come to record your edit to tape.
    The problem with the DSR-11 is that it is not the best deck and starting recording at the exact TC, but playing with the pre-rolls should eventually get it spot on. I have had some success with FCP's 'Edit to Tape' and very good results with Avid Xpress Pro after a few tweaks.
    Also, if you just had a black QT file, you can change the starting TC to suite the tape; i.e. 00:58:00:00 or 02:58:00:00 etc without going back into FCP or Xpress Pro and rendering out another QT. To do this, just use Sebsky Tools to alter the starting TC of the file.
    http://www.dharmafilm.com/sebskytools/
    Shane

  • IPad2 won't output through HDMI

    It seems ipad2 device doesn't know what to do with it
    It doesn't output video or sound to HD TV.
    Once in a while, it does output for 2 seconds and the screen goes back to black and can't get the signal, although, on ipad screen, it's saying that the video is playing on the TV connected which isn't.
    Cables work fine with iphone4 so they're not the problem.
    I tried change video setting to PAL or NTSC.
    I tried various applications and formats like flexplayer, youtube, podcast videos, mp4, avi.
    Can anyone help me?
    Would the device be faulty?

    It was because of a faulty connector.
    Don't buy cheap HDMI converter for iPad from ebay.
    I worked with iPhone4 though.
    I'm using AV Adapter bought from Apple.
    It works fine.

Maybe you are looking for

  • Printing from Windows 8 to a shared printer on a Windows 7 machine

    WE have a a user that has a laser printer on A windows 7 machine that others in the office can access EXCEPT the one person on a Windows 8 machine. We have tried everything, but cannot get her to print to this printer. Says it cannot be found. What d

  • What is the difference between SAP NW PI7.1 and PI7.1 EHP1

    We have a customer using SAP PI7.1 EHP1. The application to be deployed isdeveloped on SAP Netweaver PI 7.1 SP06. We need to know if application developed and transported from PI7.1 is compatible with EHP1? Below are the Components used by the applic

  • "Large" Mail Attachments are Too Small in Yosemite

    Since using Yosemite (10.10.1), when I attach a photo to a Mail (8.1) message, and then choose one of the options to change the Image Size from Actual Size to Large, the photo shrinks way too much. For example, an 8.4 MB .jpg file shrank to 285 KB wh

  • Problems using I2C on the FPGA of MYRIO

    I made a real time program that talks the the PmodCLS; however, for my fpga program is must run under the fpga, and under communications there is some I2C functions however the documentation is just limited to the context help file. Attached you will

  • How to see youtube video ?

    How is possibile to see video on youtube Winehouse iPad ?