Is there a preferred format of XML that can be laoded into an Oracle table?

XML files vary quite a bit. From mere fragments to file carrying schema, etc. What is the preferred format of an XML file that can be loaded into an Oracle table assuming that the Schema agrees with the table structure.
It does not seem to load an XML file even with W3C namespace and all.
Krishnaswamy Jayaram

With XE there is XML support in the database but no XQuery, JNDI, or Servlet support.
If you give a specific example it could be helpful, here are simple write and read tests on XE;
HR on 20/03/2006 10:28:22 at XE > CREATE TABLE xml_tab (xmlval XMLTYPE);
Table created.
HR on 20/03/2006 10:28:31 at XE > INSERT INTO xml_tab VALUES (
2 XMLTYPE.CREATEXML(’
3
4 221
5 John
6 ‘));
1 row created.
HR on 20/03/2006 10:28:41 at XE > INSERT INTO xml_tab VALUES (
2 XMLTYPE.CREATEXML(’
3
4 331
5 PO_1
6 ‘));
1 row created.
HR on 20/03/2006 10:28:49 at XE > select x.xmlval.getstringval() from xml_tab x;
X.XMLVAL.GETSTRINGVAL()
221
John
331
PO_1

Similar Messages

  • Is there a max number of names that can be put into Contacts

    is there a max number of names that can be put into Contacts and still have the app work well?

    Yes, there is. It's how many contacts your hard drive can take. So you can fill up the entire computer with nothing but contacts until your HDD/Flash has no space left. So if you have 250GB, it'd be less than if you had 500GB and you'd have more on 750GB.

  • Is there any script or batch program that can pick a xml file...

    Hi,
    Is there any script or batch program that can pick a .xml file from a folder and place it in a different folder on the same directory periodically without using an XI interface.
    Thanks,
    np

    Hi Nadini,
    Please refer below link for how to sechdule a batch file.
    [Schedule Batch File-How to?|http://www.tech-archive.net/Archive/WinXP/microsoft.public.windowsxp.general/2006-04/msg01349.html]
    And please refer below links for how to write a batch file and other one as batch file commands.
    http://www.wikihow.com/Write-a-Batch-File
    http://www.aumha.org/a/batches.php
    these two links was a click away in google :).
    regards
    Aashish Sinha

  • Is there any form that works like Jtable that can be written into the html

    Is there any form that works like Jtable that can be written into the html or jsp format?
    <INPUT TYPE="SUBMIT" NAME="command" VALUE=""> refer to a Sumbit Button.
    There no such thing below "I think"but just dreaming
    Is there something like
    <INPUT TYPE="TABLESUBMIT" NAME="customer" VALUE={rowcolumn(1,3,"peter"),rowcolumn(last,"name","jane")}> ......

    Keep dreaming. As long as you are using HTML you are stuck with
    all of its limitations. Among these is the lack of a JTable.
    You have several options:
    1) Use an HTML <TABLE>. For plain text you just put the
    text between <td></td> tags. For input you put the input
    as <td><input...></td>.
    2) Extend #1 by creating your own object to draw the table.
    You can do this in either Java or JavaScript. There are several
    examples on the internet of how to do this. Some even include
    sorting by clicking the column headings.
    3) If you really want to use a JTable then you can write a JApplet
    and put it on your JSP page.

  • Is there a HP color laser printer that can define custom-size media sizes in WINDOWS?

    Is there a  HP color laser printer that can define custom-size media sizes in WINDOWS?

    Have you tried downloading and installing the drivers from here?
    http://h20000.www2.hp.com/bizsupport/TechSupport/SoftwareDescription.jsp?lang=en&cc=us&prodTypeId=18...
    //Click on Kudos and Accept as Solution if my reply was helpful and answered your question//
    I am an HP employee!!

  • Is there any way to an index that can be used to include the "OR condition "?

    Hello I have some questions.
    The test was conducted in the following procedure .
    create table test
    c1 varchar2(10),
    c2 varchar2(10),
    primary key(c1)
    create index test_idx1 on test(c2);
    Command> explain select * from test where c1 = 'AAAAAAAAAA' or c2 = 'AAAAAAAAAA';
    Query Optimizer Plan:
      STEP:                1
      LEVEL:               1
      OPERATION:           RowLkRangeScan
      TBLNAME:             TEST
      IXNAME:              TEST
      INDEXED CONDITION:   <NULL>
      NOT INDEXED:         TEST.C2 = 'AAAAAAAAAA' OR TEST.C1 = 'AAAAAAAAAA'
    Command>
    Command> explain select * from test where c1 = 'AAAAAAAAAA' and c2 = 'AAAAAAAAAA'
    Query Optimizer Plan:
      STEP:                1
      LEVEL:               1
      OPERATION:           RowLkRangeScan
      TBLNAME:             TEST
      IXNAME:              TEST
      INDEXED CONDITION:   TEST.C1 = 'AAAAAAAAAA'
      NOT INDEXED:         TEST.C2 = 'AAAAAAAAAA'
    Command>
    By including the "OR condition " in this test does not use the index.
    Is there any way to an index that can be used to include the "OR condition "?
    Thanks.
    GooGyum.

    A database cannot in general use indexes in this way for an 'or' involving two different columns. However, for this specific example one can easily rewrite the query using 'UNION' to use the relevant indexes while still giving the same (correct) result:
    Command> explain select * from test t1 where t1.c1 = 'AAAAAAAAAA' union select * from test t2 where t2.c2 = 'AAAAAAAAAA';
    Query Optimizer Plan:
      STEP:                1
      LEVEL:               1
      OPERATION:           RowLkRangeScan
      TBLNAME:             TEST
      IXNAME:              TEST
      INDEXED CONDITION:   T1.C1 = 'AAAAAAAAAA'
      NOT INDEXED:         <NULL>
      STEP:                2
      LEVEL:               2
      OPERATION:           RowLkRangeScan
      TBLNAME:             TEST
      IXNAME:              TEST_IDX2
      INDEXED CONDITION:   T2.C2 = 'AAAAAAAAAA'
      NOT INDEXED:         <NULL>
      STEP:                3
      LEVEL:               1
      OPERATION:           OrderBy
      TBLNAME:             <NULL>
      IXNAME:              <NULL>
      INDEXED CONDITION:   <NULL>
      NOT INDEXED:         <NULL>
      STEP:                4
      LEVEL:               2
      OPERATION:           UnionMergeSort
      TBLNAME:             <NULL>
      IXNAME:              <NULL>
      INDEXED CONDITION:   <NULL>
      NOT INDEXED:         <NULL>
    Maybe you can apply a similar trick? If you know there is no possibility of duplicate rows then you can further optimise this (in terms of performance) by using UNION ALL.
    Chris

  • HT5098 How can I read on my Apple Arabic files of Times New Roman or Arial in PC? when I get the files the Arabic letters are separate and not joined. Is there a common font in Arabic that can convert the PC Windows files to  my Apple?

    How can I read on my Apple Arabic files of Times New Roman or Arial fonts made in PC? when I get the files the Arabic letters are separate and not joined. Is there a common font in Arabic that can convert the Arabic  PC Windows files to  my Apple?
    The same with email messages ,
    And when I get Power Point files made in PC Windows, they are like PDF, not Power Point!
    Anybody with a good suggestion?

    Yewtree wrote:
    when I get the files the Arabic letters are separate and not joined
    Do not use MS Word for Mac, it does not support Arabic.  Instead use Mellel, TextEdit, Nisus Writer or OpenOffice.  Try the font Geeza Pro if others do not work.
    What are you using to read email?
    What are you using to read powerpoint?

  • Is there an unlimited music download package that can be purchased or do all downloads have to be bought individually?

    Is there an unlimited music download package that can be purchased or do all downloads have to be bought individually?

    There is no subscription model for iTunes. You purchase the songs you want individually.
    (58812)

  • Is there a text to speech app that can read text books to me?

    Is there a text to speech app that can read text books to me?

    The Apple Support Communities are an international user to user technical support forum. As a man from Mexico, Spanish is my native tongue. I do not speak English very well, however, I do write in English with the aid of the Mac OS X spelling and grammar checks. I also live in a culture perhaps very very different from your own. When offering advice in the ASC, my comments are not meant to be anything more than helpful and certainly not to be taken as insults.
    You don't need an app for that text to speech is biult into OS X.
    http://osxdaily.com/2010/03/28/how-to-make-your-mac-talk-text-to-speech/

  • Apple tv 1st generation won't switch on? No lights but cable works. Is there an internal fuse or battery that can be changed?

    The apple tv 1st gen was updated and then stopped working. I made the mistake of taking to a local repair shop rather than apple and left it with the guy who was working there who said he'd get the repair guy to take a look. when I returned he said the repair guy didn't do apple tv's only phones iPods etc and I took it away. Same device etc and doesn't look to be tampered with, but then again how would I know?
    What could be the problem? Is there an internal battery or fuse
    That can be replaced? Is this costly? Or am I snookered? Thanks
    D

    If the hardware is dead then replacing the device is the only option.  A new one is $100.  What did you mean by "but the cable works"?

  • HT4962 Are there any movies or tv shows that can be played with the Touch?

    Are there any movies or tv shows that can be played with the ITouch?  Attempted to download a tv show, however was advised it was not supported.  Is there a way to configure the show to be played?

    See:'
    iTunes: Frequently asked questions about viewing and syncing videos
    iTunes: May be unable to transfer videos to iPhone, iPad, or iPod
    There are third-party converters like the Free HandBrake program.

  • Is there a maximum number of pictures that can be uploaded to create a photo book?

    Is there a maximum number of pictures that can be uploaded to create a photo book?  I can't seem to drag anymore pictures to my current project.

    I have over 200 photos in my book and it was accepted. There is a limit on each widget though. The interactive widget seems to have a limit of around 30 or 40.

  • I wanted to ask whether the camera for ipod touch comparable to a digital camera? if not are there apps available that can turn it into a digital camera? i want to buy an ipod touch and i like photography....what should i do?plz suggest

    i  wanted to ask whether the camera for ipod touch comparable to a digital camera? if not are there apps available that can turn it into a digital camera? i want to buy an ipod touch and i like photography....what should i do? plz suggest

    The iPod touch has a very rudimentary camera.  It has only a 0.6 MP resolution, no optical zoom, no flash, etc.   There is no app that can improve this as it is limited by the hardware. So it is not a replacement for a digital camera (nor even for an iPhone whose camera has a 5.0 MP resolution.

  • Using Mac OS on multiple monitor is great, but after removing external monitor (2nd monitor) usually windows position originally on the external monitor doesn't get re-positioned to default monitor. Is there any shortcut key or utilities that can reset wi

    Using Mac OS on multiple monitor is great, but after removing external monitor (2nd monitor) usually windows position originally on the external monitor doesn't get re-positioned to default monitor. Is there any shortcut key or utilities that can reset wi

    Got the "apple firewire ntsc" choice to show up even if grayed out and "missing" under "audio/visual" menus by recreating choices in Easy Setup under "final cut pro" MENU thank GOODNESS because I was reading horror stories on here about this under another thread with someone trashing preferences, reinstalling and the works and still not getting it to show up...on my search now for an analog/digital converter up at b&h...find it odd that the s video connector wouldn't show the crt monitor when I put both displays through the 3870...I switched it back to see if it worked again when only the one dell monitor display was there and there it is again mirroring the screen display on my desktop...just can't be seen as an "external monitor" in fcp...couldn't find anything specific in the shane ross threads to this. I'm sad the program doesn't just see the s video connection though the 3870 though my computer does fine and will query up at b&h in regard to what might be affordable as far as a digital/analog converter. It's also weird in itself that when I put the two dell monitors on the one card my computer no longer could see the s video crt connection...makes no sense. Will report in later as to what I discover up at b&h as I'm sure there's a world of people out there using this sony crt monitor still even into the upgrades with computers and software so I imagine therein lies the solution. Thanks again and I'll report in as to what hardware might be suggested for me.

  • Is there a digital business card reader that can feed iContacts?

    Is there a digital business card reader that can load contact information into iContacts?
    If yes, what is it?  If no, is there a way to load contact information into Outlook for Mac and then export it to iContacts?

    1, people tend to recommend powered readers, as obviously they have their own power source and won't rely on what they're connected to. I have an old Belkin (model F5U240) that still works, but I don't think that it's made anymore (it's a CF only reader)
    2, we are just fellow users here, and none of us know what Canon might, or might not, be planning. On the basis that the power was reduced in iOS 4, my opinion is that it's doubtful (though I'm not always right ). You can try leaving feedback : http://www.apple.com/feedback/ipad.html

Maybe you are looking for

  • Invoice Correction Request - RK

    I created an invoice correction request with reference to an invoice. Changed the quantity on it from 3 to 1. So the customer will need to pay less than what they were supposed to pay. No amount has yet been received from the customer. Now where do I

  • Regarding delta .. Could you help me please ..

    Dear All,, I have a problem in extraction and it is not solved almost one weeks. I have delta in Quotation (Business content). And now the extraction is getting error. The error is conversion over-flow (this error happen in CRM user-exit not in BW).

  • Ram For macbook and macbook pro?

    hello i took out the 2 gigs of ram in my old macbook pro and ungraded to 4gb. can i take those 2 667 ddr2 dims and put them in my sisters white macbook and upgrade it from 1gb to 2gb? they are both 667 ddr2 i think it should work as long as it fits.

  • Can we customize ADF Train flow to remove a Train stop on some condition?

    Hi,   Can we customize ADF Train Flow using customization frame work and remove one train stop using some condition? Thanks Abhilash

  • CS5 shuts down immediately after opening

    It worked fine yesterday. Today when I start the program, it appears to go all the way through its start-up procedures then immediately shuts down and disappears. I'm unable to access anything in the menus before it shuts down so I can't check or cha