Index to retrieve all instances which have a certain node

Hello!
I work with the oracle 10g xml db and I have got the table of the xmltype
<xsd:complexType name="headerType" xdb:SQLType="HEADER_T">
<xsd:sequence>
<xsd:element name="time" type="xsd:dateTime"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="contentType" xdb:SQLType="CONTENT_T">
<xsd:choice>
<xsd:element name="assignment" type="assignment:AppsXx_Assignment_V"
xdb:SQLName="ASSIGNMENT" minOccurs="1"/>
<xsd:element name="organization"
type="organization:AppsXx_Organization_V"
xdb:SQLName="ORGANIZATION"/>
<xsd:element name="qualifications"
type="qualifications:AppsXx_Qualifications_V"
xdb:SQLName="QUALIFICATIONS"/>
</xsd:choice>
</xsd:complexType>
<xsd:element name="root" type="oebs:rootType" xdb:defaultTable="OEBS"/>
And I need to retrieve all instances which have "assignment'" node
SELECT * FROM oebs
where existsNode(OBJECT_VALUE,'/oebs:root/content/assignment', 'xmlns:oebs="http://www.r.ru/oebs')> 0;
Which index could help me?
Thanks

Use below to export to CSV, then filter the file in excel and remove all except animal
dd-PsSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue -WarningAction SilentlyContinue | Out-Null
$url = "<site url>"
$listName = "<list name>"
$path ="c:\Columns.csv"
$web = Get-SPWeb $url
$list = $web.Lists.TryGetList($listName)
$list.ContentTypes | % { $_.FieldLinks } | select Name | Export-Csv -path $path
Can also try
http://social.technet.microsoft.com/wiki/contents/articles/18830.sharepoint-2010-import-data-from-excel-into-a-list-using-powershell.aspx

