VFS listPoolSnapshots incomplete results returned

Trying to put some perl scripts together to manage pool snapshots.
One of the VFS "functions" listed is listPoolSnapshots - which returns a
detailed listing of the current snapshots - together with pool information
see
http://developer.novell.com/document...a/bktitle.html
I'm "executing the function" just fine - no error - just very little data
in response : NOT WHAT I EXPECTED FROM DOCUMENTATION
eg
<nssReply>
<pool>
<listPoolSnapshots>
<poolSnapshotInfo>
<snapName>SNAP1</snapName>
</poolSnapshotInfo>
<poolSnapshotInfo>
<snapName>SNAP2</snapName>
</poolSnapshotInfo>
<poolSnapshotInfo>
<snapName>SYS_5_18</snapName>
</poolSnapshotInfo>
<poolSnapshotInfo>
<snapName>SYS_5_14</snapName>
</poolSnapshotInfo>
<poolSnapshotInfo>
<snapName>SYS_5_10</snapName>
</poolSnapshotInfo>
<result value="0"><description>success</description></result>
</listPoolSnapshots>
</pool>
<result value="0"><description>zOK</description></result>
</nssReply>

Hi,
Please try to use the following query text.
(CONTAINS(PlacesId, 'a2ce9dd7-f801-4403-affb-1944bf253255') OR (PlacesId > ''))
Here are two materials for you to take a look at:
http://blog.mastykarz.nl/excluding-empty-text-values-sharepoint-search/
http://social.msdn.microsoft.com/Forums/sharepoint/en-US/2ad1963f-f6e5-4c01-8826-444a6ba8de40/fulltextsqlquery-for-null-value?forum=sharepointdevelopmentprevious
Thanks,
Dennis Guo
TechNet Community Support
Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
[email protected]
Dennis Guo
TechNet Community Support

