Help on comments

hi all,
how to give the comments on columns ?
i issued following queries ,
COMMENT ON COLUMN tbl_import_folio_log.Step_1_Upload_file_sheet IS 'Uploaded File Name Sheet';
COMMENT ON COLUMN tbl_import_folio_log.Step_1_Upload_file_path IS 'Uploaded File Location';
COMMENT ON COLUMN tbl_import_folio_log.Step_1_Upload_file_size IS 'Uploaded File Size in mb';
COMMENT ON COLUMN tbl_import_folio_log.Step_1_Upload_loggeduserid IS 'Uploaded User Id';
COMMENT ON COLUMN tbl_import_folio_log.Step_1_Upload_maker_ip IS 'Uploaded User IP Address';
[\pre]
but it gives me  following error
ORA-00604: error occurred at recursive SQL level 1
ORA-06502: PL/SQL: numeric or value error: character string buffer too small
any help appriciated.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Hi Pankaj,
pls have a look
http://www.adp-gmbh.ch/ora/sql/comment.html

Similar Messages

  • Ask for helps and comments for a practicing ADF sample: Entering bank transaction records

    Dear experts:
    I'm redeveloping a practicing ADF sample application based on an exist application system of  my company.
    Here is the goal for this redeveloping:
    What degree of productivity can adf achieve compare to eclipse?
    And hereby is a small example I began from last Monday. some progress has been achieved, but pretty lot of difficulties remained,
    so I post all neccessary informations to this forum, and ask for your kind helps and comments.
    Thank you all in advance!
    Introduction                                                      
    The X company has some bank accounts in different banks, also it’s customers may have more than one bank account in different banks. Transactions between the X company’s bank accounts and it’s new or regular customers’ bank accounts happened heavily in daily. Bank transfer records in paper form will be collected and need to be entered into an in-house Financial System(NX1)  of the X company every day.
    This module will implement the function of Entering Bank transactions records for NX1.
    In future, this Data Entering work for NX1 will be handled by some data exchange interface automatically.
    And the following implementation will be based on ORACLE XE 11g,  Jdev/ADF 12c.
    This link can download  the document for the example, I will upload Database scripts and JDEV application files tonight.
    http://223.4.132.24:8180/BlobUtilServlet?tableName=FILE_TABLE&columnName=BODY&stuffID=020010110000001481&strNO=1&type=downfile&fileName=NXDemo1.doc&directOpen=true
    (The above link is a website of our own. if you meet any difficulty when access it, please let me know: [email protected]).

    Hi, Timo and Frank,
    Thank you all for your kind replies and sound suggestions!
    Now let me talk freely on this thread-and I will limit my topic scope within this Jdev/ADF Space’s theme but maybe in a more broad perspectives. And I will separate topics into different posts to avoid over length of each post. Hope you will have enough patience to read through this some long story!
    Notice: Links in this article will refer to somewhere of OTN itself or a website of our own. There is no security concern on the server. For example:
    http://223.4.132.24:8180/webfavorite.do?method=index&topTag=shou_A&txtTitle=ADF
    (This link is collection of internet links and some abstract for each article on ADF. Not much contents on ADF in Chinese can be found.)
    What you are up to?
    First of all, I need to make some introduction of myself to answer “what you are up to”.
    I come from China, living and working at Shenzhen city which is close to Hong Kong. And now I am running a small software company with 20 employees, our main business is to develop database centered applications which include in-house workflow/information management systems and websites/portals for organizations.
    I have a pretty strong conviction that software technology should emancipate people from routine trivial mental works, just like engines in the industry revolution free people from heavily physical works. So I have a strong inclination for everything to be “automated”.
    For running a company, this “automation” will not only bring the “aesthetics of everything running by itself”, but also will mean more productivity, quality and profits.—After all, no-living stuff is always cheaper than living creatures, let alone to say human beings.
    However, when we software industry tried to automate business fields for our clients, the process of making software itself was still a manpower intensive, less-automation business. and this result a expensive products.
    More than 15 years ago, when I began to work in an IT department of a big organization, I got to know the Oracle Designer/Developer 2000, and have being a diligent FORM/REPORT programmer for more than 4 years. I like the concept and practice of declarative design and automated generation.
    And then more years past, and I left that organization and began to run a software company myself. And during these days, the mainstream technology of software development had been web oriented, Java/J2EE which I had no idea totally. But we have other guys who had expertise on it. So I just leave these works and decisions to them. And it seemed works at the beginning.
    But after several years of business operation of application development for clients, I found this was a difficult-money-earn business. Even if our guys had worked hard, project schedules’ delay, over budget, clients’ complain was easily happened. Sometime we had more projects/contracts than what we can undertake, but we dare not to hire more people. I was confused:
    -Was it a common situation in this field all over the world?
    -What’s the key factor should responsible for?
    -Where to start to improve the situation?
    I know there are many factors should responsible, it’s a complex situation. Find more talented people and give better incentives for them to work hard is one choice—but it’s also a difficult task especially for a small company like ours. So to start from easy and confine solution’s scope is:
    -We have these guys now, what we can do best?
    (To be continued)

  • Help With Commenting Please

    package student;
    import wrabble.*;
    public final class Board implements IBoard
        public Board()
            setBoardSize(15);
        public void clearBoard()
            for(int i = 0; i < tiles.length; i++)
                for(int j = 0; j < tiles.length; j++)
                    tiles[i][j] = null;
        public Tile getTile(int i, int j)
            return tiles[i][j];
        public boolean setTile(int i, int j, Tile tile)
            if(i >= 0 && j >= 0 && i <= 14 && j <= 14)
                tiles[i][j] = tile;
                return true;
              else
                return false;
        public Multiplier getMultiplier(int i, int j)
            return multipliers[i][j];
        public void setMultiplier(int i, int j, Multiplier multiplier)
            multipliers[i][j] = multiplier;
        public int getBoardSize()
            return tiles.length;
        public void setBoardSize(int i)
            tiles = new Tile[i];
    multipliers = new Multiplier[i][i];
         public String[] getWords()
              return new String[0];
    Tile tiles[][];
    Multiplier multipliers[][];
    Can someone please help me comment this code, so I can fully understand what it does?
    Thanks

    Umm... I meant proper commenting like you do with code:
    package student;
    import wrabble.*;
    public final class Board implements IBoard
         // Set the board size to 15 x 15
        public Board()
            setBoardSize(15);
         // What to do when the Reset button is pressed
        public void clearBoard()
              // Clear and reset everything
            for(int i = 0; i < tiles.length; i=i+1)
                for(int j = 0; j < tiles.length; j=j+1)
                     tiles[i][j] = null;
        public Tile getTile(int i, int j)
            return tiles[i][j];
        public boolean setTile(int i, int j, Tile tile)
            if(i >= 0 && j >= 0 && i <= 14 && j <= 14)
                tiles[i][j] = tile;
                return true;
              else
                return false;
        public Multiplier getMultiplier(int i, int j)
            return multipliers[i][j];
        public void setMultiplier(int i, int j, Multiplier multiplier)
            multipliers[i][j] = multiplier;
        public int getBoardSize()
            return tiles.length;
        public void setBoardSize(int i)
            tiles = new Tile[i];
    multipliers = new Multiplier[i][i];
         public String[] getWords()
              return new String[0];
    Tile tiles[][];
    Multiplier multipliers[][];
    I have started so far...

  • I have an Ipad2 and installed the Jeppesen Mobile TC (aeronautical Charts) I am afraid if I make the upgrade to OSI5 I will lose the license of the Jeppensen Mobile TC,, any help or comments about it,, thanks

    I have an Ipad2 and installed the Jeppesen Mobile TC (aeronautical Charts) I am afraid if I make the upgrade to OSI5 I will lose the license of the Jeppensen Mobile TC,, any help or comments about it,, thanks

    Being an iOS developer, I can tell you that iOS. 7 compatibility for iPad came later in the beta process.
    Therefore there wa less time to test iOS 7 on iPad. My suggestion to you would be to wait until Apple refreshes the iPad line before you update. At that point they will most likely release an iOS 7 update optimized for iPad.
    With that said they are many people running iOS 7 on their iPads without issue.
    Remember, this is a help forum. No one posts success stories here.

  • Could Anyone Help Me Comment This Coding

    var loader:URLLoader = new URLLoader();
    loader.addEventListener(Event.COMPLETE, onComplete, false, 0, true);
    loader.addEventListener(IOErrorEvent.IO_ERROR, onIOError, false, 0, true);
    loader.load(new URLRequest("game.xml"));
    ii Need To Comment My Coding And ii Cant Remember What This Does Again..
    ii Know Part Of It ii Think But Not Sure..
    Thanks.

    You should examine each line and figure out what each is doing and comment each one.  TAke a stab at it yourself first, then ask for help.

  • Help in commenting on the ABAP editor

    hi
    the ABAP editor when you click on CTRL + < or CTRL + >
    you will be able to comments and uncomments code but in mine it's not working do you know where i can active this particular options

    Hi,
         I'm not sure if there is any special setting for activation or de-activating the feature of commenting & un-commenting the code lines in the editor screen of ABAP.However u can try setting the new editor interface ...Its very simple:
    Go to  Tcode: SE38>>Click Utilities on the Menu bar & select Settings under Utilities>>Under this window that u get u can select: 'Front End editor(NEW)' & then try using control< or control>...
       Hope this helps..Nevertheless this new GUI for editor is very good to work with with more functions on the editor screen itself!!!
    Cheers
    Ankur Godre

  • *Please Help!* Comment List Won't go away...

    I have Adobe Acrobat 8.0 PRO and I added a comment to a certain part of the forms I made because when a client goes to a certain part of the document I want them to see I comment I made about a certain part of our document. The problem is every time the program starts the "Comments list" pops up. I can close it manually each time but I don't know why it remains open every time I open the file. I don't know what to do anymore. I have spent too much time trying to figure it out...if anyone can help I would appreciate it! Thanks again in advance :)

    Do a save as after hiding the comment list. Please continue this thread
    if needed in the Acrobat forum, not the Reader forum. The Reader app
    cannot re-save changes in pdfs.
    Mike

  • Help! Comment installer des filtres optionnels sur CS6?

    Je souhaite installer ces filtres INSTAGRAM sur mon Photoshop CS6: http://www.photoshoptutorials.ws/downloads/photoshop-actions/freebie-10-instagram-photosho p-actions/
    Mais je ny’arrive pas DU TOUT.
    Voici ce que je fais.
    Une fois le dossier téléchargé et dézippé, je vais dans application > Adobe Photoshop CS6 > Presets > Actions > et là je glisse mon dossier "Instant Hipster Actions Preview" dedans. Je ferme et je ré-ouvre PS CS6 pour que le dossier s’affiche dans le fenêtre Actions et là rien !
    Help!!!! Que faire?
    Merci!

    What is the URL for the filters on the site adobe photoshop CS4 compatible ?
    These ?
    Adobe - Photoshop : For Windows : Adobe Photoshop CS4 Optional plug-ins and ReadMeEnglish, French and Spanish
    Adobe - Photoshop : For Macintosh : Adobe Photoshop CS4 Optional plug-ins and ReadMeEnglish, Spanish and French : Thank …

  • Commenting Help (merging comments in from a email review)

    I'm getting this error "You have already saved comments for this review in another file. You can use the review tracker to locate that file."
    Here's what I did (Acrobat 8). I sent the pdf out for review, then got one set of comments back and opened that file and acrobat automattically registered it and merged the comments in. Then I got a second email back (they are saving them and sending them back as attachments in email.) and that one gave me the above error code. What went wrong? What does that error message mean?

    which wasn't previously a problemAnd what did happen since then ?
    Take a look at Placing Comments in Scripts
    I'm using VistaWhich edition ?

  • Help with comments

    Can anyone tell me how to add comments so I can mark what needs to be changed in the document.  My security setting states I dont have comments but its low lighted so I cant seem to change the setting.
    Cheers,
    Lisa

    You can't change it with just Reader, you'll need at least Acrobat. Reader 10 will allow you to add text highlight and sticky note type comments if there are not security settings that would prevent it. Acrobat can be used to Reader-enable the document, which allows Reader to add the other types of comments.

  • IOS7 Photo App pinch complaint. Help or comments?

    When viewing photographs taken with the camera in iOS7, by default the screen is slightly zoomed in on the picture. In iOS6 all we had to do was pinch your fingers together and the photo would zoom out and then be in full view. Now in iOS7 if you pinch to see the whole picture the picture disappears back into the camera roll. TERRIBLE FEATURE OF IOS7!! The only solution is to turn and view the vertical photo in landscape mode, which is not good at all. Then you have to zoom in and it looks terrible! It is especially a problem if you take a photo of an article and the words get cut off on the edges. Anyone else disappointed by this? Anyone think APPLE will actually fix this?

    For the record, just confirmed it happens to photos taken by my iPhone as well. Really hope someone at Apple reads this and runs it down and fixes it. Most annoying to have to awkwardly resize images when presenting to prospective client, or a complete stranger. :-)

  • Comment based help, .link online version

    Hello,
    Sorry for what's probably a very stupid question but I'm banging my head against the wall. I'm trying to add a link to .LINK so that it appears as Online Version:
    https://www.somesite.com like with what you see with Get-Help Get-Service in related links.
    I can get it to work just by doing the below but it won't work with the online switch with get help. Any light to shine on the subject? The error I get is "The online version of this help topic cannot be display because the internet address (URI) of the
    help topic is not specificied in the command code or in the help file for the command. I can fix it but just leaving the address there and taking out "Online Version".
    <#
    .LINK
    Online Version: https://www.microsoft.com
    #>

    Hi SysNetEng,
    this is due to the difference between XML based help and Comment Based Help (CBH). In the XML version a link has two properties (linkText and uri), while in CBH you only have the option to provide text. Get-Help -Online will interprete the first line in
    its entirety as its target uri, and if that's not a valid one ...
    So if you want this optic, you'll have to go to XML based help.
    Cheers,
    Fred
    There's no place like 127.0.0.1

  • Mac Crashes in the middle of Time Capsule backup --HELP!

    Been using time capsule for several months without any issues. In fact, it has been great until recently. A week or so ago, my MacBookPro began crashing in the middle of a time capsule back up. Just suddenly the MAC curtain comes down and tells me I must restart. When I restart I get an error message which I have copied into this message. I tried erasing a whole months worth of backups but still get the same problem........is it possible my MAC has gotten a virus?? Anyone who can help, your comments would be greatly appreciated!!!
    Sun Jun 1 10:59:30 2008
    panic(cpu 0 caller 0x0031678A): "btreeswapnode: about to write corrupt node!\n"@/SourceCache/xnu/xnu-1228.4.31/bsd/hfs/hfs_btreeio.c:197
    Backtrace, Format - Frame : Return Address (4 potential args on stack)
    0x34b0f918 : 0x12b0f7 (0x4581f4 0x34b0f94c 0x133230 0x0)
    0x34b0f968 : 0x31678a (0x484588 0x92d6000 0x1 0x34b0fa40)
    0x34b0f9a8 : 0x1fa244 (0x3054aa60 0x5c85004 0x0 0x0)
    0x34b0fa68 : 0x1fb543 (0x0 0x0 0x200 0x0)
    0x34b0fab8 : 0x3388b1 (0x4396e08 0x5c853b4 0x484261fc 0x2597b)
    0x34b0fae8 : 0x325fa5 (0x5c85004 0x2 0x0 0x1)
    0x34b0fc58 : 0x1f3097 (0x34b0fc78 0x5e26660 0x4 0xb52b9a4)
    0x34b0fca8 : 0x1e2b5d (0x6354630 0x9361490 0x34b0fe2c 0xb52b9a4)
    0x34b0ff78 : 0x3dcf13 (0xa8bec50 0xb52b8a0 0xb52b8e4 0x1)
    0x34b0ffc8 : 0x19f1c3 (0x766b0e0 0x0 0x1a20b5 0x4b71480)
    No mapping exists for frame pointer
    Backtrace terminated-invalid frame pointer 0xb0102578
    BSD process name corresponding to current thread: backupd
    Mac OS version:
    9C7010
    Kernel version:
    Darwin Kernel Version 9.2.2: Tue Mar 4 21:17:34 PST 2008; root:xnu-1228.4.31~1/RELEASE_I386
    System model name: MacBookPro4,1 (Mac-F42C89C8)

    Steve --
    Got this problem fixed. It seems the 10.5.3 update corrupted the update somehow. You can perform a disk image repair on the existing backup or just delete all your old back ups and start from scratch which is exactly what I did. Good luck!

  • Start-up problems! Please help...

    Hello! Thanks for reading. I'm not very experienced with the Mac OS; I've always been a Windows guy myself (sorry!), but I had to get a MacBook Pro for school when I switched majors last Fall.
    Also, I really apologize for the length of this post, but I'm kind of freaking out here. This computer was really, really expensive, and it's mandatory for my major, and has all of my work on it. Any help or comments are greatly appreciated!
    Here is some prerequisite information before I continue:
    -The computer involved is a MacBook Pro from June 2012 (not the newer Retina Display one) running OS X 10.8 Mountain Lion.
    -It has a 750GB HD, 16GB of RAM, and a 13.3" screen.
    -I bought the computer used.
    -I have never experienced any other problems remotely like this with the computer.
    WHAT WORKS:
    -Internet Recovery, Mac OS X Utilities
    WHAT DOESN'T WORK:
    -Everything else
    So last night, my computer froze. I could do nothing but switch between desktops (swiping to the left or right with three fingers), so I pressed the power button to force shut down. But, upon rebooting, I was greeted by a folder with a question mark, flashing on and off. After doing a bunch of stuff (resetting the PRAM, resetting the SMC, trying and failing to enter both single-user and safe modes, etc.), I finally got Internet Recovery to work (after multiple attempts and receiving multiple error codes, none of which have ANY support or even mention on Apple's site) and the computer to get to a place where I could access Mac OS X Utilities. Unfortunately, I have no Time Machine backups, nor do I have the reinstall disc (I bought it used), and the "Get Help Online" option yielded nothing. However, Disk Utility was readily available. The day was saved! Or so it seemed.
    When I click on Disk Utility, the only options on the left are "SuperDrive"--the CD drive, which is greyed out--and "disk0," with a dropdown category of "Mac OS X Base System." I have scourged the internet far and wide, and I can find absolutely nothing on what to do next, or what these directories even are. The Apple support site says to highlight my HD, go to the First Aid category, and click "Repair Disk;" however, my HD is not listed (unless it is, for some reason, going by the name of "disk0") and the "Repair Disk" option is greyed out, as are all the others.
    I have absolutely no idea what to do next. I have tried booting up in safe mode and single-user mode, but the computer is having none of that. I've reset the PRAM and the SMC. I've tried holding cmd+R, D, and R during bootup to no avail. The only thing that seems to work is holding opt down during startup to get to Internet Recovery. I seriously cannot fathom the possibility that the forced shut down I performed last night could have seriously damaged the physical HD. I may not be an expert on the Mac OS, but I do have some basic computer knowledge. I'm probably going to take it in to a Genius tomorrow (it's Labor Day today), but I'd really like to get this solved without them (my budget is almost non-existent). I'm also really, really hoping that a complete wipe of the HD is not necessary.
    Again, I really apologize for the length of this post! But I really want to be thorough so the problem can be solved and quickly and painlessly as possible. Thanks for reading!

    jcmyint wrote:
    Oh god... I was hoping that wasn't the case. Can hard drives just up and fail so suddenly like that? I mean, OK, I know it's possible, but how likely is that? I have had hard drives fail in the past, but it was never a surprise like it was with the Mac; it was preceded by slow boot times, slow directory access, etc.
    The previous owner could have had HD problems.  Reason why it was for sale? 

  • Help needed with layers and project files....

    Hello
    I am new to after effects so this might be a simple issue for most. I am having an issue with my layers not matching the files in my project window. I accidently deleted a comp file the other day so I had to remake a few layers but they are not showing up in the project window/solids folder. I have 5 layers on my timeline and only 4 files in the project/solids folder. Some of the files names do not match the ones in the timeline. Is there a way to create a new comp with the files that I have open in my timeline or to replace the ones in the project window?  I started a project a few days ago, Im trying to make a few partical orbs dancing on there own path then they will come together and then creates a few smaller ones. Im at the point where I want to copy one comp to another or copy the layers over but the particals follow one light instead of the original light from its own comp. I think the file names in the project window might be the issue but I really don't know. Any help or comments would greatly be appreciated
                                                     Thanks a million
                                                                   Adam                                                                                                                                                              
    Using trapcode particular and AE CS6
    Windows system

    Layers on the timeline are just instances of the source footage. If you rename them on the timeline, that won't affect the number or naming of the sources in the project window. Toggle the column header in the TL to see which laywer uses which source.
    Mylenium

Maybe you are looking for

  • Push button details in web ui of crm 6.0

    Hi All, I would like to view and know the details of existing push buttion function in web ui crm screen.  Though clicking F2 on the push button, i am able to see the technical details of Component, View, Context Node and role key.  I need to add the

  • Every time a new message arrives in mail a window pops up saying that os x needs my keychain password: how to stop that?

    every time a new message arrives in mail, a window pops up saying that os x needs my keychain password: how do I stop that infernal nuisance?

  • Materialized view error

    Hi, I am using oracle 9i and OS is HP UNIX . I encountered the below error while doing fast refresh for a Materialized view. ORA-12008: error in materialized view refresh path ORA-04030: out of process memory when trying to allocate 56 bytes (cursor

  • Nedd to configure DME(payment transaction) ve to change setting

    Hi experts, I need to change the standard entry class code in the batch header (batch is created by the programs SAPFKPY3  and RFKPYL00_MASS). Currently the batch header is PPD (for consumer and business). I need to modify it like- PPD for consumer a

  • Do I have Bluetooth?

    Hi, I have the original iMac G5 1.8GHz PPC, I guess Bluetooth was an option on these machines. My question is how do I know if I have a Bluetooth enabled iMac? Thanks for any insight.