Similar Messages

  • PBL to retrieve all instances assigned to a participant

    Hi there,
    I have a requirement to print a series of work items as a single PDF. I think i may have a solution but struggling with the PBL - any help much appreciated. My solution is this..
    * Participant will take a number of work items using bulk actions -> assign to me
    * Use a Global Interactive to call a screen flow
    * Screen flow activity includes PBL to retrieve all work items assigned to the current user
    * Take all the required data from the work items and pass to a PDF generation service as one print item.
    Could anyone please help with how I would retrieve all instances assigned to the current user in PBL? I am using Oracle BPM 10.3.
    thanks
    Neil
    Edited by: user13297570 on Jul 2, 2010 9:32 AM

    Neil - try something like this to get a list of instances assigned to the current participant:
    busProcesses as BusinessProcess
    instanceFilter as InstanceFilter
    instance as Fuego.Papi.Instance
    processName as String = "/" + "<your process Id here>"
    connectTo(busProcesses, url : Fuego.Server.directoryURL,
       user : "<a Participant's name that is used for API access here>",
       password : "<the password here>", process : processName)
    create instanceFilter
        using processService = busProcesses.processService
    instanceFilter.searchScope = SearchScope(participantScope : ParticipantScope.ALL,
    statusScope : StatusScope.ONLY_INPROCESS)
    addAttributeTo instanceFilter
        using variable = VarDefinition.PARTICIPANT_ID,
              comparator = Comparison.IS,
              value = Participant.id
    // list the instances
    for each inst in getInstancesByFilter(busProcesses, filter : instanceFilter) do
    endDan

  • After updating to IOS 8.2 my iphone 5 constantly searches for a network. I have tried resetting network, restoring from an earlier back up, resetting as a new phone - all of which have been unsuccessful- HELP !!

    After updating to IOS 8.2 my iphone 5 constantly searches for a network. I have tried resetting network, restoring from an earlier back up, resetting as a new phone - all of which have been unsuccessful… HELP !!

    Hi chuckrabaw,
    Thanks for using Apple Support Communities. Based on what you stated, it sounds like the iPhone is searchiong for a network. It looks like you have already done some troubleshooting. There are a few steps listed in this article you did not mention trying, they may be able to help the issue.
    If you see No Service in the status bar of your iPhone or iPad - Apple Support
    Cheers,
    Mario

  • Query to retrieve the records which have more than one assignment_id

    Hello,
    I am trying to write a query to retrieve all the records from the table per_all_assignments_f which has more than one different assignment_id for each person_id. Below is the query i have written but this retrieves the records even if a person_id has duplicate assignment_id's but i need records which have more than one assignement_id with no duplicates for each person_id
    select assignment_id ,person_id, assignment_id
    From per_all_assignments_f
    having count(assignment_id) >1
    group by person_id, assignment_id
    Thank You.
    PK

    Maybe something like this?
    select *
    From   per_all_assignments_f f1
    where  exists (select 1
                   from   per_all_assignments_f f2
                   where  f2.person_id = f1.person_id
                   and    f2.assignment_id != f1.assignment_id
                  );Edited by: SomeoneElse on May 7, 2010 2:23 PM
    (you can add a DISTINCT to the outer query if you need to)

  • Retrieve all users which is currently participate in a workflow

    Hi,
    In a workflow, is there any service operation that can retrieve all the user ID or name that is currently participating in a workflow?
    Thanks.

    Hi Jasmine,
    thank you for reply, I have a look at the APIs but have not tried it out yet. It seems that it is used to retrive all user that have participate in the workflow, including those that have finished with their task and those currently working on their task.
    Can the API differentiate user that have finshed with task and those that is currently still processing task?
    I need to know those that is still processing task, as another process need to send email to those users.
    Thanks.

  • SQL-Query-Question: get all ID2 which have specific ID1

    Hello,
    I have a table Tab1 with millions of entries like
    ID1    ID2
    1       aa
    4       aa
    1       bb
    4       cc
    I'm looking for a sql-query which gives me all ID2-values which have a all of the supplied ID1, in the example above if I query for 1 4 then I want aa and not bb or cc because bb has only 1 and cc only 4.
    The values of ID1 could be a lot like (1,2,3,5,7,8,9,10,34,4,67,33,53,43...).
    Greetings
    Stefan

    just this
    SELECT ID1,ID2
    FROM Table t
    WHERE EXISTS (SELECT 1
    FROM Table
    AND ID2 = t.ID2
    HAVING COUNT(DISTINCT CASE WHEN ID1 IN (1,4) THEN ID1 ELSE NULL END) = 2
    If you want you can pass values 1,4 through a parameter to make it generic like below           
    DECLARE @ValueList varchar(10)
    SET @ValueList = '1,4'
    SELECT ID1,ID2
    FROM Table t
    WHERE EXISTS (SELECT 1
    FROM Table
    WHERE ID2 = t.ID2
    HAVING COUNT(DISTINCT CASE WHEN ',' + @ValueList + ',' LIKE '%,' + CAST(ID1 AS varchar(5)) + ',%' THEN ID1 END) = LEN(@ValueList) - LEN(REPLACE(@ValueList,',','')) + 1
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • I have numerous different apple products with the new lightening connector, all of which have broken or stopped working after just short periods of time, I have an iPhone 5C, and iPad mini and and iPod Touch 5th gen?

    Hi, I have numerous different Apple products, an iphone 5c, iPad mini and iPod touch 5th gen.
    I have had them all for only relatively short periods of time yet the lightning cable has stopped working on all of them?
    On the touch, charging has stopped completely?
    Is this a manufacturing issue with the new charging system?

    Hi, yes I'm using the original apple cables.
    This definitely isn't user error nor confined just to me, the devices are used by different people in the home.
    On a quick sample around the office (survey of 7 people let me add) 4 of them said the cables had broken on them and had to be replaced.
    Having also searched through the forums it appears this is a fairly widespread issue.
    It's defo not user error!

  • Firefox keeps freezing, I've researched and tried multiple solutions all of which have failed.

    I am using Firefox 7.0.1 on Windows 7. I always have at least 3 tabs open: Yahoo Mail, eBay, and PayPal; I also usually have Facebook and Twitter open, I have tired closing each tab individually to figure out if it was the website causing the issue and the issue still occurs. . I researched my problem for about an hour and found many people having similar problems. I think my Firefox is 'hanging' as mentioned here: https://support.mozilla.com/en-US/kb/Firefox%20hangs. Unfortunately the few things I have tried have not solved my problem. I ran Firefox in safe mode with all plug-ins disabled and the problem still occurred. I checked to see if if it was the CPU usage, my computer normally uses 1-2% for normal browsing but when Firefox freezes it jumps up to 12%. These freezes occur even when Firefox is idle. For example, I am currently using Chrome to tell you about my problem and Firefox just froze for about 45 seconds. These freezes occur roughly every 5 minutes, sometimes less some times more. I am not using an AVG toolbar and my browser is not set on compatibility mode. Please let me know what there is I can do to solve this as Chrome and IE are not suitable for how I work.

    Help > About Firefox > Check for updates
    :The latest Firefox is 8.0 as of today, not everyone will see it available at the same time as serve loads have to be distribute.
    Don't know if it will fix your main problem but chasing bugs might prove easier if current. If freezing is not fixed possibly this article but the problem mentioned is fixed in Firefox 8.0 The article is ...
    freezing at regular intervals: http://blog.bonardo.net/2011/09/30/is-your-firefor-freezing-at-regular-intervals
    : https://addons.mozilla.org/firefox/addon/places-maintenance/
    :<br>Install add-on, run at least the option mentioned in the article, I ran them all. When finished you can uninstall the extension, all without taking taking Firefox down, The extension is one of the new JetPack extensions. (Firefox 8 --Nov 8, 2011-- should not have this particular problem).

  • When opening Firefox, over 10 windows open, all of which have only a single "New Tab"

    I am running Firefox 5.0. Just recently, it started to open multiple (over 10) windows when I start it from the quick start area. All of the windows open with a single tab entitled "New Tab". Any tabs that I had open from my last Firefox session are ignored.
    I've used Firefox for many years.
    I use a desktop running Windows 7 SP1 Professional with an Intel i5 chip.

    It is possible that there is a problem with the files sessionstore.js and sessionstore.bak in the Firefox Profile Folder.
    Delete the files sessionstore.js [2] and sessionstore.bak in the Firefox Profile Folder.
    * Help > Troubleshooting Information > Profile Directory: Open Containing Folder
    * http://kb.mozillazine.org/Profile_folder_-_Firefox
    If you see files sessionstore-##.js with a number in the left part of the name like sessionstore-1.js then delete those as well.<br />
    Deleting sessionstore.js will cause App Tabs and Tab Groups and open and closed (undo) tabs to get lost, so you will have to create them again (make a note or bookmark them).
    See also:
    * [1] http://kb.mozillazine.org/Session_Restore
    * [2] http://kb.mozillazine.org/sessionstore.js

  • Need help retrieving all messages which suddenly disappeared from my inbox

    my computer didn't crash, but suddenly all the messages in my inbox were gone for no reason?! They were very important,and I need to know how to retrieve them.

    Firefox doesn't do email, it's strictly a web browser.
    If you are using Firefox to access your mail, you are using "web-mail". You need to seek support from your service provider or a forum for that service.
    If your problem is with Mozilla Thunderbird, see this forum for support.
    [http://www.mozillamessaging.com/en-US/support/] <br />
    or this one <br />
    [http://forums.mozillazine.org/viewforum.php?f=39]

  • How do I retrieve 'bookmark" icons which have disappeared?

    In FF30,how do I bookmark a site (add a bookmark) when the two relevant icons have disappeared. There is a bookmark icon in the menu list. It shows the current bookmark list. I did add a new folder, but could find no way to add a book mark.

    In current Firefox releases (29 and later), that have have the Australis user interface, the orange Firefox menu button has been replaced by the three-bar Firefox Menu button at the far right end of the Navigation Toolbar and this button is always visible, whether you have the menu bar visible or hidden<br>A consequence of this location is that you no longer can hide the Navigation Toolbar
    *There is a star like button next to the search bar on the Navigation Toolbar to bookmark the current web page and a "Show your bookmarks" button next to it to open the Bookmarks in a drop down menu.<br>You can find "Show All Bookmarks" to open the Bookmarks Manager (Library) at the bottom of this drop-down list
    *If you bookmark a page then "Bookmark This Page" in the Bookmarks menu changes to "Edit This Bookmark"
    *You can make the title bar visible via the "Title Bar" button at the bottom left in the Customize palette window
    It is still possible to have the menu bar visible via the right-click context menu of a toolbar to have menus like the File menu with Print (Ctrl+P) and Print Preview and the Bookmarks menu available.
    See also:
    *https://support.mozilla.org/kb/common-questions-after-updating-to-new-firefox
    *https://support.mozilla.org/kb/how-to-make-new-firefox-look-like-old-firefox
    *FavIcon Reloader: https://addons.mozilla.org/firefox/addon/faviconreloader/

  • How to retrieve all my photos...I have gray icons and question marks

    How to retrieve all my photos. I have gray icond and question marks

    Duplicate post.
    http://forums.adobe.com/thread/1419531
    Your original post has a response which requests more info from you.

  • Hi, my laptop just crashed and I was unable to retrieve all the pictures saved in it. However, I have a backup on my iPod touch. Is it possible to sync pictures from my iPod to my laptop? Thanks.

    Hi, my laptop just crashed and I was unable to retrieve all the pictures saved in it. However, I have a backup on my iPod touch. Is it possible to sync pictures from my iPod to my laptop? Thanks.

    Sync with "new" computer
    https://discussions.apple.com/docs/DOC-3141

  • I just downloaded Yosemite and all my iPhotos have disappeared! I tried importing them from the photo library but it said there wasn't enough space on my hard drive which is rubbish, because they were there before. How do I get them back to iPhoto?

    I just downloaded Yosemite and all my iPhotos have disappeared! I tried importing them from the photo library but it said there wasn't enough space on my hard drive which is rubbish, because they were there before. How do I get them back to iPhoto?

    There are 9 different versions of iPhoto and they run on 9 different versions of the Operating System. The tricks and tips for dealing with issues vary depending on the version of iPhoto and the version of the OS. So to get help you need to give as much information as you can. Include things like:
    - What version of iPhoto.
    - What version of the Operating System.
    - Details. As full a description of the problem as you can. For example, if you have a problem with exporting, then explain by describing how you are trying to export, and so on.
    - History: Is this going on long? Has anything been installed or deleted? - Are there error messages?
    - What steps have you tried already to solve the issue.
    - Anything unusual about your set up? Or how you use iPhoto?
    Anything else you can think of that might help someone understand the problem you have.

  • Why do I not have access to all the features of my Canon MG5320 printer in all applications which use a printer? The printer has two paper paths. The rear path is used for photo paper and other specialty papers. this is only one "unavailable".

    I have an iMac late 2012 with OSX 10.8.
    The MG5320 has two paper feed paths; one at the rear for photo paper, brochure paper, and other specialty papers and a tray for regular 8½x11 paper. It also can print on CDs and DVDs and has an automatic duplexer. Canon provides a utility for printing on the CDs and DVDs and also for printing photos and other specialty items. This is available in Mac format also. I installed the most recent drivers and utilities.
    I also have a HP IBM Compatible computer on which the above printer as well as an Epson are installed. Every option of each printer is available in every software application that has need for a printer.
    The Mac printer dialog varies from one application to another. The only applications that list the option for selecting paper quality which includes photo paper are Office for Mac, Pages, and Numbers. Not likely that I would be using any of these for photo printing. Auto duplexing, however, is not available here or in any other applications.
    The print dialog in Aperture, Photoshop Elements for Mac, ACDSee for Mac, or iPhoto provide the choice of numerous sizes of paper but no option for paper quality. Therefore, I attempted to use the print utility supplied by Canon and updated by Apple for printing some photos. The photos are selected in this utility. When the print command was given I was shown a message that the printer was being reset. It then began printing a spreadsheet, which was not even open, from the front tray on regular paper in fast draft quality.
    It is essential that the rear feed be available for printing photos. The printer will not accept photo paper from the front tray. The greater proportion of my printing is photos or other specialty items all of which use paper that must be fed from the rear feed.
    An acquaintence who considers himself to be somewhat of a Mac expert insists that the printer options that I require are available and all I need to do is look for them. The print dialog should be clear enough that "looking for options" is not a necessity. Even so, I have dilligently searched every variation of the Mac print dialog on my iMac and only the office type applications named above included anything other than the basic printer functions.
    I have also searched numerous locations online without finding a solution. I did, however, find that printing and printing problems seem to be common with several versions of the Mac OS and Mac computers in general.
    I would appreciate it if someone could provide me with a solution. I have no desire to upgrade my Windows OS to Windows 8 which is perhaps suitable for "smart" phones but not desktop computers. However, because of the printing issue I have temporarily put my iMac aside and reverted to using my PC with Windows Vista.
    Help!!

    This is a user forum I feel you need to deal with Adobe customer services or support chat did not work in you case.

Maybe you are looking for

  • Unable to open "compose mail/settings/contacts" in standard view in 2 out of 3 Gmail accounts

    Unable to open "compose mail/settings/contacts" in standard view in 2 out of 3 Gmail accounts. When "compose new mail" is selected "loading...." appears at the top then the page is frozen. ie you can't select inbox etc. Changing from standard to basi

  • Adobe Premiere 12 No Disk in Drive Error

    I have just installed APE 12 on a Windows 7 PC from a DVD purchased from Amazon. The installation was successful with no error messages. When I open APE I get an error message saying "There is no disk in the drive. Please insert a disk into drive \De

  • Updated itunes and now NO itunes store!!!

    Hello,Newbie to this forum. Where do I start, I first upgraded itunes software about 1 month ago and after that, unable to burn cd's.keep getting error (4280).So I learned to live with it for the meanwhile.Now I upgraded the software to see if that w

  • Servers & raid volumes

    Can you mount the same volume on two diffrent servers as long as only one is running it as a share. The other is running back up.

  • SQL Challenge - Returning count=0 for non-existing values

    Hello there, I have a question about our requirement and an SQL query. I have posted this to some email groups but got no answer yet. Here is the test case: SQL> conn ... Connected. -- create the pattern table and populate SQL> create table pattern(i