Similar Messages

  • Oracle view returns incomplete result

    Hello, I have a view on oracle table, but sometimes I found the result from the view is not complete.
    It only returns part of the rows, at the meanwhile, the performance becomes very bad.
    (the only change on the table is a new index be created on it)
    After a did the table EXP / IMP, the performance back to normal (this is what I expedted), AND THE VIEW RETURNS FULL RESULT!
    It is so weird I cannot believe this can happen...
    Is it possilbe that oracle returns incompleted result rows without error?
    Edited by: user2406411 on 20-May-2012 10:06 AM
    Edited by: user2406411 on 20-May-2012 10:07 AM

    It only returns part of the rows, at the meanwhile, the performance becomes very bad.does it mean the select from view has been stopped/interrupted before it finished itself?
    Oracle could choose different plan with the index introduced. This plan could return first portion of rows fast, then continue to work on following portion, ant that took more time, but you did not want to wait and stop it.
    After exp/imp oracle may choose different plan that returns all rows at once.
    Is it possilbe that oracle returns incompleted result rows without error?normally not.
    though years ago I had one similar situation. The cause was a corrupted index. If query used index it returned less rows, with full scan - more. I had to rebuild the index to fix it.

  • How can I show all the results returned by a sql query?

    Hi guys,
    I need your help.
    Let's say I have one table: TableA. Fields of TableA are aleg, anon, apes. The following sentence can return, in general, several rows: select anon from TableA where aleg = somevalue. I'd like to show the result of column anon but no luck. If I try to show the results in a TextArea and the origin is an sql query only shows the first row value. I tried Show as: show as text (based in PLSQL) and coding an anonymous plsql block as
    DECLARE
    v_anon TableA.anon%TYPE;
    CURSOR v_cur IS
         select anon from TableA where aleg = somevalue;
    BEGIN
    OPEN v_cur;
    LOOP
    FETCH v_cur INTO v_anon;
    EXIT WHEN v_cur%NOTFOUND;
    :FIELD_IN_FORM := v_anon;
    END LOOP;
    CLOSE v_cur;
    END;
    but in this case it's not shown any result.
    So the first question is what kind of field should I use to show the result. And the second one is what can I do to being able to show all the results returned by the query (provided that is more than one single row).
    regards

    Hi Denes,
    Just starting with apex. I think I know how to show the results in a report region. I've simplified the posted question.
    A more detailed question would be: Suppose you have a region where you have put several text areas to accommodate the result of a multi-column query (lets say for TableA) that only returns one row, each column value returned put in a different text area. Also you want to show the values of other fields in TableB that depends on some value just retrieved from TableA and that you want all values retrieved (from TableA and the linked TableB) to be show in the same region. Is that possible? If yes, how?
    Thank you in advance

  • Image Import Error "No query results returned"

    Hi All,
    I have the problem while importing images, several image have not been imported with this error.
    Log:
    Importing [German [DE]] '205865_logo.jpg'...failed.
    Import complete
    Error:
    E:\images\205865\h-jpeg\205865_logo.jpg: No query results returned
    Altogether I have imported 17000 Images. 16998 have been successful and 2 throw this error. Anybody an idea what this means and how to avoid it?
    Best Regards
    Roman
    Edited by: Roman Becker on Mar 8, 2009 1:14 PM

    Hi Roman,
    I assume you import the images to a catalog, dont you?
    Which catalog do you use? MDM or CCM?
    Daniel

  • Message tracking max results returned

    Hi All,
    On message tracking page the predefined max rsults returned value only have 3 options 250, 500 and 1000. May i know how can i increase query setting more than 1000 results return.
    Regards,
    Rock

    Hi Rock,
    You cannot increase the query to more than 1000, but you can change your other parameters.  For example, you could change the date scope until you get down to under 1000 results. 
    You will have to run multiple queries to pull all the data you're looking for, but unless/until they change the maximum results this will give you a workaround.
    Thanks,
    Rachel

  • Sorting the results returned by a Ref cursor

    Hi All,
    I have a scenario where i am asked to sort results returned by a ref cursor.
    I have to pass the column to be sorted as the Input parameter to a stored procedure. I tried using 'order by sorting_parameter' in the ref cursor's select query, but it is not sorting the results. It is not throwing any error even.
    Please help.
    Many Thanks...

    Hi
    i came across the below reply for a thread with the similar query as above.
    <<
    Justin Cave
    Posts: 10,696
    From: Michigan, USA
    Registered: 10/11/99
    Re: sort data in ref cursor
    Posted: Feb 3, 2005 10:30 AM in response to: [email protected] Reply
    No. You could sort the data in the SQL statement from which the REF CURSOR was created, but once you have a REF CURSOR, you cannot do anything but fetch from it.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC
    >>
    So, the results from a ref cursor cant be sorted?? There is no way out?
    Kindly advise.

  • How to limit the number of search results returned by oracle text

    Hello All,
    I am running an oracle text search which returned the following error to my java program.
    ORA-20000: Oracle Text error:
    DRG-51030: wildcard query expansion resulted in too many terms
    #### ORA-29902: Fehler bei der Ausführung von Routine ODCIIndexStart()
    ORA-20000: Oracle Text error:
    DRG-51030: wildcard query expansion resulted in too many terms
    java.sql.SQLException: ORA-29902: Fehler bei der Ausführung von Routine ODCIIndexStart()
    ORA-20000: Oracle Text error:
    DRG-51030: wildcard query expansion resulted in too many terms
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:169)
    When i looked up the net, one suggestion that was given is to narrow the wildcard query, which i cannot in my search page. Hence I am left with the only alternative of limiting the number of results returned by oracle text search query.
    Please let me know how to limit the number of search results returned by oracle text so that this error can be avoided.
    Thanks in advance
    krk

    Hi,
    If not set explicitly, the default value for WILDCARD_MAXTERMS is 5000. This is set as a wordlist preference. This means that if your wildcard query matches more than 5000 terms the message is returned. Exceeding that would give the user a lot to sift through.
    My suggestion: trap the error and return a meaningful message to the user indicating that the search needs to be refined. Although it is possible to increase the number of terms before hitting maxterms (increase wildcard_maxterms preference value for your wordlist), 5000 records is generally too much for a user to deal with anyway. The search is not a good one since it is not restricting rows adequately. If it happens frequently, get the query log and see the terms that are being searched that generate this message. It may be necessary to add one or more words to a stoplist if they are too generic.
    Example: The word mortgage might be a great search term for a local business directory. It might be a terrible search term for a national directory of mortgage lenders though (since 99% of them have the term in their name). In the case of the national directory, that term would be a candidate for inclusion in the stoplist.
    Also remember that full terms do not need a wildcard. Search for "car %" is not necessary and will give you the error you mentioned. A search for "car" will yield the results you need even if it is only part of a bigger sentence because everything is based on the token. You may already know all of this, but without an example query I figured I'd mention it to be sure.
    As for limiting the results - the best way to do that is to allow the user to limit the results through their query. This will ensure accurate and more meaningful results for them.
    -Ron

  • Facing the issue Incomplete results (due to index-reload or timeout). Query will be resubmitted in 0 ms. 0 tries left. in FAST ESP 5.3

    Hi ,
    I am getting the following problem in my FAST ESP 5.3 , after recently updating the new Index profile. It was a Hot Update. Have already reset the index, but still this message keeps coming every  6 hrs. Please suggest.
    Its a 2 node setup with 5 active partitions.
    Thanks in Advance
     [2014-08-25 11:59:53] 
     WARNING 
     qrserver 
     Server1 
     15100 
     systemmsg 
     Error received while searching tcp/manufsis1.manu:15150. Error: [18] No engine available for partition 3  
     [2014-08-25 11:59:52] 
     WARNING 
     qrserver 
      Server2 
     15100 
     systemmsg 
     Error received while searching tcp/manufsis2.manu:15150. Error: [18] No engine available for partition 3  
     [2014-08-25 11:59:52] 
     WARNING 
     qrserver 
      Server1 
     15100 
     systemmsg 
     Error received while searching tcp/manufsis1.manu:15150. Error: [18] No engine available for partition 3  
     [2014-08-25 11:59:52] 
     WARNING 
     qrserver 
      Server2 
     15100 
     systemmsg 
     Incomplete results (due to index-reload or timeout). Query will be resubmitted in 0 ms. 0 tries left.   

    If there was an index profile update, could you try to clear qrserver cache and redeploy views:
    - stop the qrserver,
    -delete the qrserver cache ($FASTSEARCH/var/qrserver),
    -start qrserver and run the following two commands from bin:
    view-admin -m deploy -a
    view-admin -m refresh –a
    You might want to do this during off peak hours.
    Also, from the server(s)  running topfdispatcher can you check if you have duplicate entries in the enginerc-tld_0 file(located in %FASTSEARCH/var/searchctrl/etc)

  • No result returned or XML returned contains error in test query

    Hello,
    I have a problem with Visual Composer 7.0. When I try to execute a test query it shows the following error:
    'No result returned or XML returned in the result contains error'. What could it be?
    Thanks,
    Belen

    Either your query doesn't return results or you don't have the MSXML Parser installed on your client.

  • How to using one HTTPService to handle multiple result returns

    I have a HTTPService class that handles one fault and one result events. Is there a way to the same HTTPService to handle more than one result returns.
    For example, to handle Result1, Result2, ... events with different Listeners: Listener1, Listerner2, ...

    My approach would be to include the logic necessary to handle the possible results in my result handler. The result handler receives the ResultEvent and the logic conditionally executes based on the result returned.

  • Max results returned by a search

    Hi there,
    I have been struggling in the Content DB Api to find out about the max results returned when performing a search.
    Let's say for instance, I am doing a search on attribute NAME = * on a library that potentially contains more than 100 000 documents. I don't mind if the operation is time consuming or not, my main concern is the actual limit. I suppose this is certainly related
    to the SOAP message limit. Does anyone know about this ?
    I forgot to mention that the search won't request any attribute but only the defaults (id, name, type and so forth ...).
    Cheers,

    Hi
    i came across the below reply for a thread with the similar query as above.
    <<
    Justin Cave
    Posts: 10,696
    From: Michigan, USA
    Registered: 10/11/99
    Re: sort data in ref cursor
    Posted: Feb 3, 2005 10:30 AM in response to: [email protected] Reply
    No. You could sort the data in the SQL statement from which the REF CURSOR was created, but once you have a REF CURSOR, you cannot do anything but fetch from it.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC
    >>
    So, the results from a ref cursor cant be sorted?? There is no way out?
    Kindly advise.

  • 0 result returned for query "collection ('exampledata.dbxml')/article

    I  using  BDB XML I create a container called Exampledata.dbxml using java API. using a separate program I put my sigmodRecord.xml  file into the container. I then wrote another program (see the program below) to test my Query
    where Query =  "collection ('Exampledata.dbxml')/article"  but dont know why i always have
                                                      0 result returned for query "collection ('exampledata.dbxml')/article  if  the program is run. Pls can anybody help me?
    package xmldbdemo;
    import com.sleepycat.db.Environment;
    import com.sleepycat.dbxml.*;
    import dbxml.gettingStarted.myDbEnv;
    import java.io.File;
    public class simpleQuery3 {
        public static void main (String[] args) throws Throwable  {
         String theContainer = "Exampledata.dbxml";
          File path2DbEnv = new File("c:/myJavaProgs/examplesEnvironment");
         if (path2DbEnv == null || ! path2DbEnv.isDirectory()) {
               System.out.println("Bad file name");
          System.exit( -1 );
      myDbEnv env = null;
      XmlContainer openedContainer = null;
         env = new myDbEnv(path2DbEnv);
                Environment enviro = env.getEnvironment();
         // create xmlmanager
           XmlManagerConfig myManagerConf = new  XmlManagerConfig();
           myManagerConf.setAdoptEnvironment(true);
           myManagerConf.setAllowExternalAccess(true);
           XmlManager myManager = new XmlManager  (enviro, myManagerConf);
       // XmlManager myManager = new XmlManager();
        XmlContainerConfig myContainerConf = new  XmlContainerConfig();
        XmlContainer myContainer = myManager.openContainer( theContainer, myContainerConf);
        XmlQueryContext myContext =  myManager.createQueryContext();
        String myQuery = "collection('Exampledata.dbxml')/article";
        XmlResults myResults = myManager.query(myQuery, myContext, null);
        XmlValue myValue = myResults.next();
        while (myValue != null){
         XmlDocument myDocument = myValue.asDocument();
         String name  = myDocument.getName();
         System.out.println(name);

    Hi,
    The BDB forum is located here : Berkeley DB Family

  • Reg:"No result returned or xml returned in the result contains an Error

    Dear All,
    After adding a query to VC storyboard and than trying to use the option define/test query for this query element, I am facing the below error on pressing the execute button.
    "No result returned or xml returned in the result contains an error"
    Query is working fine and giving the desired output in BW system.
    How can i resolve my problem?
    Regards,
    Hemalatha J
    Edited by: hema latha on Nov 19, 2009 3:21 PM

    Hi Hemalatha,
    this can have several reasons, usually there are variables in the query that aren't filled correctly in the "specify filter" box.
    One thing you could do is to personalize all variables in the query and then try to fill one after another in the "specify filter" box.
    If you don't get values after you have filled a specific one of them, then this one is passed incorrectly.
    Best wishes
    Markus

  • BatchUpdateException :Results returned for UPDATE ONLY.

    I got an error message at the statement stmt.executeBatch();
    java.sql.BatchUpdateException: Results returned for UPDATE ONLY.
    There are 3 SQL commands in the batch and it throws the above exception while executing the first command.
    (The first command is a SELECT command with COUNT returned to a variable
    eg. SELECT @ABC := COUNT(*) ....
    The second and the third commands use the returned variable to make updates)
    I printed out the updated information using BatchUpdateException.getUpdateCounts and I got
    -3 1 1 (-3 means Statement.EXECUTE_FAILED)
    However, I checked the database (mysql) and I discovered those two update commands were executed correctly ???!!!
    An interesting thing is: if I use stmt.execute or stmt.executeQuery instead of executeBatch, it works fine and doesn't throw any exception.
    I wonder if anybody experience similar situation before or have idea on this problem. Thanx :)

    Can somebody help me, please?

  • Hide / Remove Content Search Webpart when no results returned

    Hi SharePoint friends
    I'm looking to find a way to hide the whole Content Search webpart (including the webpart title and border area) if there are no results coming back from the query.
    What I tried
    1. There is this property: "ShouldHideControlWhenEmpty" but it doesn't do anything when there are no results. The webpart is still visible. Webpart has a the Title and the Border around it so when
    there are no results the title and the border show up with no results. Like I said I want to hide the whole thing in that case.
    2. Wrote a jQuery script that searches for the text "There are no results" message (which comes from the webpart when there are no results) and hides the webpart. However, there is a short flicker once the page loads because the webpart first gets
    rendered for a split second and then disappears by virtue of my jQuery script - which is not great UI experience.
    3. So I thought I could extend the OOTB ContentBySearchWebPart and get a hold of some kind property that would get me the result count. If the results count is 0 simply I would hide the webpart server side. I looked
    at the documentation online - nothing I could find that I could leverage.
    Help? Thanks!

    Hi,
    To hide the whole Content Search Web Part when there is no result returned, a workaround can be like this:
    In the “Web Part Properties” panel, set checked the “Don't show anything when there are no results”, set the Chrome Type as “None”:
    By doing this, the whole web part will disappear when there is no result returned.
    Thanks
    Patrick Liang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support,
    contact [email protected]
    Patrick Liang
    TechNet Community Support

Maybe you are looking for

  • Ipod Touch 4G is no longer recognized by Itunes

    pod Touch 4G is no longer recognized by iTunes Today have been the problem that my ipod touch 4G is no longer recognized by itunes. He'll appear in My Computer as a DigitalCamera etc, but not in itunes. I've already uninstalled Itunes + Ipod rebooted

  • Graphs not working after upgrade to 11.1.1.6 - MBean Error

    Hi, I am facing one wierd issue after upgrading from 11.1.1.5 to 11.1.1.6. When I run a report with graph, the result shows some garbage value. None of the graphs work - even the pie chart. When I logged in to EM and looked into the log file, it seem

  • Issue while replicating the Master data from R/3 Backend to SRM

    Hi experts, I am supposed to do replication of master data from ECC 6.0 R/3 to SRM System. I have issue at T- Code:  R3AS. For Initial Load of objets : 1) DNL_CUST_BASIS3 2) DNL_CUST_PROD0 3) DNL_CUST_PROD1 I am getting following error. :  The follo

  • How to install Windows 7 on Lenovo S300

    Hi, I bought Lenovo s300, and it has come with Windows8. However I would like to install Windows 7. I make bootable on USB, but I cant manage to boot up from it. What I should select in BIOS. What is the best way to arrange partitions. I have SSD 24g

  • Prevent overwriting of variable during second loop...

    Hello together, I have an issue with getting the first value of a variable - I want to store the value of an output variable in the first sequence of my for loop. How can I prevent that the variable is not being overwritten during the next loops. Wou