Hard limit to xml size for add_event and process rules?

Hi,
Is there is hard limit of 4000chars to the input xml for add_event and process_rules fumction in 10g R2?
Regards,
Nishanth

Nishanth,
The bug 8332063 is specific to attributes created for Text predicates and that does not impose size restrictions on XMLtype attributes.
Regards,
-Aravind.

Similar Messages

  • How does one change the font size for folders and/or file lists in the Bookmarks Library?

    How does one change the font size for folders and/or file lists in the '''Bookmarks''' Library?
    Since the upgrade to version 9.0.1 of Firefox, the Bookmarks feature changes are confusing me. They seem to be confusing themselves as well. The list of bookmarks has changed. The font size is so small that my aging eyes cannot read it without fogging the screen with my breath. Some folders are out of alphabetical order (where I know they were previously good), and some are missing altogether (folders to which I frequently add references).
    As for missing or deranged files or folders, was there something that I should have done or now need to do to recover those after the upgrade (or before)?
    With regard to font size,
    1. there is no “Edit Bookmarks” or like option to edit the list in this version
    2. the “zoom” option in the “view” list of functions is greyed out when in “Show All Bookmarks” window
    3. expanding the browser window has no effect on font size
    4. “Preferences” settings for font size has no effect in that window either, including advanced settings
    5. “Help” offers none that I can find.
    Can any of you Help?!?

    Maybe this extension helps:
    *Theme Font & Size Changer: https://addons.mozilla.org/firefox/addon/theme-font-size-changer/

  • What is theoptimal file size for stills, and dpi?

    what is theoptimal file size for stills, and dpi?

    In video dpi is not relevent. What counts in video is pixels. In FCP most recommendations I have seen is to size your stills so they have no more than 3 times the pixels in your project aspect ratio. For example if your project is 1280x720 then stills should be no more than 3 times the 1280x720. This allows you to crop the stills and still have good resolution. If no cropping is anticipated then they could be the same size as your project.

  • XML Parser for PLSQL and BIG5/UTF-8

    I'm trying store data in traditional chinese submitted by IE5 (through oXMLHttpRequest.send() and javascript), I tried both 'encoding="BIG5"' and 'encoding="UTF-8"'.
    It seems that the parser ignore all characters that are not ascii regardless of their encoding.
    Any thoughts will be much appreciated
    procedure UpdateXMLProc(xmlSrc varchar2)
    is
    p xmlparser.parser;
    doc xmldom.DOMDocument;
    nlist xmldom.DOMNodeList;
    list_len pls_integer;
    node1 xmldom.DOMNode;
    node2 xmldom.DOMNode;
    node3 xmldom.DOMNode;
    begin
    p := xmlparser.newParser;
    xmlparser.parseBuffer(p, xmlSrc);
    doc := xmlparser.getDocument(p);
    nlist := xmldom.getElementsByTagName(doc, 'ROW');
    list_len := xmldom.getLength(nlist);
    -- loop through elements
    for j in 0..list_len-1 loop
    node1 := xmldom.item(nlist, j);
    -- get primary key values
    node2 := xmldom.getFirstChild(node1);
    loop
    -- get the text node and if not null get value
    node3 := xmldom.getFirstChild(node2);
    if not xmldom.isNull(node3) then
    -- THIS OUTPUT MAY ALTER CHARACTER IF IT'S NOT ASCII
    htp.p(xmldom.getNodeValue(node3));
    end if;
    -- get next field
    node2 := xmldom.getNextSibling(node2);
    exit when (xmldom.isNull(node2));
    end loop;
    end loop;
    -- THIS OUTPUT WILL BE IN THE SAME ENCODING AS THE ORIGINAL
    htp.p(xmlSrc);
    end;
    null

    I just ran the initjvm.sql,initdbj.sql and
    initsqlj.sql.
    Still getting the error.
    Please help!!!!
    Thanks
    Jay
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Jay ([email protected]):
    I have Oracle8i Release 8.1.5.0.0 - ProductionWith the Java option
    PL/SQL Release 8.1.5.0.0 - Production version
    runnig in sun sparc server.
    While I am loading Oracle XML Parser for PLSQL(using plxmlparser_V1_0_1.tar.gz) have a problem. When I try to load the xmlparser.jar class and I get the
    following messages:
    initialization complete
    Error while accessing MD5 table
    ORA-00942: table or view does not exist
    loading : org/w3c/dom/DOMImplementation
    Error while loading org/w3c/dom/DOMImplementation
    ORA-04068: existing state of packages has been discarded
    ORA-04063: package body "TEST.LOADLOBS" has errors
    ORA-06508: PL/SQL: could not find program unit being called
    ORA-06512: at line 1
    creating : org/w3c/dom/DOMImplementation
    Error while creating class org/w3c/dom/DOMImplementation
    ORA-00406: COMPATIBLE parameter needs to be 8.1.0.0.0 or greater
    Error while accessing MD5 table
    ORA-00942: table or view does not exist
    loading : org/w3c/dom/html/HTMLDivElement
    Error while loading org/w3c/dom/html/HTMLDivElement
    ORA-04068: existing state of packages has been discarded
    ORA-04063: package body "TEST.LOADLOBS" has errors
    ORA-06508: PL/SQL: could not find program unit being called
    and so on.
    Could anyone please tell me if I need to do any pre-installation steps.
    Thanks
    Jay<HR></BLOCKQUOTE>
    null

  • Using large block sizes for index and table spaces

    " You are not using large blocksizes for your index tablespaces. Oracle research proves that indexes will build flatter tree structures in larger blocksizes.
    Is this a generic statement that I can use for all tables or indexes? I also have batch and online activity. My primary target is batch and it should not impact online. Not sure if both have common tables.
    How to find the current block size used for tables and index? is there a v$parameter query?
    What is an optimal block size value for batch?
    How do I know when flatter tree str has been achieved using above changes? Is there a query to determine this?
    What about tables, what is the success criterion for tables. can we use the same flat tree str criterion? Is there a query for this?

    user3390467 wrote:
    " You are not using large blocksizes for your index tablespaces. Oracle research proves that indexes will build flatter tree structures in larger blocksizes.
    Is this a generic statement that I can use for all tables or indexes? This is a generic statement used by some consultants. Unfortunately, it is riddled with exceptions and other considerations.
    One consultant in particular seems to have anecdotal evidence that using different block sizes for index (big) and data (small) can yield almost miraculous improvements. However, that can not be backed up due to NDA. Many of the rest of us can not duplicate the improvements, and indeed some find situations where that results in a degradation (esp with high insert/update rates from separated transactions).
    I also have batch and online activity. My primary target is batch and it should not impact online. Not sure if both have common tables.
    How to find the current block size used for tables and index? is there a v$parameter query?
    What is an optimal block size value for batch?
    How do I know when flatter tree str has been achieved using above changes? Is there a query to determine this?
    What about tables, what is the success criterion for tables. can we use the same flat tree str criterion? Is there a query for this?I'd strongly recommend that you
    1) stop using generic tools to analyze specific problems
    2) define you problem in detail ()what are you really trying to accomplish - seems like performance tuning, but you never really state that)
    3) define the OS and DB version - in detail. Give rev levels and patch levels.
    If you are having a serious performance issue, I strongly recommend you look at some performance tuning specialists like "http://www.method-r.com/", "http://www.miracleas.dk/", "http://www.hotsos.com/", "http://www.pythian.com/", or even Oracle's Performance Tuning consultants. Definitely worth the price of admission.

  • Correct screen sizes for wallpapers and games on V3m RAZR for Verizon?

    Does anyone know the correct file size (i.e. 176x144) for
    wallpapers and games built for a Razr on the Verizon network? I
    know that the Razr is 176x220, but I thought that I remember seeing
    somewhere that the wallpapers should be 176x144 and games should be
    176x204 because of the top banner that is locked on the screen.
    Please advise if you know for sure. The lastest doc that I read
    about Verizon said that the status bar took 16pixels. Does anyone
    know for sure?

    I read this from a brew device data sheet on the V3m:
    The display height is 220 pixels. The number of pixels for
    status area is 16 pixels in height, so the height for BREW
    application display area is (220-16)=204 pixels in height.
    I'm not sure about wallpapers though. It looks that the top
    bar and bottom bar are the same size. I would developer my
    wallpapers at 176x188 (assuming the bottom bar is 16 px as well).
    The secondary display is 96x66. Though, I'm not sure how you
    could access that, if you want to show a small version of a
    wallpaper when its closed.
    C

  • Exporting HD Sizes for Quicktime and AVI?

    Okay, LOVE the new CS4, but have a problem.
    For tech notes in case it means anything, I'm shooting with a JVC HD-110, editing M2T files. Everything in THAT respect works perfectly - NOW I even have an FS5 drive so it goes even better - dropping all capture time and processes. The Projects are all set up as HDV, 720p at 24p - basically, everything about the Project is set to HD.
    When I choose Quicktime or AVI as the Export format, the only Preset options that come up are DV related. Meaning, SD... And when I have to manually type 1280x720 as the export size (upping the default from 720x480) it even reads "1,280" - not a straight "1280", get it?
    The resulting render looks horrible - completely unusable - unless my goal is to simulate the old Fisher Pricer Pixel Camcorder ;-)
    How do I Export from Premiere's Timeline to an HD format? Or can I download a set or HD Presets to put in the Export Settings (or something) folder for each codec?
    Thank you for your time, and any thoughts-
    -Lew

    Oh yeah - there's a whole huge list for WMV! MAN you have options there!
    No, none of those options are (or seem) available for Quicktime and AVI.
    I bounce files back and forth for clients (and myself) for FX work and edits (they prefer the Quicktime Animation codec at 100% - gotta admit, it's beautiful!), and would like to do final output to HD in the end for a project I'm working on right now.
    -Lew

  • Free XML feeds for Stock and Weather ?

    Hi All,
    Please let me know if there is any XML feed available for Stock and Weather. I googled a lot but couldn't find free XML feed providers.
    Thanks,
    Manjunath

    Hi,
    I tried finance.yahoo.com for stock. I prepared a sample file in which I used 'trace' to see the response. However I can't see any XML data.
    I have attached both .fla and .swf files. Could you please check did I miss anything in the actionscript part?

  • PhotoShop Elements 10...I need help with font size for watermark in Processing Multiple Files.....

    I have PhotoShop Elements 10, and I am trying to watermark some of my photos, I have successfully added them one at a time with a font large enough to be seen. Now I am trying to add it using the "process multiple files" , I can do that but the font even at 72 the largest setting is so small on the photo you can barely read it! Can anyone help me the size larger on my photos?

    Thank you, Michael. I just watched the Russell Brown video again for CS6 and looked real closely at his settings in ACR and he was using 240ppi. I changed my file in image size to 240 ppi and then ran the script and the layer didn't change size this time when I ran the script.
    It is kind of annoying to have to change the image size everytime I want to run this script and then change it back again as most of my files are 300 ppi. I used to run his script for edit in ARC in CS5 and recall that if I just remembered to change the settings in ARC to 300 ppi while the script was playing and before pressing 'open' that the image wouldn't change size during the raw processing, but this doesn't seem to be working in CS6. Do you know of a way to use this script and not have to change the ppi for the image to 240?
    Thanks again.

  • Installing NT service for app and process scheduler (Windows 2003)

    I have followed the install guide instructions for creating an NT service for the process scheduler, however, whenever I attempt to start the service I receive the following warning message:
    The PeopleSoft H:\apps\psoft\PT849 service on Local Computer started and then stopped. Some services stop automatically if they have no work to do, for example, the Performance Logs and Alerts service.
    The service does not start properly, however when launching the services via psadmin, both the app and process scheduler processes start properly.
    Any assistance would be appreciated.

    I have followed the install guide instructions for creating an NT service for the process scheduleWhat are the doc you've followed ?
    It is well explained here below :
    http://download.oracle.com/docs/cd/E05406_01/psft/acrobat/hwtools849_itora.pdf
    Task 10A-5: Starting Process Scheduler as a Windows Service
    Furthermore, describe what steps have been done.
    Nicolas.

  • Producer loop and 2 consumer loop for acquisition and process images

    Hello everybody,
    I'm quite a newbie in Labview 2011 on Windows 7.
    Those are what I want to do :
    Step 1: When the objects fall with velocity around 2 to 5 m/s, images of these objects will be acquired continuously from PCIe 1433 with Basler spL4096-39kc.
    Step 2: The processing of the images continuously in the same time with step 1 will find the datas of the objects in images as colors, patterns and locations. If the patterns and colors at location are as the same sample, the elements in Boolean data array are true.
     Step 3: Every 01 millisecond, values from Boolean data array will be read, the valves of nozzle will be opened if the values are true.
     My question is what is the best way to do my tasks ? I couldn't find any example of program in Labview and I think I use producer/consumer architecture for step 1 and 2 but I don't know how can I set up producer loop for step 3 and transfer Boolean data array from step 2 to step 3 ?
    Thank you for reading and help me !

    Dear Eric-J,
    Thanks for your reply. I want sort the pellets that have 6mm diameter. The pellets were fed in a single layer by a vibratory feeder with a flat-bottom trough, 400mm wide that was supplied with the feeder . The pellets dropped off the end of the feeder onto a chute with 40 parallel U-shaped grooves. Images of these pellets will be acquired continuously. I make the sample from image that was acquired. I use NI Vision for processing  of the images. If the patterns and colors of pellets are as the same sample, the elements in boolean data array are true. As you thought, I would like to interpret data every millisecond and open/close a valve based on the boolean array. The air valve sends a burst of air for 2 - 3 milliseconds to an air nozzle that diverts the pellets into the appropriate channel.
    What are your ideas for this task ? Could you explain more clearly about "a real time system" and "determinism" for this task ?
    Thanks and best regards

  • OWB : Runtime Repo for Target and Process Flows on Different M/C

    Hi,
    I have an environment where the Runtime Repositories for the Target Warehouse and Process Flows ( Workflows ) are on different machines. I have deployed :
    * the mappings and Target Tables on the Target Warehouse
    * Process Flows on the Workflow Server which resides on a seperate M/C.
    When I try executing the Process Flows for the Mappings , it errors out indicating that the objects may not have been deployed. Looks like the Process Flows cannot see the Mappings deployed.
    Can somebody help me here ?????

    I think target schema and runtime rep shuould be in same instance

  • I am trying to use two very long (2.5 hour HD) clips in multicam but FCPX only places one clip right after the other and does not create multicam. Is there a limit on clip size for multicam?

    I am trying to use two very long (2.5 hour HD clips) and a 2.5 hour audio clip in multicam. One clip and the audio will ceate a multiclip but two clips will not. FCPX simply adds the second clip on at the end of the first. There must be some sort oflimitation on clip length. Is that correct and if so what is it?

    The Angle field is not shown in the Inspector's default Basic View. With the clip selected in the event viewer, select the Info tab in the inspector. Change the view of the inspector from the default Basic View to the General View to be able to see the Angle field.
    I assume you want to use the audio to do the sync. If FCP X has trouble syncing the audio, you can set a marker at the same chronological point in each clip before creating the multiclip. Then set Angle Syncronization to First Marker on the Angle and keep Use audio for syncronization checked. Your marker only needs to be close to get FCP X started. It will then use the audio to get final sync.

  • How big a hard drive do I need for iMac and Time Machine?

    Sorry if this has been answered elsewhere already. I am going to buy an iMac, probably the new 24" with a 320G internal HDD. I already have one Lacie external 320G HDD so I was wondering whether I can use this for Time Machine backups, or do I need to buy a bigger one? If so, how big? Is there a rule of thumb for working out how much hard drive space you need to have for Time Machine, for instance if I were to buy the 500G iMac what would I need?
    thanks.

    I agree with the "double the size" rule of thumb. You should also consider how much of the 320GB you are actually using and are likely to use in the next year or two. After all, it's the amount of storage you use that matters, not the size of the disk. Disks will very likely be cheaper soon. You should also keep in mind that TM deletes old archive data when it runs out of disk space. So as long as you have more disk space than you have data to back up, TM will work, though you will lose older versions of your data.
    So if your 320GB drive only has 100GB used and you're not the kind of person who eats up disk like there's no tomorrow, the 320GB drive should be fine for now. If you expect that 320GB disk to be full soon then a 750GB TM disk is more like what you need.
    The same logic applies to a 500GB iMac. If you only expect to use 250GB in the next year or two then a 500GB TM disk should be OK. A 1TB drive will be a lot cheaper next year or the year after.

  • Efficient page size for print and SWF doc?

    I have to create an AR for a client who wishes to have it saved out as a SWF file for online usage, in addition to the printed books. I'm just wondering if there's a more efficient page size, other than 8 1/2 x 11", that would work better for online. As it is, I find the 8 1/2 x 11 size is a bit difficult to turn the pages in SWF. Comments please?
    Thanks in advance.
    Sandra

    You are right and wrong.  It stems from terminology and taking this a bit literally.  Yes, margins do not print.  However, they do print.  Typically you set margins as "guides" for page layout and it ends there.  If, you have elements that print in the margin areas, then they ( the elements ) will print.  Let's say you have a business card layout that equal 2"h x 3.5" w ( horizontal ).  You can set a margin of .25" all the way around the card as a guide. Now you apply a background bleed color of 100% Black at 2.25"h x 3.75"w ( 1/8" bleed all the way around ).  Eventhough you have a margin of .25", the Black will print entirely including the bleed.  Now, Page Margins are different.  Most desktop printers do not include bleed in an 8.5" x 11" page size.  For instance, my inkjet printer has non-printable areas or page margins that do not print.  They equal something like .139" top, left, and right with a bottom margin of .6".  Unless your printer has an option for "borderless" printing, there is a non-printable margin in the Page Setup.  This is different than layout margins which are printable and used as guides.  So, if your desktop printer does not have "borderless" printable areas ( option found in Print > Page Setup ), you'd have to print your 8.5" x 11" layout on a larger page size and then trim it down later.  Let me know if you have any other questions.  I hope I cleared it up for you.  Let me know if I didn't.

Maybe you are looking for