Is this a good way for loading and handling an xml file?

I'm new to xml files, but it seems to me that a good way to handle them may be this:
- create an xmltype table with a unique xmltype column
- load the xml file in the xmltype column of the table
- writing a procedure for scanning the whole column of the table by using the extractvalue built-in function for inserting the different nodes of the xml file (just loaded) in the final tables (to link correctly the father and son tags with foreign keys)
Does it seem to you a good way to load the nodes of a xml file in a relation database?
Thanks!

Is this the 10gR2 Express Edition you mentioned over in How to load a XML file into a table or a different version?

Similar Messages

  • Is this a good idea for house keeping? (re: render files)

    I have half a dozen or so projects that I am all finished with, and want to make some disc space.
    I am thinking a good way to make some is to delete all render files for a project, then open i and just re-render all so only actual files used in the timeline take up space.
    Is there any reason why this isn't a good idea?
    cheers
    hugh

    Not that I can think of.
    Shane

  • What is a good way to convert and open a .cwk file?

    Trying to convert and open a .cwk file.  Pretty sure it's an old ClarisWorks file but I got it as an attachment in an email and my iPhone mail won't allow me to open it AT ALL...Please, Help...

    All AppleWorks (& ClarisWorks) files will have the .cwk extension. The iWork applications - Keynote, Pages & Numbers - can only open AppleWorks 6 presentation, word processing & spreadsheet documents, respectively. They will not open any other type of AppleWorks 6 files or any AppleWorks 5 or any version of ClarisWorks files.
    Since you're running Tiger you can run AppleWorks 5 or 6 as well as earlier versions of ClarisWorks in Classic. If you don't have AppleWorks, I recommend getting AppleWorks 6.2.4 which will open .cwk files & save the presentation, word processing & spreadsheet documents as something the iWork apps can open.

  • RPT_MOPZ_COPY_STACK_XML shows SC version differs for JAVA and DUAL-Stack xml files

    Hi All,
    I am using the report/program RPT_MOPZ_COPY_STACK_XML to copy the stack xml file I used from a previous upgraded system. Systems are identical. However, report shows below..
    "Software Component Version KRNL64UC7.20 [01200615320200013056] differs between <System1> and <System2>"
    and
    Software Component Version SAPJVM6.1 [01200615320200012982] differs between <System1> and <System2>"
    However, this is not the case when checked, it's strange that this particular component has the same version between the two systems, but the report says they differs in version.
    Please help check how to resolve the issue.
    SAP notes mentioned in below KBA were already obsolete. Solution Manager system just upgraded to 7.1 SP11.
    1711612 - RPT_MOPZ_COPY_STACK_XML Report Troubleshooting.
    We would appreciate your response for us to resolve this issue. Thanks.
    Regards,
    Philip

    Hi Jansi, Divyanshu,
    Both system have the same patch levels.
    Here the situation, SYS1 is where we generated the stack xml file. Afterwards, used that stack file to upgrade SYS1.
    Now we built SYS2, ensuring it has the same components version with the un-upgraded version of SYS1, so yes they have same patch number for same components, for this issue, kernel and jvm.
    Thus, instead of running MOPZ for SYS2, we used RPT_MOPZ_COPY_STACK_XML to convert the stack file of SYS1 to be used for SYS2.
    This is where we encountered below messages, when performing the copy.
    "Software Component Version KRNL64UC7.20 [01200615320200013056] differs between <System1> and <System2>"
    and
    Software Component Version SAPJVM6.1 [01200615320200012982] differs between <System1> and <System2>"
    We previously used SOLMAN 7.0 SP23, and the report is working fine there. Then recently, solman was upgraded to 7.1 SP11, and now the report is not working with the above issue.
    We would appreciate if you could share actions on how we can fix the issue.
    Regards,
    Philip

  • Loading, processing and transforming Large XML Files

    Hi all,
    I realize this may have been asked before, but searching the history of the forum isn't easy, considering it's not always a safe bet which words to use on the search.
    Here's the situation. We're trying to load and manipulate large XML files of up to 100MB in size.
    The difference from what we have in our hands to other related issues posted is that the XML isn't big because it has a largly branched tree of data, but rather because it includes large base64-encoded files in the xml itself. The size of the 'clean' xml is relatively small (a few hundred bytes to some kilobytes).
    We had to deal with transferring the xml to our application using a webservice, loading the xml to memory in order to read values from it, and now we also need to transform the xml to a different format.
    We solved the webservice issue using XFire.
    We solved the loading of the xml using JAXB. Nevertheless, we use string manipulations to 'cut' the xml before we load it to memory - otherwise we get OutOfMemory errors. We don't need to load the whole XML to memory, but I really hate this solution because of the 'unorthodox' manipulation of the xml (i.e. the cutting of it).
    Now we need to deal with the transofmation of those XMLs, but obviously we can't cut it down this time. We have little experience writing XSL, but no experience on how to use Java to use the XSL files. We're looking for suggestions on how to do it most efficiently.
    The biggest problem we encounter is the OutOfMemory errors.
    So I ask several questions in one post:
    1. Is there a better way to transfer the large files using a webservice?
    2. Is there a better way to load and manipulate the large XML files?
    3. What's the best way for us to transform those large XMLs?
    4. Are we missing something in terms of memory management? Is there a better way to control it? We really are struggling there.
    I assume this is an important piece of information: We currently use JDK 1.4.2, and cannot upgrade to 1.5.
    Thanks for the help.

    I think there may be a way to do it.
    First, for low RAM needs, nothing beats SAX. as the first processor of the data. With SAX, you control the memory use since SAX only processes one "chunk" of the file at a time. You supply a class with methods named startElement, endElement, and characters. It calls the startElement method when it finds a new element. It calls the characters method when it wants to pass you some or all of the text between the start and end tags. It calls endElement to signal that passing characters is over, and to let you get ready for the next element. So, if your characters method did nothing with the base-64 data, you could see the XML go by with low memory needs.
    Since we know in your case that the characters will process large chunks of data, you can expect many calls as SAX calls your code. The only workable solution is to use a StringBuffer to accumulate the data. When the endElement is called, you can decode the base-64 data and keep it somewhere. The most efficient way to do this is to have one StringBuffer for the class handling the SAX calls. Instantiate it with a big enough size to hold the largest of your binary data streams. In the startElement, you can set the length of the StringBuilder to zero and reuse it over and over.
    You did not say what you wanted to do with the XML data once you have processed it. SAX is nice from a memory perspective, but it makes you do all the work of storing the data. Unless you build a structured set of classes "on the fly" nothing is kept. There is a way to pass the output of one SAX pass into a DOM processor (without the binary data, in this case) and then you would wind up with a nice tree object with the rest of your data and a group of binary data objects. I've never done the SAX/DOM combo, but it is called a SAXFilter, and you should be able to google an example.
    So, the bottom line is that is is very possible to do what you want, but it will take some careful design on your part.
    Dave Patterson

  • Is there any way to load and play the iPad scrabble app on my Macbook?  i can't believe there is no scrabble app for my mac

    Is there any way to load and play the ipad scrabble app on my macbook?

    There hasn't been a Scrabble version for OS X since 10.3 -10.4 on PPC, the intel swtich and they just left.
    Scrabble owners will sue the living daylights out of anything that looks like it or uses the name.
    Would love to play on my new Mac latop
    Apple in their infinite wisdom didn't allow iOS apps to run/ported  as widgets etc on OS X Dashboard like many users requested long time ago.
    There is no Scrabble widget on Dashboard downloads page or anything close to it.

  • What is a good way to load 80 million documents in DocumentDB?

    I am having problems loading a large set of data.  We want to load 80 million documents.  We are trying to do testing for an IOT solution that will end up having a lot of data in it.  I followed the instructions to use a stored procedure to
    do a bulk load provided by Ryan CrawCour on the Microsoft Site:
    https://code.msdn.microsoft.com/windowsazure/Azure-DocumentDB-NET-Code-6b3da8af
    But it throws exceptions when we load 2,000 - 5,000 documents.  Our documents are only about 80 characters.
    Error: One or more errors occurred., Message: Exception: Microsoft.Azure.Documen
    ts.RequestRateTooLargeException, message: {"Errors":["Request rate is large"]},
    What is a good way to load large datasets?  ( Load backups, migrate data, ... )  Or is DocumentDB just a wrong choice when you have millions of rows to load?
    Thanks

    Hi,
    I had been working on this from around one month and I am happy to say that my code works. Was able to upload around 0.5 million documents in 20 min. 
    The configuration was Document DB with S3 , I scaled out for 16 collection for sharding, I think you need to shard out more. This will depend on how much each document takes.
    So the Calculation goes like if each document is lets say on an average 2Kb of Size and you have 80 million documents that will come out to be 160GB
    That means you will need more than 16 collections to store as at Max 1 collection can have 10GB of Data. So to be on the safer side I would say lets go for 3 times the storage so 48 collections . If all of them are at S3 than you have 2500 RUs spread across
    48 collections and I am sure if you do insertion now you will not get Request Rate too large exception.
    I have come up with this code hopefully it will help you as well.
    https://social.msdn.microsoft.com/Forums/azure/en-US/d036afe2-78ec-45ee-8b0d-297f0f5320fe/azure-documentdb-bulk-insert-using-stored-procedure.
    For Sharding you can have look at
    https://msdn.microsoft.com/en-us/library/dn589797.aspx?f=255&MSPPError=-2147217396.

  • Please make this a good experiance for my first post on any board.  READ ME

    Hi all. Well first off, let me start by saying that my whole life I've owned PC's. And I'm not hacker Elliet. But I've gotten to know them pretty well. All the way from Windows 3.1 that came out a long time ago (more than 10 years ago)
    So after a while of hearing about MAC's I decided to start small and get an iPod (since they are so popular here in NYC) and see what apple was about. Well I really saw that Apple had a great product and started asking about their computers. And did plenty of research. And before the new Intel Macs came out, I was going to get a powerbook. But I had a feeling a new laptop was coming out and waited a lil while and sure enough. The Macbook Pro came out. So I went out and did all my research (as to this being the first real purchase of a Apple product and knew about the possible implications of a new first gen Intel chip in a apple product litterally making history) I knew I might become a new beta tester.
    So I started looking on these boards and did 2 weeks worth of hard research to see if the Mac Book Pro (MBP) was for me. And after all the problems i saw (ex: The whine, Right speaker distortion, heat coming from it, white line at bottom of screen, etc) I never saw or read anything about AOL connectivity problems. And I know, I know... alot of you are probably going to gripe and complain about AOL sucking and yada yada yada, but please. Cut me some slack. I actually like AOL. I got on it back in 92 when it came out, and really enjoyed it. And have been on it since. I like chatting on there, and so forth. And I hope you help with my problem instead of telling me to go get "a real ISP" I do have a real ISP, but I like my AOL too.
    So now to my problem....
    I have a Sony Viao 1.8ghz PC with 512 ram, 80 gig hard drive, 10/100 ethernet port. Connected to a Belkin Router (more info below on specs of router) connected to Opt Online Broadband Cable internet with VoIP. I use my macbook pro on the wireless network at my home.
    I got a mac book pro 1.83 ghz running 512 ram on Tiger OSX 10.4.6 I thought that I would wait till a connectivity patch (which I thought would have been 10.4.6) fix the airport problems came out till I posted something. But now that I've tried everything, I'm hoping you open this thread and help me and possibly someone else out there as well. I just d/l'd and installed the 10.4.6 update last night and it did'nt help. So here's more info on my specs. I have a belkin router wireless G 2.4 ghz 54mbs router and I have configured the router with it's firewall, wap2 encryption (as it's the only selection the router has that is available that matches what airport comes with in encryption) I hid my network, and have tried to upgrade the firmware on the router.
    Now Here's the real problem. I can connect to AOL on my MBP when I connect the actual ethernet cable to the MBP's Ethernet port (after I have let the cable modem do a hard reset to configure itself to a mac) I can connect to AOL. But when I disconnect the cable and return it to it's normal config, I can't connect to AOL. I can connect to the internet via safari, and firefox, and even AOL's IM on iChat. I can use Itunes all kinds of things. I can even play warcraft 3 wirelessly on battlenet. But connecting to AOL is a pain in the @$$. It's the only proggy I have that won't allow it to connect. I keep getting the error message "Your AOL connection ended because the AOL host was unable to start a new session. Please try to sign on again." Of course All i see for a while is the spinning black and white circle. And it goes through step 1 and 2, goes straight to 6. Then it goes blank, and BAM! That message pops up. And what's so frustrating is that I've tried every possible configuration on AOL, my router and even system preferences, for it to let connect. I even went into system preferences on the mac and went down the the Internet & Network "Sharing" icon and tried 100 possible combinations on that in the services tab, and firewall tab. I've turned them on, off, tried to make exceptions ETC. And no matter how much I play with the personal file sharing and windows sharing advanced settings and sigh every possible combination to make AOL connect via wirelessly. And nothing. I then even tried to fix the connection under AOL in setup. I've gone through and selected TCP Script, Airport Script. Cable Script, And practically every script I can think of. And nothing. I even went on to AOL and downloaded thier alleged fix to wireless accessing AOL. And nothing. I've been searching all over google, AOL's website, and all over these discussion boards and no mention of anyone even having the same problem. But please, someone out there with their infinit knowledge of how Macs run and having more experience than me, Please make this a good experiance for my first post on any board anywhere reguarding a mac. A MBP at that too.
    An update to this, But amazingly enough, I actually got it to connect to AOL wirelessly for the first time yest. But I have no Idea how i did it. I tried for 3 hours to reproduce it and no luck. I was accessing my router at it's website config screen and somehow I clicked on connect to AOL and while it was trying to connect to it, i reset the router and BAM, it connected to AOL. And I was in shock. I thought I solved it. Somewhere while it was reseting the router it connected and stayed connected to AOL till I signed off and tried to sign back on to see if I could now connect, and guess what. The same dumb message keeps popping up "Your AOL connection ended because the AOL host was unable to start a new session. Please try to sign on again." And all I did was sign off to test it, thinking I had fixed the problem. I tried for 3 hours like I stated above, and BAM got it connected to AOL wirelessly again (somehow while the router was resetting). And thinking I fixed it, or figured out the trick to getting it to work, signed off... I kissed aol goodbye again. And have been unable to reproduce the "glitch". SIGH Can someone out there please help me?
    I think I've made this message as detailed as possible, but please, can someone give me some constructive criticism on how to fix my AOL wireless connectivity problems. Do you know if it's my router? My MBP? AOL software? BTW, I got AOL software version 10.3.7 (Rev 4136.310 US) The latest version I D/L'ed from the AOL website. Anyone know If I should turn on or off some things such as personal fire sharing on, or firewall off or on? ANYTHING. Please. I've put alot of time into writing this post and making it as detailed as possible. And been having this problem for the past 3 weeks that I've had my MBP, and have waited long enough to use my AOL. If you need any further information or suggestions on making AOL work, please let me know. Thank you for taking the time to read all of this, and I really appreciate all of you in the time you take in responding back in trying to help me. I'll be monitoring this post almost hourly. So I hope someone out there can help. Thanks so much again. And help me make this transition to Mac a pleasant one knowing that there is a mac community out there willing to help a new mac client. Again, Many thanks
    In Heath and Wealth,
    Bruce
    Mac Book Pro 1.83 GHZ 512 Ram   Mac OS X (10.4.5)  

    I FIXED IT!
    FYI for the rest of you that might be having the same problem. DON'T USE A BELKIN ROUTER WITH AOL ON A MBP!!!!! It ***** wirelessly. or even hard connected, it won't connect. I went to best buy today, and got a refund on the belkin. I then went to J&R and got a D-Link router. And now it works perfect. I can now chat on AOL yet again, and I tried all the other web browsers I have and messengers, and warcraft 3 online via battlenet. And it works great. I want to give you guys a special thanks for taking time out to answer back to my post. FYI! Belkin wireless G routers do not connect you to AOL wirelessly on MBP's. No matter how much you mess around on them. I highly recommend a D-Link Router. They are easy to set up as long as you READ ( AND I MEAN IT!!!) read the instructions before you set anything up on it. Use the CD that it comes with, and you'll be good to go. Set it up and it works great Almost no dead zones in the house, and now I can use the MBP with all it's cababilities. Thanks people. I really appreciate it.
    P.S. I called belkin last night when i decided to get a refund on my router for today and when i talked to the tech, after puersuading him to tell me the truth. And stop BS'ing me, he broke down and admited that AOL does not work wirelessly on MBP's. So to make a long story short this time, There you go. And one last note, I'm very happy now with my d-link router. I honestly thought it would suck. Not being a brand name router or anything. But amazingly, it works like a brand name item! Again, many thanks all.
    Bruce

  • How can I DISABLE the pop up 'Would you like to copy it to Library', preventing this message from bothering for each and every book, again and again, time after time? (Windows 7 64bit US).

    How can I DISABLE the pop up 'Would you like to copy it to Library', preventing this message from bothering for each and every book, again and again , time after time? (Windows 7 64bit US).
    I guess this may be a feature request. Adobe may think this is a good message for every new eBook.
    I sure would like to decide about that myself.
    Thanks in advance if this will be changed.

    singmk wrote:
    Decided to setup the mail for exchange on my N8 so I could see my work emails. Worked like a charm but after a couple of hours decided I didn't like being that contactable so deleted the mailbox.
    Now to the problem, during setup I was forced to enable the phone lock and had to pick a 7 digit alphanumeric code. Fair enough I thought and went ahead. When I removed the mailbox however the lock remained in place with the default auto time of 30 minutes. When I checked in Phone management there is no option to disable this lock so I thought I could at least change the default time to something bigger but when you try, it remains at 30 mins. You also can't disable the auto time as it pops up an error message saying can't unlock phone.
    Does anyone know if I'm missing something obvious here or is this something which can't be disabled once it's switched on? I've done a soft reset back to factory settings with no luck and the only other thing I can think of is re installing the firmware which seems a bit extreme.
    Would like to hope there is some way to have control over this. Can someone help?
    Which firmware your N8 having now? You can check firmware by choosing Call, then type *#0000#.
    My N8 works fine on security setting and able to define Phone auto lock period, by choosing Menu>Settings>Phone>Phone management>Security settings>Phone and SIM card>Phone auto lock period>User defined>Lock after(minutes)
    You will prompt to enter Lock code each time u define auto lock priod or enable/disable auto lock.
    Hope this can help you.
    If you find this post helpful, please show your appreciation by clicking the Kudos star at the left. If it provides you the solution, please click on the GREEN Accept as Solution button at below

  • An iBook has reversed the way it loads and scrolls.

    An iBook has reversed the way it loads and scrolls i.e. instead of turning the page right to left to go to the next page I need to swipe left to right. But my other book are fine. Can anyone help?

    I have, but if I don't have that particular external hard drive connected when my time machine backup hard drive is connected, then I don't think it is all backed up together.  It is getting too complicated to get out all this equipment every time I want to buy some music. 

  • Is (4770 3.5 i7 qouad core 8 mb cach) good enough for premier and after effect?

    Hi guys,
    am buying the new imac 27" with its maximum features: 32 GB, 1 TB ssd, NVidia gtx 780 with 4GB, but I am worried about the cpu (4770 3.5 i7 qouad core 8 mb cach) is it good enough for premier and after effect?

    Thanks John, but I've already read that page. I have just a simple question about the performance of "4 core" and "6core" if anyone had already tried both of them.

  • Good source for tables and reports

    Hello!
    Does any one know a good source for tables and reports in SRM (EBP) I really
    looking to report on the Org Structure.
    But any information you can give me would be really helpful.
    Regards
    sas

    Hi,
    See these threads :
    SRM Tables
    SRM Tables
    Re: Availability of Standard Reports in SRM
    SRM standard reports?
    SRM Reports
    For developing custom reports,you can use the stanadard tables and Function modules.
    BR,
    Disha.

  • I want to use my Time Capsule as a central 'hub/hard-drive' in order to keep all my working files in one place. I then plan to use my laptops/desktops as peripheral devices for editing and creation of these files. Is it possible? Create a personal cloud?

    I want to use my Time Capsule as a central 'hub/hard-drive' in order to keep all my working files in one place. I then plan to use my laptops/desktops as peripheral devices for editing and creation of these files. Is it possible? To create a personal cloud?
    Can someone advise as to whether i can do the following:
                                Future Internet connection -------------------TIME CAPSULE (containing all files) -------------- Backed up on the WD 2T Hard-drive I have
                                      (not connected yet)                                         I                                                          (*connected to timecapsule physically)
                                                                                                            I
                    I                                         I                                                I                                                              I                                                I
          Macbook Pro                             iMac                                       HP (PC)                                             OLD Macbook Pro                         iPhone
    (used for remote working)       (Used for home working)     (used for heavy CAD and rendering)    (not being used for anything at the moment)        (& iPods)
    I am looking to have all my files in one place as i am hopelessly disorganised. I know the online clouds are a good solution (used Dropbox at work and uni for 3 years) however i am wanting to create my own 'dropbox/icloud' at home. So whenever i get back home with my laptop, any work i have been working on whilst out that day is updated to the timecapsule, and then ultimately as i turn on the other devices, they update to those newer versions of the files. Please tell me that the 3TB time capsule i have can do this, otherwise it feels rather overpriced as a wireless storage device?
    Another note (to those in the know) If i am to be working on large files (REVIT/SOLIDWORKS/KEYSHOT/CREO/AUTOCAD) - is the timecapsule connection good enough to support editing and updating these files?
    I know i may be asking a question that many have before, but as a bit of a technical novice I wanted a clear-cut answer to my specific circumstances. Your help is greatly appreciated.
    (*can i use this WD hard-drive that is connected to the Time Capsule as a back up? so that the time machine back-ups/any back ups are also backed up onto this one? can the WD be a backup for the TC?)
    Kind Regards
    Joe

    The diagram was supposed to look more like this......
    Internet ---------TIME CAPSULE(containing all files) --------WD 2T Harddrive
                                                I
         I                           I                          I                            I                                   I
    Macbook Pro         iMac                 HP (PC)            OLD Macbook Pro           iPhone
    Sorry!
    Regards
    Joe

  • I have been working on the same numbers file for the past few weeks.  The last time I opened it was 1 week ago.  Today when I tried to open it I am unable and getting a message that the file is invalid and the index.xml file is missing.

    I have been working on the same numbers file for the past few weeks.  The last time I opened it was 1 week ago.  Today when I tried to open it I am unable and getting a message that the file is invalid and the index.xml file is missing. 

    Hi Tracie,
    I upgraded to Maverick OS X 10.9.5, numbers spreadsheet is saved. Upon re-opening, it appears to be frozen, a warning "file is invalid as index.xml file is missing". I checked, and the file is not "locked". This appears to occur only with using the new numbers app. When I open previous spreadsheets from old iWorks, no such problem occurs.
    How did you resolve your problem?
    Would appreciate any help here.
    Thanks,
    Deehay

  • Is there a way to Point the Exact Location for an Error In an XML File?

    Dear Members,
    I am validating an XML File with an XML Schema. The XML Schema is in the Database.
    I am using presently isschemavalid to check for the validity of the XML File.
    But this is not showing where the error is there in the XML File.
    Is there any way where I can check this one...(Validation should happend only in the Database side)
    Regards
    Madhu K

    Read about advantages of [url http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14259/xdb03usg.htm#sthref315]schemaValidate  method over isSchemaValid.
    Best regards
    Maxim

Maybe you are looking for

  • HDMI Connection Handshake

    I'm helping a neighbor whose FIOS TV was not hooked up with an HDMI cable to her HDTV using HDMI cable.  They used component cables, but she needed the component input for her DVD player.  So I bought an HDMI cable and connected it to HDMI input on t

  • Very large values from accelerome​ter

    Hello, I did a small impact test in the lab, and recorded the acceleration. But I got very large peak numbers, like 300g, which is unreasonable. My vi has been checked by many people, seems like no problem. Does anyone have the idea why I got such bi

  • Tables in CRM

    Which are the tables in CRM? Regards, Rajesh Banka

  • Is Photoshop Elements 13 compatible with late 2013 Mac Pro?

    Does anyone here run PSE 13 smoothly on the late 2013 Mac Pro? My copy runs very sluggish on my Mac Pro even though it has a 3.7GHz quad-core Xeon processor with 16GB of RAM. For example, if I drag a slider, it does not move smoothly. The slider will

  • Keyboard shortcut i doesn't work, only works if i press fn key. but listed as i in keyboard shortcuts

    hi the shortcut i has never worked with my computer, (MacBook Pro 2013 OSX 10.9). regardless of whether i use premiere pro cs6 or cc, whether i set my keyboard to british or german. it only works if i press the fn key, sometimes doesn't even work the