How to get total number of result count for particular key on cluster

Hi-
My application requirement is client side require only limited number of data for 'Search Key' form total records found in cluster. Also i need 'total number of result count' for that key present on the custer.
To get subset of record i'm using IndexAwarefilter and returning only limited set each individual node. though i get total number of records present on the individual node, it is not possible to return this count to client form IndexAwarefilter (filter return only Binary set).
Is there anyway i can get this number (total result size) on client side without returning whole chunk of data?
Thanks in advance.
Prashant

user11100190 wrote:
Hi,
Thanks for suggesting a soultion, it works well.
But apart from the count (cardinality), the client also expects the actual results. In this case, it seems that the filter will be executed twice (once for counting, then once again for generating actual resultset)
Actually, we need to perform the paging. In order to achieve paging in efficient manner we need that filter returns only the PAGESIZE records and it also returns the total 'count' that meets the criteria.
If you want to do paging, you can use the LimitFilter class.
If you want to have paging AND total number of results, then at the moment you have to use two passes if you want to use out-of-the-box features because LimitFilter does not return the total number of results (which by the way may change between two page retrieval).
What we currently do is, the filter puts the total count in a static variable and but returns only the first N records. The aggregator then clubs these info into a single list and returns to the client. (The List returned by aggregator contains a special entry representing the count).
This is not really a good idea because if you have more than one user doing this operation then you will have problems storing more than one values in a single static variable and you used a cache service with a thread-pool (thread-count set to larger than one).
We assume that the aggregator will execute immediately after the filter on the same node, this way aggregator will always read the count set by the filter.
You can't assume this if you have multiple client threads doing the same kind of filtering operation and you have a thread-pool configured for the cache service.
Please tell us if our approach will always work, and whether it will be efficient as compared to using Count class which requires executing filter twice.
No it won't if you used a thread-pool. Also, it might happen that Coherence will execute the filtering and the aggregation from the same client thread multiple times on the same node if some partitions were newly moved to the node which already executed the filtering+aggregation once. I don't know anything which would even prevent this being executed on a separate thread concurrently.
The following solution may be working, but I can't fully recommend it as it may leak memory depending on how exactly the filtering and aggregation is implemented (if it is possible that a filtering pass is done but the corresponding aggregation is not executed on the node because of some partitions moved away).
At sending the cache.aggregate(Filter, EntryAggregator) call you should specify a unique key for each such filtering operation to both the filter and the aggregator.
On the storage node you should have a static HashMap.
The filter should do the following two steps while being synchronized on the HashMap.
1. Ensure that a ConcurrentLinkedQueue object exists in a HashMap keyed by that unique key, and
2. Enqueue the total number count you want to pass to the aggregator into that queue.
The parallel aggregator should do the following two steps while being synchronized on the HashMap.
1. Dequeue a single element from the queue, and return it as a partial total count.
2. If the queue is now empty, then remove it from the HashMap.
The parallel aggregator should return the popped number as a partial total count as part of the partial result.
The client side of the parallel aware aggregator should sum the total counts in the partial result.
Since the enqueueing and dequeueing may be interleaved from multiple threads, it may be possible that the partial total count returned in a result does not correspond to the data in the partial result, so you should not base anything on that assumption.
Once again, that approach may leak memory based on how Coherence is internally implemented, so I can't recommend this approach but it may work.
Another thought is that since returning entire cached values from an aggregation is more expensive than filtering (you have to deserialize and reserialize objects), you may still be better off by running a separate count and filter pass from the client, since for that you may not need to deserialize entries at all, so the cost on the server may be lower.
Best regards,
Robert

Similar Messages

  • How to get total number of days

    Hi All,
    how to get total number of days , for example if month eq 05 then need to get total number of days until MAY 31.
    and how to get total number of days in a month.
    Thank You,,
    Sriii..

    Hi Sridhar,
    Pls Try to search before posting general questions.
    Try this,
    CALL FUNCTION 'DAYS_BETWEEN_TWO_DATES'
        EXPORTING
          i_datum_bis                   = p_lv_date1
          i_datum_von                   = p_lv_date2
       IMPORTING
         e_tage                        = p_e_date_difference
       EXCEPTIONS
         days_method_not_defined       = 1
         OTHERS                        = 2
      IF sy-subrc  0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
             WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    Regards,
    Sunil kairam.

  • How can I get the number request's (count) for One interface

    Hi Guru's,
    I have a requirement,One interface say Hello world._How can I get the number request's (count) for this interface_.I thing with BAM it's possible.
    But I have no idea about BAM.If is there any alternative please give directions and instruction how to achieve this task.
    Can any body help.Thanks in advance.
    Regards
    Mani

    You have to query the SOA_INFRA schema to get the answer.
    Build a select query in cube_instance table.
    Thanks,
    Vijay

  • How to get total number of nodes in a JTree?

    Hi,
    I am trying to get total number of nodes in a JTree, and cannot find a way to do it.
    The current getRowCount() method returns the number of rows that are currently being displayed.
    Is there a way to do this or I am missing something?
    thanks,

    How many nodes does this tree have?
    import java.awt.EventQueue;
    import javax.swing.*;
    import javax.swing.event.TreeModelListener;
    import javax.swing.tree.*;
    public class BigTree {
        public static void main(String[] args) {
            EventQueue.invokeLater(new Runnable() {
                public void run() {
                    TreeModel model = new TreeModel() {
                        private String node = "Node!";
                        @Override
                        public void valueForPathChanged(TreePath path,
                                Object newValue) {
                            // not mutable
                        @Override
                        public void removeTreeModelListener(TreeModelListener l) {
                            // not mutable
                        @Override
                        public boolean isLeaf(Object node) {
                            return false;
                        @Override
                        public Object getRoot() {
                            return node;
                        @Override
                        public int getIndexOfChild(Object parent, Object child) {
                            return child == node ? 0 : -1;
                        @Override
                        public int getChildCount(Object parent) {
                            return 1;
                        @Override
                        public Object getChild(Object parent, int index) {
                            return node;
                        @Override
                        public void addTreeModelListener(TreeModelListener l) {
                            // not mutable
                    JFrame frame = new JFrame("Test");
                    frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
                    frame.getContentPane().add(new JScrollPane(new JTree(model)));
                    frame.pack();
                    frame.setLocationRelativeTo(null);
                    frame.setVisible(true);
    }But for bounded tree model using DefaultMutableTreeNode look at bread/depth/preorder enumeration methods to walk the entire tree. Or look at the source code for those and adapt them to work with the TreeModel interface.

  • How to get total number of products for the site?

    Hi,
    I want to know the total number of products available for the site. i checked in the dcs_product table, it shows 40849 unique products. is this the total number of products count which are used in the site?
    I have another table in CATA schema dcs_product_sites, when i run the CatalogMaintenanceService to populate the records in this table, getting only 26000 products. Please let me know why this difference when i run the service.
    Thanks

    dcs_product table gives all products in your catalog.
    dcs_product_site will give products for a particular site.
    If you have more than one site, then you need to query for that particular site.
    And the number of products you show also depends upon the start and end date on the products.
    And also some custom filters you have like Out of stock items etc.
    Peace
    Shaik

  • [Win VC++ 6.0 ]How to get the number of files count in a folder using VC++ 6.0?

    Hi all,
    Can any one tell how to get the number of files(.EPS) count inside a folder when the folder path is specified in VC++ 6.0?
    Thanks in Advance.
    Regards
    myriaz

    I'm a little confused by the question, but it sounds like you're asking how to count the number of files with a particular extension in a given directory? That's not really an AI SDK question, but it's a fairly easy one to find if you google it. If you're trying to use Illustrator to do it, AI doesn't have a general purpose file API. It has a few functions to do some things that Illustrator needs, but I don't think enumerating directories is one of them.

  • How to get total number of days in current Fiscal period/year

    Hi,
    I need to get total number of days in current Fiscal period/year (current month) and assign it to an infoobject. I need a routine for this. Is there any function module to get this.If possible pls paste the ABAP code also for this task. Thanks in advance

    here is the FM:
    LAST_DAY_IN_PERIOD_GET
    KJ!!!

  • How To get the number of request's for a single Composite Application

    Hi can any body tell how to get the number requst's for a single composite application.
    Thanks
    Mani

    Hi,
    There are lots of STATE is available for composite instances, like mentioned in the below query. I hope you will get answer from the below query.
    SELECT (CASE WHEN STATE=1 THEN 'OPEN AND RUNNING'
    WHEN STATE=2 THEN 'OPEN AND SUSPENDED'
    WHEN STATE=3 THEN 'OPEN AND FAULTED'
    WHEN STATE=4 THEN 'CLOSED AND PENDING'
    WHEN STATE=5 THEN 'CLOSED AND COMPLETED'
    WHEN STATE=6 THEN 'CLOSED AND FAULTED'
    WHEN STATE=7 THEN 'CLOSED AND CANCELLED'
    WHEN STATE=8 THEN 'CLOSED AND ABORTED'
    WHEN STATE=9 THEN 'CLOSED AND STALE'
    WHEN STATE=10 THEN 'NON-RECOVERABLE'
    ELSE STATE || ''
    END) AS STATE, component_name, COUNT(*) AS NUM_OF_CUBE_INST FROM CUBE_INSTANCE where composite_name='PASS THE COMPOSITE NAME HERE..........'
    group by (CASE WHEN STATE=1 THEN 'OPEN AND RUNNING'
    WHEN STATE=2 THEN 'OPEN AND SUSPENDED'
    WHEN STATE=3 THEN 'OPEN AND FAULTED'
    WHEN STATE=4 THEN 'CLOSED AND PENDING'
    WHEN STATE=5 THEN 'CLOSED AND COMPLETED'
    WHEN STATE=6 THEN 'CLOSED AND FAULTED'
    WHEN STATE=7 THEN 'CLOSED AND CANCELLED'
    WHEN STATE=8 THEN 'CLOSED AND ABORTED'
    WHEN STATE=9 THEN 'CLOSED AND STALE'
    WHEN STATE=10 THEN 'NON-RECOVERABLE'
    ELSE STATE || ''
    END), component_name;
    Thanks,
    Vijay

  • How to get total number of pages from .doc file without using Office interop?

    Hi,
    Kindly help me in getting the total number of pages from a .doc file not .docx file using C#. I know how to get by using Office interop but I do not want to use Office interop.
    So, without office automation in C# let me know how to get the total number of pages from a .doc file.
    Regards,
    Ashok

    Hi Ashok,
    >> I know how to get by using Office interop but I do not want to use Office interop
    Could you tell us why you don't want to use Office interop?
    As far as I know, this is the easiest way to achieve.Hmmm,this is my answer
    http://msdn.microsoft.com/en-us/library/microsoft.office.interop.word.pagenumbers.startingnumber(v=office.14).aspx
    Best regards,
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to get total number of licenses

    Hi everyone,
    Who knows how to get the total number of licenses, I am using SBO 2005 PL07+VB.Net. from SDK help file I saw there is a SAP Business One License API, but I cann't find this API from object browse, who knows which file contents the license API.
    Thanks in advance!
    Kathy

    Hi Kathy,
    Since (un-?)fortunately the license server has been moved from DCOM to CORBA, this information is currently obsolete (I still hope we will get this information through the SDK some time in future...).
    As an interim solution you will have to get this information from the B1LicenseFile.txt file through some small application you write (you could have e.g. a service that writes the information you are interested in into some table in some database - and retrieve this information through a SQL statement).
    HTH,
    Frank

  • How to get Total Number of XML Nodes?

    Hello All,
    I have a Flash program I'm doing in Actionscript 3, using CS6.
    I'm using the XMLSocket Class to read-in XML Data. I will write some sample XML Data that is being sent to the Flash
    program below...
    I know with this line here (below) I can access the 4th "element or node" of that XML Data.
         Accessing XML Nodes/Elements:
    // *I created an XML Variable called xml, and "e.data" contains ALL the XML Data
    var xml:XML = XML(e.data);
    // Accessing the 4th element of the data:
    xml.MESSAGE[3].@VAR;          --->     "loggedOutUsers"
    xml.MESSAGE[3].@TEXT;         --->     "15"
         SAMPLE XML DATA:
         <FRAME>
    0               <MESSAGE VAR="screen2Display" TEXT="FRAME_1"/>
    1               <MESSAGE VAR="numUsers" TEXT="27"/>
    2               <MESSAGE VAR="loggedInUsers" TEXT="12"/>
    3               <MESSAGE VAR="loggedOutUsers" TEXT="15"/>
    4               <MESSAGE VAR="admins" TEXT="2"/>
         </FRAME>
    I'm new to Flash and Actionscript but I'm very familiar with other languages and how arrays work and such, and I know for
    example, in a Shell Script to get the total number of elements in an array called "myArray" I would write something like
    this --> ${#myArray[@]}. And since processing the XML Data looks an awful lot like an array I figured there was maybe
    some way of accessing the total number of "elements/nodes" in the XML Data...?
    Any thoughts would be much appreciated!
    Thanks in Advance,
    Matt

    Hey vamsibatu, thanks again for the quick reply!
    Ohhh, ok I gotcha. That makes more sense.
    So I just tried this loop below and I guess I could use this and just keep assigning an int variable to the output so
    when it finishes I will be left with a variable containing the total number of elements:
    for (var x:int in xml.MESSAGE)
         trace("x == " + x);
    *Which OUTPUTS the Following:
    x == 0
    x == 1
    x == 2
    x == 3
    x == 4
    So I guess I could do something like this and when the loop completes I will be left with the total number of elements/nodes...
    var myTotal:int;
    for (var x:int in xml.MESSAGE)
        myTotal = x;
    // add '1' to myTotal since the XML Data is zero-based:
    myTotal += 1;
    trace("myTotal == " + myTotal);
    *Which Prints:
    "myTotal == 5"
    Thanks again for you suggestions, much appreciated!
    I think that should be good enough for what I needed. Thanks...
    Thanks Again,
    Matt

  • How to get maximum number of results using content presenter taskflow

    Hello Friends,
    I am using 11.1.1.6,
    Below is the query is getting executed while content presenter taskflow get executed, Though I have more than 100 results in UCM, I am always getting only 25. Is there anywhere I can configure to fetch maximum number of results ? Though I set maxResults = 200, It always returns 25.
    SELECT * FROM ora:t:IDC:GlobalProfile WHERE ora:p:xRegionDefinition = 'NEWS_REG_DEF' AND ora:p:xArchiveFlag='Yes' and ora:p:xDocumentSortDate > TIMESTAMP '2014-01-01T00:00:00.000+00:00' and ora:p:xDocumentSortDate < TIMESTAMP '2014-12-31T00:00:00.000+00:00' ORDER BY ora:p:xDocumentSortDate DESC
    Page Def.xml : here the taskflow entries configured in page def xml file
    <taskFlow id="doclibcontentpresenter2"
                  taskFlowId="/oracle/webcenter/doclib/view/jsf/taskflows/presenter/contentPresenter.xml#doclib-content-presenter"
                  activation="deferred"
                  xmlns="http://xmlns.oracle.com/adf/controller/binding"
                  Refresh="ifNeeded"
                  RefreshCondition="#{requestScope.pRefreshArchiveNewsSction='Y'}">
          <parameters>
            <parameter id="taskFlowInstId" value="${'myinst'}"/>
            <parameter id="datasourceType" value="${'dsTypeQueryExpression'}"/>
            <parameter id="datasource"
                       value="#{backingBeanScope.ArchiveBean.contentQuery}"/>
            <parameter id="templateCategory" value="${''}"/>
            <parameter id="templateView" value="${'templates.archive.list'}"/>
            <parameter id="regionTemplate" value="${'false'}"/>
            <parameter id="maxResults" value="200"/>
          </parameters>
        </taskFlow>

    Hi Dan,
    Here is the detailed logs
    searchcache/6
    02.19 15:21:14.656
    SearchCache
    Approximately 0% of the available cache space is used.
    >searchquery/7
    02.19 15:23:53.642
    IdcServer-14885
    Query by [email protected] from CIS
    >searchquery/6
    02.19 15:23:53.643
    IdcServer-14885
    preparedQueryText: ( ((xRegionDefinition <matches> `NEWS_REG_DEF`) <and> ((xArchiveFlag <matches> `Yes`) <and> ((xDocumentSortDate>`2013-01-01 00:00:00`) <and> (xDocumentSortDate<`2013-12-31 00:00:00`)))) )
    >searchquery/6
    02.19 15:23:53.643
    IdcServer-14885
    Setting substr to other operator conv flag: '( ((xRegionDefinition <matches> `NEWS_REG_DEF`) <and> ((xArchiveFlag <matches> `Yes`) <and> ((xDocumentSortDate>`2013-01-01 00:00:00`) <and> (xDocumentSortDate<`2013-12-31 00:00:00`)))) )'
    >searchqueryparse/6
    02.19 15:23:53.643
    IdcServer-14885
    Into parse of UniversalSearchQuery for: ( ((xRegionDefinition <matches> `NEWS_REG_DEF`) <and> ((xArchiveFlag <matches> `Yes`) <and> ((xDocumentSortDate>`2013-01-01 00:00:00`) <and> (xDocumentSortDate<`2013-12-31 00:00:00`)))) )
    >searchqueryparse/6
    02.19 15:23:53.643
    IdcServer-14885
    Into parseQueryEx of UniversalSearchQueryParser for queryArr : ( ((xRegionDefinition <matches> `NEWS_REG_DEF`) <and> ((xArchiveFlag <matches> `Yes`) <and> ((xDocumentSortDate>`2013-01-01 00:00:00`) <and> (xDocumentSortDate<`2013-12-31 00:00:00`)))) )
    >searchquery/6
    02.19 15:23:53.643
    IdcServer-14885
    Parsing universal query: '( ((xRegionDefinition <matches> `NEWS_REG_DEF`) <and> ((xArchiveFlag <matches> `Yes`) <and> ((xDocumentSortDate>`2013-01-01 00:00:00`) <and> (xDocumentSortDate<`2013-12-31 00:00:00`)))) )'
    >searchquery/6
    02.19 15:23:53.643
    IdcServer-14885
    Processing callback on query value 'NEWS_REG_DEF'
    >searchqueryparse/6
    02.19 15:23:53.643
    IdcServer-14885
    Into appendClauseElement CommonSearchConfig with operator : equals value : NEWS_REG_DEF
    >searchqueryparse/6
    02.19 15:23:53.643
    IdcServer-14885
    Processing actions list size : 1 on the input value : xRegionDefinition with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:53.643
    IdcServer-14885
    Processing action number : 0 : prefix on the input value : xRegionDefinition with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:53.643
    IdcServer-14885
    Processing actions list size : 2 on the input value : NEWS_REG_DEF with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:53.643
    IdcServer-14885
    Processing action number : 0 : upperCase on the input value : NEWS_REG_DEF with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:53.643
    IdcServer-14885
    Processing action number : 1 : escape on the input value : NEWS_REG_DEF with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:53.643
    IdcServer-14885
    Processed escape with '' resulting in value :NEWS_REG_DEF
    >searchqueryparse/6
    02.19 15:23:53.643
    IdcServer-14885
    Processed escape with _ resulting in value :NEWS_REG_DEF
    >searchqueryparse/6
    02.19 15:23:53.643
    IdcServer-14885
    Processed escape with \- resulting in value :NEWS_REG_DEF
    >searchqueryparse/6
    02.19 15:23:53.643
    IdcServer-14885
    Processed escape with \_ resulting in value :NEWS\_REG\_DEF
    >searchqueryparse/6
    02.19 15:23:53.643
    IdcServer-14885
    Processed escape with \, resulting in value :NEWS\_REG\_DEF
    >searchqueryparse/6
    02.19 15:23:53.643
    IdcServer-14885
    Into appendClauseElement CommonSearchConfig with operator : and value :
    >searchquery/6
    02.19 15:23:53.643
    IdcServer-14885
    Processing callback on query value 'Yes'
    >searchqueryparse/6
    02.19 15:23:53.643
    IdcServer-14885
    Into appendClauseElement CommonSearchConfig with operator : equals value : Yes
    >searchqueryparse/6
    02.19 15:23:53.643
    IdcServer-14885
    Processing actions list size : 1 on the input value : xArchiveFlag with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:53.643
    IdcServer-14885
    Processing action number : 0 : prefix on the input value : xArchiveFlag with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:53.643
    IdcServer-14885
    Processing actions list size : 2 on the input value : Yes with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:53.643
    IdcServer-14885
    Processing action number : 0 : upperCase on the input value : Yes with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:53.644
    IdcServer-14885
    Processing action number : 1 : escape on the input value : YES with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:53.644
    IdcServer-14885
    Processed escape with '' resulting in value :YES
    >searchqueryparse/6
    02.19 15:23:53.644
    IdcServer-14885
    Processed escape with _ resulting in value :YES
    >searchqueryparse/6
    02.19 15:23:53.644
    IdcServer-14885
    Processed escape with \- resulting in value :YES
    >searchqueryparse/6
    02.19 15:23:53.644
    IdcServer-14885
    Processed escape with \_ resulting in value :YES
    >searchqueryparse/6
    02.19 15:23:53.644
    IdcServer-14885
    Processed escape with \, resulting in value :YES
    >searchqueryparse/6
    02.19 15:23:53.644
    IdcServer-14885
    Into appendClauseElement CommonSearchConfig with operator : and value :
    >searchquery/6
    02.19 15:23:53.644
    IdcServer-14885
    Processing callback on query value '2013-01-01 00:00:00'
    >searchqueryparse/6
    02.19 15:23:53.644
    IdcServer-14885
    Into appendClauseElement CommonSearchConfig with operator : dateGreater value : 2012/12/31 18:00:00
    >searchqueryparse/6
    02.19 15:23:53.644
    IdcServer-14885
    Into appendClauseElement CommonSearchConfig with operator : and value :
    >searchquery/6
    02.19 15:23:53.644
    IdcServer-14885
    Processing callback on query value '2013-12-31 00:00:00'
    >searchqueryparse/6
    02.19 15:23:53.644
    IdcServer-14885
    Into appendClauseElement CommonSearchConfig with operator : dateLess value : 2013/12/30 18:00:00
    >searchquery/6
    02.19 15:23:53.644
    IdcServer-14885
    Converted native query: '((( SDATA(sdxRegionDefinition LIKE 'NEWS\_REG\_DEF') )  and  (( SDATA(sdxArchiveFlag LIKE 'YES') )  and  (( SDATA(xDocumentSortDate > '2012/12/31 18:00:00') )  and  ( SDATA(xDocumentSortDate < '2013/12/30 18:00:00') )))))'
    >searchquery/7
    02.19 15:23:53.644
    IdcServer-14885
    assigning connection
    >searchquery/6
    02.19 15:23:53.644
    IdcServer-14885
    !csMonitorActiveDbConnections,1
    >searchquery/6
    02.19 15:23:53.644
    IdcServer-14885
    Connection is added to active connections with key of '[ACTIVE] ExecuteThread: '35' for queue: 'weblogic.kernel.Default (self-tuning)''.
    >searchquery/6
    02.19 15:23:53.644
    IdcServer-14885
    query(live): (((((((((((( SDATA(sdxRegionDefinition LIKE 'NEWS\_REG\_DEF') )  and  (( SDATA(sdxArchiveFlag LIKE 'YES') )  and  (( SDATA(xDocumentSortDate > '2012/12/31 18:00:00') )  and  ( SDATA(xDocumentSortDate < '2013/12/30 18:00:00') )))))))))))))) [1,51] sort(xDocumentSortDate DESC)
    >search/6
    02.19 15:23:53.688
    IdcServer-14885
    Start parsing drill down fields with SAX...
    >search/6
    02.19 15:23:53.691
    IdcServer-14885
    Completed parsing 1 groups.
    >search/7
    02.19 15:23:53.692
    IdcServer-14885
    ResultSetInterface results: <ctx_result_set><hitlist><hit><sdata name="DID">11489</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006063</sdata><score>100</score></hit><hit><sdata name="DID">16132</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006403</sdata><score>100</score></hit><hit><sdata name="DID">13513</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006591</sdata><score>100</score></hit><hit><sdata name="DID">11319</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006003</sdata><score>100</score></hit><hit><sdata name="DID">17043</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004050</sdata><score>100</score></hit><hit><sdata name="DID">16477</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006407</sdata><score>100</score></hit><hit><sdata name="DID">16162</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006593</sdata><score>100</score></hit><hit><sdata name="DID">16010</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006399</sdata><score>100</score></hit><hit><sdata name="DID">10524</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-005609</sdata><score>100</score></hit><hit><sdata name="DID">10777</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-005601</sdata><score>100</score></hit><hit><sdata name="DID">10508</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-005600</sdata><score>100</score></hit><hit><sdata name="DID">10476</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-005585</sdata><score>100</score></hit><hit><sdata name="DID">12427</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006397</sdata><score>100</score></hit><hit><sdata name="DID">16333</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-005580</sdata><score>100</score></hit><hit><sdata name="DID">17080</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004051</sdata><score>100</score></hit><hit><sdata name="DID">15926</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006482</sdata><score>100</score></hit><hit><sdata name="DID">16857</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003963</sdata><score>100</score></hit><hit><sdata name="DID">16895</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003964</sdata><score>100</score></hit><hit><sdata name="DID">16487</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006481</sdata><score>100</score></hit><hit><sdata name="DID">12431</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006485</sdata><score>100</score></hit><hit><sdata name="DID">16813</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003977</sdata><score>100</score></hit><hit><sdata name="DID">9569</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-005342</sdata><score>100</score></hit><hit><sdata name="DID">16814</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003978</sdata><score>100</score></hit><hit><sdata name="DID">17045</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004056</sdata><score>100</score></hit><hit><sdata name="DID">12246</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006478</sdata><score>100</score></hit><hit><sdata name="DID">15911</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-005652</sdata><score>100</score></hit><hit><sdata name="DID">16775</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003999</sdata><score>100</score></hit><hit><sdata name="DID">11925</sdata><sdata name="SDDDOCNAME">VMOHSKEND05482000776</sdata><score>100</score></hit><hit><sdata name="DID">15639</sdata><sdata name="SDDDOCNAME">VMOHSKEND05482000763</sdata><score>100</score></hit><hit><sdata name="DID">16865</sdata><sdata name="SDDDOCNAME">VMOHSKEND05482000770</sdata><score>100</score></hit><hit><sdata name="DID">10100</sdata><sdata name="SDDDOCNAME">VMOHSKEND05482000741</sdata><score>100</score></hit><hit><sdata name="DID">17116</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004054</sdata><score>100</score></hit><hit><sdata name="DID">9015</sdata><sdata name="SDDDOCNAME">VMOHSKEND05482000801</sdata><score>100</score></hit><hit><sdata name="DID">16474</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006061</sdata><score>100</score></hit></hitlist><count>34</count><groups sdata="SDDRILLDOWN"><group value="Document,insight_application1,"><count>34</count></group></groups></ctx_result_set>
    >search/7
    02.19 15:23:53.692
    IdcServer-14885
    Trace:
    search/7
    02.19 15:23:53.692
    IdcServer-14885
    ctx_query.result_set start time:15:23:53.64
    search/7
    02.19 15:23:53.692
    IdcServer-14885
    ctx_query.result_set   end time:15:23:53.66
    search/7
    02.19 15:23:53.692
    IdcServer-14885
    Result parsing start time: 15:23:53.66
    search/7
    02.19 15:23:53.692
    IdcServer-14885
    Result parsing   end time: 15:23:53.67
    search/7
    02.19 15:23:53.692
    IdcServer-14885
    SELECT dDocName,dDocTitle,dDocType,dSecurityGroup,dInDate,xArchiveFlag,xHidden,xWebsiteObjectType,xWebsiteSection,xDontShowInListsForWebsites,dRevisionID,dDocCreator,dWebExtension,xUpdateContentType,xSubmitForApproval,xFilesAllowed,xRegionDefinition,xWCWorkflowAssignment,dDocCreatedDate,dCreateDate,xWCTags,dOriginalName,xNewsType,dFormat,dPublishType,dDocFunction,dDocAuthor,VaultFileSize,dDocLastModifier,xWebFlag,dOutDate,dGif,dExtension,dDocLastModifiedDate,xClbraRoleList,xInhibitUpdate,URL,AlternateFormat,WebFileSize,xClbraUserList,dDocOwner,xReadOnly,dRevClassID,xWCWorkflowApproverUserList,xCollectionID,xComments,xPartitionId,dRevLabel,xStorageRule,dFullTextFormat,xWebsites,xDocumentSortDate,dRendition2,dRendition1,dID,xReadyForReplication,dDocAccount,xReadMoreURL,xIdcProfile,xClbraAliasList,otsFormat,otsCharset,otsLanguage FROM IdcText2 WHERE dID IN (11489,16132,13513,11319,17043,16477,16162,16010,10524,10777,10508,10476,12427,16333,17080,15926,16857,16895,16487,12431,16813,9569,16814,17045,12246,15911,16775,11925,15639,16865,10100,17116,9015,16474)
    search/7
    02.19 15:23:53.692
    IdcServer-14885
    Meta query start time: 15:23:53.67
    search/7
    02.19 15:23:53.692
    IdcServer-14885
    Meta query end time:15:23:53.67
    >searchquery/6
    02.19 15:23:53.692
    IdcServer-14885
    !csMonitorActiveDbConnections,0
    >searchquery/6
    02.19 15:23:53.692
    IdcServer-14885
    Connection is removed from active connections with key of '[ACTIVE] ExecuteThread: '35' for queue: 'weblogic.kernel.Default (self-tuning)''.
    >searchquery/6
    02.19 15:23:53.692
    IdcServer-14885
    release pool connection
    >searchquery/6
    02.19 15:23:53.708
    IdcServer-14885
    Execution time is 65 ms.
    >searchquery/7
    02.19 15:23:53.945
    IdcServer-14886
    Query by [email protected] from CIS
    >searchquery/6
    02.19 15:23:53.946
    IdcServer-14886
    preparedQueryText: ( ((xRegionDefinition <matches> `NEWS_REG_DEF`) <and> ((xArchiveFlag <matches> `Yes`) <and> ((xDocumentSortDate>`2013-01-01 00:00:00`) <and> (xDocumentSortDate<`2013-12-31 00:00:00`)))) )
    >searchquery/6
    02.19 15:23:53.946
    IdcServer-14886
    Setting substr to other operator conv flag: '( ((xRegionDefinition <matches> `NEWS_REG_DEF`) <and> ((xArchiveFlag <matches> `Yes`) <and> ((xDocumentSortDate>`2013-01-01 00:00:00`) <and> (xDocumentSortDate<`2013-12-31 00:00:00`)))) )'
    >searchqueryparse/6
    02.19 15:23:53.946
    IdcServer-14886
    Into parse of UniversalSearchQuery for: ( ((xRegionDefinition <matches> `NEWS_REG_DEF`) <and> ((xArchiveFlag <matches> `Yes`) <and> ((xDocumentSortDate>`2013-01-01 00:00:00`) <and> (xDocumentSortDate<`2013-12-31 00:00:00`)))) )
    >searchqueryparse/6
    02.19 15:23:53.946
    IdcServer-14886
    Into parseQueryEx of UniversalSearchQueryParser for queryArr : ( ((xRegionDefinition <matches> `NEWS_REG_DEF`) <and> ((xArchiveFlag <matches> `Yes`) <and> ((xDocumentSortDate>`2013-01-01 00:00:00`) <and> (xDocumentSortDate<`2013-12-31 00:00:00`)))) )
    >searchquery/6
    02.19 15:23:53.946
    IdcServer-14886
    Parsing universal query: '( ((xRegionDefinition <matches> `NEWS_REG_DEF`) <and> ((xArchiveFlag <matches> `Yes`) <and> ((xDocumentSortDate>`2013-01-01 00:00:00`) <and> (xDocumentSortDate<`2013-12-31 00:00:00`)))) )'
    >searchquery/6
    02.19 15:23:53.946
    IdcServer-14886
    Processing callback on query value 'NEWS_REG_DEF'
    >searchqueryparse/6
    02.19 15:23:53.946
    IdcServer-14886
    Into appendClauseElement CommonSearchConfig with operator : equals value : NEWS_REG_DEF
    >searchqueryparse/6
    02.19 15:23:53.946
    IdcServer-14886
    Processing actions list size : 1 on the input value : xRegionDefinition with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:53.946
    IdcServer-14886
    Processing action number : 0 : prefix on the input value : xRegionDefinition with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:53.946
    IdcServer-14886
    Processing actions list size : 2 on the input value : NEWS_REG_DEF with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:53.946
    IdcServer-14886
    Processing action number : 0 : upperCase on the input value : NEWS_REG_DEF with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:53.946
    IdcServer-14886
    Processing action number : 1 : escape on the input value : NEWS_REG_DEF with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:53.946
    IdcServer-14886
    Processed escape with '' resulting in value :NEWS_REG_DEF
    >searchqueryparse/6
    02.19 15:23:53.946
    IdcServer-14886
    Processed escape with _ resulting in value :NEWS_REG_DEF
    >searchqueryparse/6
    02.19 15:23:53.946
    IdcServer-14886
    Processed escape with \- resulting in value :NEWS_REG_DEF
    >searchqueryparse/6
    02.19 15:23:53.946
    IdcServer-14886
    Processed escape with \_ resulting in value :NEWS\_REG\_DEF
    >searchqueryparse/6
    02.19 15:23:53.946
    IdcServer-14886
    Processed escape with \, resulting in value :NEWS\_REG\_DEF
    >searchqueryparse/6
    02.19 15:23:53.946
    IdcServer-14886
    Into appendClauseElement CommonSearchConfig with operator : and value :
    >searchquery/6
    02.19 15:23:53.946
    IdcServer-14886
    Processing callback on query value 'Yes'
    >searchqueryparse/6
    02.19 15:23:53.946
    IdcServer-14886
    Into appendClauseElement CommonSearchConfig with operator : equals value : Yes
    >searchqueryparse/6
    02.19 15:23:53.946
    IdcServer-14886
    Processing actions list size : 1 on the input value : xArchiveFlag with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:53.946
    IdcServer-14886
    Processing action number : 0 : prefix on the input value : xArchiveFlag with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:53.946
    IdcServer-14886
    Processing actions list size : 2 on the input value : Yes with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:53.946
    IdcServer-14886
    Processing action number : 0 : upperCase on the input value : Yes with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:53.946
    IdcServer-14886
    Processing action number : 1 : escape on the input value : YES with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:53.946
    IdcServer-14886
    Processed escape with '' resulting in value :YES
    >searchqueryparse/6
    02.19 15:23:53.946
    IdcServer-14886
    Processed escape with _ resulting in value :YES
    >searchqueryparse/6
    02.19 15:23:53.946
    IdcServer-14886
    Processed escape with \- resulting in value :YES
    >searchqueryparse/6
    02.19 15:23:53.947
    IdcServer-14886
    Processed escape with \_ resulting in value :YES
    >searchqueryparse/6
    02.19 15:23:53.947
    IdcServer-14886
    Processed escape with \, resulting in value :YES
    >searchqueryparse/6
    02.19 15:23:53.947
    IdcServer-14886
    Into appendClauseElement CommonSearchConfig with operator : and value :
    >searchquery/6
    02.19 15:23:53.947
    IdcServer-14886
    Processing callback on query value '2013-01-01 00:00:00'
    >searchqueryparse/6
    02.19 15:23:53.947
    IdcServer-14886
    Into appendClauseElement CommonSearchConfig with operator : dateGreater value : 2012/12/31 18:00:00
    >searchqueryparse/6
    02.19 15:23:53.947
    IdcServer-14886
    Into appendClauseElement CommonSearchConfig with operator : and value :
    >searchquery/6
    02.19 15:23:53.947
    IdcServer-14886
    Processing callback on query value '2013-12-31 00:00:00'
    >searchqueryparse/6
    02.19 15:23:53.947
    IdcServer-14886
    Into appendClauseElement CommonSearchConfig with operator : dateLess value : 2013/12/30 18:00:00
    >searchquery/6
    02.19 15:23:53.947
    IdcServer-14886
    Converted native query: '((( SDATA(sdxRegionDefinition LIKE 'NEWS\_REG\_DEF') )  and  (( SDATA(sdxArchiveFlag LIKE 'YES') )  and  (( SDATA(xDocumentSortDate > '2012/12/31 18:00:00') )  and  ( SDATA(xDocumentSortDate < '2013/12/30 18:00:00') )))))'
    >searchquery/7
    02.19 15:23:53.947
    IdcServer-14886
    assigning connection
    >searchquery/6
    02.19 15:23:53.947
    IdcServer-14886
    !csMonitorActiveDbConnections,1
    >searchquery/6
    02.19 15:23:53.947
    IdcServer-14886
    Connection is added to active connections with key of '[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)''.
    >searchquery/6
    02.19 15:23:53.947
    IdcServer-14886
    query(live): (((((((((((( SDATA(sdxRegionDefinition LIKE 'NEWS\_REG\_DEF') )  and  (( SDATA(sdxArchiveFlag LIKE 'YES') )  and  (( SDATA(xDocumentSortDate > '2012/12/31 18:00:00') )  and  ( SDATA(xDocumentSortDate < '2013/12/30 18:00:00') )))))))))))))) [1,51] sort(xDocumentSortDate DESC)
    >search/6
    02.19 15:23:53.992
    IdcServer-14886
    Start parsing drill down fields with SAX...
    >search/6
    02.19 15:23:53.993
    IdcServer-14886
    Completed parsing 1 groups.
    >search/7
    02.19 15:23:53.994
    IdcServer-14886
    ResultSetInterface results: <ctx_result_set><hitlist><hit><sdata name="DID">11489</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006063</sdata><score>100</score></hit><hit><sdata name="DID">16132</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006403</sdata><score>100</score></hit><hit><sdata name="DID">13513</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006591</sdata><score>100</score></hit><hit><sdata name="DID">11319</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006003</sdata><score>100</score></hit><hit><sdata name="DID">17043</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004050</sdata><score>100</score></hit><hit><sdata name="DID">16477</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006407</sdata><score>100</score></hit><hit><sdata name="DID">16162</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006593</sdata><score>100</score></hit><hit><sdata name="DID">16010</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006399</sdata><score>100</score></hit><hit><sdata name="DID">10524</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-005609</sdata><score>100</score></hit><hit><sdata name="DID">10777</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-005601</sdata><score>100</score></hit><hit><sdata name="DID">10508</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-005600</sdata><score>100</score></hit><hit><sdata name="DID">10476</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-005585</sdata><score>100</score></hit><hit><sdata name="DID">12427</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006397</sdata><score>100</score></hit><hit><sdata name="DID">16333</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-005580</sdata><score>100</score></hit><hit><sdata name="DID">17080</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004051</sdata><score>100</score></hit><hit><sdata name="DID">15926</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006482</sdata><score>100</score></hit><hit><sdata name="DID">16857</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003963</sdata><score>100</score></hit><hit><sdata name="DID">16895</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003964</sdata><score>100</score></hit><hit><sdata name="DID">16487</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006481</sdata><score>100</score></hit><hit><sdata name="DID">12431</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006485</sdata><score>100</score></hit><hit><sdata name="DID">16813</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003977</sdata><score>100</score></hit><hit><sdata name="DID">9569</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-005342</sdata><score>100</score></hit><hit><sdata name="DID">16814</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003978</sdata><score>100</score></hit><hit><sdata name="DID">17045</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004056</sdata><score>100</score></hit><hit><sdata name="DID">12246</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006478</sdata><score>100</score></hit><hit><sdata name="DID">15911</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-005652</sdata><score>100</score></hit><hit><sdata name="DID">16775</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003999</sdata><score>100</score></hit><hit><sdata name="DID">11925</sdata><sdata name="SDDDOCNAME">VMOHSKEND05482000776</sdata><score>100</score></hit><hit><sdata name="DID">15639</sdata><sdata name="SDDDOCNAME">VMOHSKEND05482000763</sdata><score>100</score></hit><hit><sdata name="DID">16865</sdata><sdata name="SDDDOCNAME">VMOHSKEND05482000770</sdata><score>100</score></hit><hit><sdata name="DID">10100</sdata><sdata name="SDDDOCNAME">VMOHSKEND05482000741</sdata><score>100</score></hit><hit><sdata name="DID">17116</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004054</sdata><score>100</score></hit><hit><sdata name="DID">9015</sdata><sdata name="SDDDOCNAME">VMOHSKEND05482000801</sdata><score>100</score></hit><hit><sdata name="DID">16474</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006061</sdata><score>100</score></hit></hitlist><count>34</count><groups sdata="SDDRILLDOWN"><group value="Document,insight_application1,"><count>34</count></group></groups></ctx_result_set>
    >search/7
    02.19 15:23:53.994
    IdcServer-14886
    Trace:
    search/7
    02.19 15:23:53.994
    IdcServer-14886
    ctx_query.result_set start time:15:23:53.95
    search/7
    02.19 15:23:53.994
    IdcServer-14886
    ctx_query.result_set   end time:15:23:53.96
    search/7
    02.19 15:23:53.994
    IdcServer-14886
    Result parsing start time: 15:23:53.96
    search/7
    02.19 15:23:53.994
    IdcServer-14886
    Result parsing   end time: 15:23:53.97
    search/7
    02.19 15:23:53.994
    IdcServer-14886
    SELECT dDocName,dDocTitle,dDocType,dSecurityGroup,dInDate,xArchiveFlag,xHidden,xWebsiteObjectType,xWebsiteSection,xDontShowInListsForWebsites,dRevisionID,dDocCreator,dWebExtension,xUpdateContentType,xSubmitForApproval,xFilesAllowed,xRegionDefinition,xWCWorkflowAssignment,dDocCreatedDate,dCreateDate,xWCTags,dOriginalName,xNewsType,dFormat,dPublishType,dDocFunction,dDocAuthor,VaultFileSize,dDocLastModifier,xWebFlag,dOutDate,dGif,dExtension,dDocLastModifiedDate,xClbraRoleList,xInhibitUpdate,URL,AlternateFormat,WebFileSize,xClbraUserList,dDocOwner,xReadOnly,dRevClassID,xWCWorkflowApproverUserList,xCollectionID,xComments,xPartitionId,dRevLabel,xStorageRule,dFullTextFormat,xWebsites,xDocumentSortDate,dRendition2,dRendition1,dID,xReadyForReplication,dDocAccount,xReadMoreURL,xIdcProfile,xClbraAliasList,otsFormat,otsCharset,otsLanguage FROM IdcText2 WHERE dID IN (11489,16132,13513,11319,17043,16477,16162,16010,10524,10777,10508,10476,12427,16333,17080,15926,16857,16895,16487,12431,16813,9569,16814,17045,12246,15911,16775,11925,15639,16865,10100,17116,9015,16474)
    search/7
    02.19 15:23:53.994
    IdcServer-14886
    Meta query start time: 15:23:53.97
    search/7
    02.19 15:23:53.994
    IdcServer-14886
    Meta query end time:15:23:53.98
    >searchquery/6
    02.19 15:23:53.995
    IdcServer-14886
    !csMonitorActiveDbConnections,0
    >searchquery/6
    02.19 15:23:53.995
    IdcServer-14886
    Connection is removed from active connections with key of '[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)''.
    >searchquery/6
    02.19 15:23:53.995
    IdcServer-14886
    release pool connection
    >searchquery/6
    02.19 15:23:54.007
    IdcServer-14886
    Execution time is 61 ms.
    >searchquery/7
    02.19 15:23:54.313
    IdcServer-14887
    Query by [email protected] from CIS
    >searchquery/6
    02.19 15:23:54.313
    IdcServer-14887
    preparedQueryText: ( ((xRegionDefinition <matches> `NEWS_REG_DEF`) <and> ((xArchiveFlag <matches> `Yes`) <and> ((xDocumentSortDate>`2014-01-01 00:00:00`) <and> (xDocumentSortDate<`2014-12-31 00:00:00`)))) )
    >searchquery/6
    02.19 15:23:54.313
    IdcServer-14887
    Setting substr to other operator conv flag: '( ((xRegionDefinition <matches> `NEWS_REG_DEF`) <and> ((xArchiveFlag <matches> `Yes`) <and> ((xDocumentSortDate>`2014-01-01 00:00:00`) <and> (xDocumentSortDate<`2014-12-31 00:00:00`)))) )'
    >searchqueryparse/6
    02.19 15:23:54.313
    IdcServer-14887
    Into parse of UniversalSearchQuery for: ( ((xRegionDefinition <matches> `NEWS_REG_DEF`) <and> ((xArchiveFlag <matches> `Yes`) <and> ((xDocumentSortDate>`2014-01-01 00:00:00`) <and> (xDocumentSortDate<`2014-12-31 00:00:00`)))) )
    >searchqueryparse/6
    02.19 15:23:54.313
    IdcServer-14887
    Into parseQueryEx of UniversalSearchQueryParser for queryArr : ( ((xRegionDefinition <matches> `NEWS_REG_DEF`) <and> ((xArchiveFlag <matches> `Yes`) <and> ((xDocumentSortDate>`2014-01-01 00:00:00`) <and> (xDocumentSortDate<`2014-12-31 00:00:00`)))) )
    >searchquery/6
    02.19 15:23:54.313
    IdcServer-14887
    Parsing universal query: '( ((xRegionDefinition <matches> `NEWS_REG_DEF`) <and> ((xArchiveFlag <matches> `Yes`) <and> ((xDocumentSortDate>`2014-01-01 00:00:00`) <and> (xDocumentSortDate<`2014-12-31 00:00:00`)))) )'
    >searchquery/6
    02.19 15:23:54.313
    IdcServer-14887
    Processing callback on query value 'NEWS_REG_DEF'
    >searchqueryparse/6
    02.19 15:23:54.313
    IdcServer-14887
    Into appendClauseElement CommonSearchConfig with operator : equals value : NEWS_REG_DEF
    >searchqueryparse/6
    02.19 15:23:54.313
    IdcServer-14887
    Processing actions list size : 1 on the input value : xRegionDefinition with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:54.313
    IdcServer-14887
    Processing action number : 0 : prefix on the input value : xRegionDefinition with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:54.313
    IdcServer-14887
    Processing actions list size : 2 on the input value : NEWS_REG_DEF with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:54.314
    IdcServer-14887
    Processing action number : 0 : upperCase on the input value : NEWS_REG_DEF with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:54.314
    IdcServer-14887
    Processing action number : 1 : escape on the input value : NEWS_REG_DEF with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:54.314
    IdcServer-14887
    Processed escape with '' resulting in value :NEWS_REG_DEF
    >searchqueryparse/6
    02.19 15:23:54.314
    IdcServer-14887
    Processed escape with _ resulting in value :NEWS_REG_DEF
    >searchqueryparse/6
    02.19 15:23:54.314
    IdcServer-14887
    Processed escape with \- resulting in value :NEWS_REG_DEF
    >searchqueryparse/6
    02.19 15:23:54.314
    IdcServer-14887
    Processed escape with \_ resulting in value :NEWS\_REG\_DEF
    >searchqueryparse/6
    02.19 15:23:54.314
    IdcServer-14887
    Processed escape with \, resulting in value :NEWS\_REG\_DEF
    >searchqueryparse/6
    02.19 15:23:54.314
    IdcServer-14887
    Into appendClauseElement CommonSearchConfig with operator : and value :
    >searchquery/6
    02.19 15:23:54.314
    IdcServer-14887
    Processing callback on query value 'Yes'
    >searchqueryparse/6
    02.19 15:23:54.314
    IdcServer-14887
    Into appendClauseElement CommonSearchConfig with operator : equals value : Yes
    >searchqueryparse/6
    02.19 15:23:54.314
    IdcServer-14887
    Processing actions list size : 1 on the input value : xArchiveFlag with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:54.314
    IdcServer-14887
    Processing action number : 0 : prefix on the input value : xArchiveFlag with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:54.314
    IdcServer-14887
    Processing actions list size : 2 on the input value : Yes with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:54.314
    IdcServer-14887
    Processing action number : 0 : upperCase on the input value : Yes with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:54.314
    IdcServer-14887
    Processing action number : 1 : escape on the input value : YES with searchengine ORACLETEXTSEARCH
    >searchqueryparse/6
    02.19 15:23:54.314
    IdcServer-14887
    Processed escape with '' resulting in value :YES
    >searchqueryparse/6
    02.19 15:23:54.314
    IdcServer-14887
    Processed escape with _ resulting in value :YES
    >searchqueryparse/6
    02.19 15:23:54.314
    IdcServer-14887
    Processed escape with \- resulting in value :YES
    >searchqueryparse/6
    02.19 15:23:54.314
    IdcServer-14887
    Processed escape with \_ resulting in value :YES
    >searchqueryparse/6
    02.19 15:23:54.314
    IdcServer-14887
    Processed escape with \, resulting in value :YES
    >searchqueryparse/6
    02.19 15:23:54.314
    IdcServer-14887
    Into appendClauseElement CommonSearchConfig with operator : and value :
    >searchquery/6
    02.19 15:23:54.314
    IdcServer-14887
    Processing callback on query value '2014-01-01 00:00:00'
    >searchqueryparse/6
    02.19 15:23:54.314
    IdcServer-14887
    Into appendClauseElement CommonSearchConfig with operator : dateGreater value : 2013/12/31 18:00:00
    >searchqueryparse/6
    02.19 15:23:54.314
    IdcServer-14887
    Into appendClauseElement CommonSearchConfig with operator : and value :
    >searchquery/6
    02.19 15:23:54.314
    IdcServer-14887
    Processing callback on query value '2014-12-31 00:00:00'
    >searchqueryparse/6
    02.19 15:23:54.314
    IdcServer-14887
    Into appendClauseElement CommonSearchConfig with operator : dateLess value : 2014/12/30 18:00:00
    >searchquery/6
    02.19 15:23:54.314
    IdcServer-14887
    Converted native query: '((( SDATA(sdxRegionDefinition LIKE 'NEWS\_REG\_DEF') )  and  (( SDATA(sdxArchiveFlag LIKE 'YES') )  and  (( SDATA(xDocumentSortDate > '2013/12/31 18:00:00') )  and  ( SDATA(xDocumentSortDate < '2014/12/30 18:00:00') )))))'
    >searchquery/7
    02.19 15:23:54.314
    IdcServer-14887
    assigning connection
    >searchquery/6
    02.19 15:23:54.314
    IdcServer-14887
    !csMonitorActiveDbConnections,1
    >searchquery/6
    02.19 15:23:54.314
    IdcServer-14887
    Connection is added to active connections with key of '[ACTIVE] ExecuteThread: '21' for queue: 'weblogic.kernel.Default (self-tuning)''.
    >searchquery/6
    02.19 15:23:54.315
    IdcServer-14887
    query(live): (((((((((((( SDATA(sdxRegionDefinition LIKE 'NEWS\_REG\_DEF') )  and  (( SDATA(sdxArchiveFlag LIKE 'YES') )  and  (( SDATA(xDocumentSortDate > '2013/12/31 18:00:00') )  and  ( SDATA(xDocumentSortDate < '2014/12/30 18:00:00') )))))))))))))) [1,51] sort(xDocumentSortDate DESC)
    >search/6
    02.19 15:23:54.365
    IdcServer-14887
    Start parsing drill down fields with SAX...
    >search/6
    02.19 15:23:54.367
    IdcServer-14887
    Completed parsing 1 groups.
    >search/7
    02.19 15:23:54.369
    IdcServer-14887
    ResultSetInterface results: <ctx_result_set><hitlist><hit><sdata name="DID">17207</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004318</sdata><score>100</score></hit><hit><sdata name="DID">17281</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004289</sdata><score>100</score></hit><hit><sdata name="DID">17105</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004316</sdata><score>100</score></hit><hit><sdata name="DID">17244</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004252</sdata><score>100</score></hit><hit><sdata name="DID">16997</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004251</sdata><score>100</score></hit><hit><sdata name="DID">17034</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004233</sdata><score>100</score></hit><hit><sdata name="DID">17239</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004219</sdata><score>100</score></hit><hit><sdata name="DID">17178</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004186</sdata><score>100</score></hit><hit><sdata name="DID">17112</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004150</sdata><score>100</score></hit><hit><sdata name="DID">17276</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004148</sdata><score>100</score></hit><hit><sdata name="DID">17193</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004137</sdata><score>100</score></hit><hit><sdata name="DID">17070</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004132</sdata><score>100</score></hit><hit><sdata name="DID">17195</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004123</sdata><score>100</score></hit><hit><sdata name="DID">17275</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004116</sdata><score>100</score></hit><hit><sdata name="DID">17189</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004080</sdata><score>100</score></hit><hit><sdata name="DID">16993</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004089</sdata><score>100</score></hit><hit><sdata name="DID">17032</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004070</sdata><score>100</score></hit><hit><sdata name="DID">16784</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004035</sdata><score>100</score></hit><hit><sdata name="DID">16268</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-006848</sdata><score>100</score></hit><hit><sdata name="DID">16866</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004028</sdata><score>100</score></hit><hit><sdata name="DID">16940</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004027</sdata><score>100</score></hit><hit><sdata name="DID">16823</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004025</sdata><score>100</score></hit><hit><sdata name="DID">16731</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004024</sdata><score>100</score></hit><hit><sdata name="DID">17132</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004023</sdata><score>100</score></hit><hit><sdata name="DID">16645</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004020</sdata><score>100</score></hit><hit><sdata name="DID">16678</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004002</sdata><score>100</score></hit><hit><sdata name="DID">16642</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004000</sdata><score>100</score></hit><hit><sdata name="DID">16610</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-008921</sdata><score>100</score></hit><hit><sdata name="DID">16726</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003959</sdata><score>100</score></hit><hit><sdata name="DID">16663</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003952</sdata><score>100</score></hit><hit><sdata name="DID">15967</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003823</sdata><score>100</score></hit><hit><sdata name="DID">15878</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003821</sdata><score>100</score></hit><hit><sdata name="DID">16277</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003820</sdata><score>100</score></hit><hit><sdata name="DID">15624</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-008149</sdata><score>100</score></hit><hit><sdata name="DID">16178</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003607</sdata><score>100</score></hit><hit><sdata name="DID">16765</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003764</sdata><score>100</score></hit><hit><sdata name="DID">16691</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003766</sdata><score>100</score></hit><hit><sdata name="DID">16827</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003499</sdata><score>100</score></hit><hit><sdata name="DID">16303</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003498</sdata><score>100</score></hit><hit><sdata name="DID">16696</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003756</sdata><score>100</score></hit><hit><sdata name="DID">16937</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003806</sdata><score>100</score></hit><hit><sdata name="DID">15976</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003381</sdata><score>100</score></hit><hit><sdata name="DID">16364</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003807</sdata><score>100</score></hit><hit><sdata name="DID">15832</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003803</sdata><score>100</score></hit><hit><sdata name="DID">17285</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1004041</sdata><score>100</score></hit><hit><sdata name="DID">16639</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003972</sdata><score>100</score></hit><hit><sdata name="DID">16820</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1003628</sdata><score>100</score></hit><hit><sdata name="DID">15183</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-007721</sdata><score>100</score></hit><hit><sdata name="DID">15180</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-007720</sdata><score>100</score></hit><hit><sdata name="DID">15640</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-007722</sdata><score>100</score></hit><hit><sdata name="DID">15631</sdata><sdata name="SDDDOCNAME">WCC_CLUSTER1-007719</sdata><score>100</score></hit></hitlist><count>66</count><groups sdata="SDDRILLDOWN"><group value="Document,insight_application1,"><count>66</count></group></groups></ctx_result_set>
    >search/7
    02.19 15:23:54.369
    IdcServer-14887
    Trace:
    search/7
    02.19 15:23:54.369
    IdcServer-14887
    ctx_query.result_set start time:15:23:54.31
    search/7
    02.19 15:23:54.369
    IdcServer-14887
    ctx_query.result_set   end time:15:23:54.32
    search/7
    02.19 15:23:54.369
    IdcServer-14887
    Result parsing start time: 15:23:54.33
    search/7
    02.19 15:23:54.369
    IdcServer-14887
    Result parsing   end time: 15:23:54.35
    search/7
    02.19 15:23:54.369
    IdcServer-14887
    SELECT dDocName,dDocTitle,dDocType,dSecurityGroup,dInDate,xArchiveFlag,xHidden,xWebsiteObjectType,xWebsiteSection,xDontShowInListsForWebsites,dRevisionID,dDocCreator,dWebExtension,xUpdateContentType,xSubmitForApproval,xFilesAllowed,xRegionDefinition,xWCWorkflowAssignment,dDocCreatedDate,dCreateDate,xWCTags,dOriginalName,xNewsType,dFormat,dPublishType,dDocFunction,dDocAuthor,VaultFileSize,dDocLastModifier,xWebFlag,dOutDate,dGif,dExtension,dDocLastModifiedDate,xClbraRoleList,xInhibitUpdate,URL,AlternateFormat,WebFileSize,xClbraUserList,dDocOwner,xReadOnly,dRevClassID,xWCWorkflowApproverUserList,xCollectionID,xComments,xPartitionId,dRevLabel,xStorageRule,dFullTextFormat,xWebsites,xDocumentSortDate,dRendition2,dRendition1,dID,xReadyForReplication,dDocAccount,xReadMoreURL,xIdcProfile,xClbraAliasList,otsFormat,otsCharset,otsLanguage FROM IdcText2 WHERE dID IN (17207,17281,17105,17244,16997,17034,17239,17178,17112,17276,17193,17070,17195,17275,17189,16993,17032,16784,16268,16866,16940,16823,16731,17132,16645,16678,16642,16610,16726,16663,15967,15878,16277,15624,16178,16765,16691,16827,16303,16696,16937,15976,16364,15832,17285,16639,16820,15183,15180,15640,15631)
    search/7
    02.19 15:23:54.369
    IdcServer-14887
    Meta query start time: 15:23:54.35
    search/7
    02.19 15:23:54.369
    IdcServer-14887
    Meta query end time:15:23:54.35
    >searchquery/6
    02.19 15:23:54.369
    IdcServer-14887
    !csMonitorActiveDbConnections,0
    >searchquery/6
    02.19 15:23:54.369
    IdcServer-14887
    Connection is removed from active connections with key of '[ACTIVE] ExecuteThread: '21' for queue: 'weblogic.kernel.Default (self-tuning)''.
    >searchquery/6
    02.19 15:23:54.369
    IdcServer-14887
    release pool connection
    >searchquery/6
    02.19 15:23:54.382
    IdcServer-14887
    Execution time is 69 ms.
    >searchquery/7
    02.19 15:23:54.662
    IdcServer-14888
    Query by [email protected] from CIS
    >searchquery/6
    02.19 15:23:54.662
    IdcServer-14888
    preparedQueryText: ( ((xRegionDefinition <matches> `NEWS_REG_DEF`) <and> ((xArchiveFlag <matches> `Yes`) <and> ((xDocumentSortDate>`2014-01-01 00:00:00`) <and> (xDocumentSortDate<`2014-12-31 00:00:00`)))) )
    >searchquery/6
    02.19 15:23:54.662
    IdcServer-14888
    Setting substr to other operator conv flag: '( ((xRegionDefinition <matches> `NEWS_REG_DEF`) <and> ((xArchiveFlag <matches> `Yes`) <and> ((xDocumentSortDate>`2014-01-01 00:00:00`) <and> (xDocumentSortDate<`2014-12-31 00:00:00`)))) )'
    >searchqueryparse/6
    02.19 15:23:54.662
    IdcServer-14888
    Into parse of UniversalSearchQuery for: ( ((xRegionDefinition <matches> `NEWS_REG_DEF`) <and> ((xArchiveFlag <matches> `Yes`) <and> ((xDocumentSortDate>`2014-01-01 00:00:00`) <and> (xDocumentSortDate<`2014-12-31 00:00:00`)))) )
    >searchqueryparse/6
    02.19 15:23:54.662
    IdcServer-14888
    Into parseQueryEx of UniversalSearchQueryParser for queryArr : ( ((xRegionDefinition <matches> `NEWS_REG_DEF`) <and> ((xArchiveFlag <matches> `Yes`) <and> ((xDocumentSortDate>`2014-01-01 00:00:00`) <and> (xDocumentSortDate<`2014-12-31 00:00:00`)))) )
    >searchquery/6
    02.19 15:23:54.662
    IdcServer-14888
    Parsing universal query:

  • FTP: how to get total number of files in directory

    Hello Folks,
    I prefer to use FTP from the command line but cannot figure out how--after having connected to a remote directory via ftp--to list the total number of files in that directory.
    In Unix, I would do this:
    % ls | wc -l
    But hopefully there is also some way in FTP to do the same--but darned if I know how! I do see that FTP clients such as Transmit have this listing, but maybe that's a feature of the software and not ftp.
    Thanks in advance for any suggestions/tips.
    Doug

    I've done a lot of ftp scripts 10 years ago, mostly because I could not guarantee my scripted telnet would be available everywhere. The best answer today though is listed throughout this thread and that is to use the ssh family of commands that include ssh for secure remote shell, scp for secure remote copy and sftp which is the ftp interface to scp.
    My point is neither telnet or ftp are considered safe or secure anymore because listening to communications is popular, it is referenced in most "wizard" magazines, and usernames and passwords are not encrypted.
    Set up your environment first with ssh-keygen. Version 2 is more secure than version 1 if both are still offered. Then use "ssh user@hostname ls | wc -l" to get your number of files. It is simple execution with one command and returns a status.
    If you are really looking for a solution using what you are familar with and want to ignore advice concerning security, here is a sample batch script (untested). You can change the filenames, usernames, and hostnames as desired.
    rm dir.out 2> /dev/null
    echo "user sampleuser samplepw" > script.ftp
    echo "dir sampledirectory dir.out" >> script.ftp
    echo "quit" >> script.ftp
    ftp -n sample.hostname < script.ftp
    if [ ! -r dir.out ] # file not created
    then
    echo login failed
    elif [ ! -s dir.out ] # file created but empty
    then
    echo directory is empty
    else
    nf=`wc -l dir.out | cut -f1`
    echo "There are $nf files in the directory"
    fi

  • How to get total number of plants, employees, jobs and respective tasks

    Hi Gurus,
    I have requirement where in I need to give client information about root object. Information being sought is on the total number of plants, employees, jobs and respective tasks performed by employees.
    Is there any standard report available to fetch this information? Or please let me know how to collect all this information?
    Thanks in Advance.
    Rupali

    Total number of employees S_AHR_61016369
    Jobs S_AHR_61016497
    Tasks S_AHR_61016522, S_AHR_61016523 & S_AHR_61016524

  • How to get Maximum Number of Concurrent users for last few days?

    Hi,
    How I can get maximum number of concurrent users which were logged in to the system (ECC 5.0) I mean I want to check the hostory for last few weeks. Is there any way to get the same? I know that I can get Cumulative number of users in st03 under Expert mode but that is the number of users logged into the system during the day. Is there any place where SAP maintians the High Watermark of Number of concurrent users reached in the system?
    Thanks in advance...
    Regards,
    Pravin

    Sorry I really missed that I have posted a question here on sdn. I wanted to know this for planning the system hardware requirements. Activities like PM ( Performance Management ) happens once a year and during that activity we see heavy user loan on the system so if I have the exact stats of 1 or 2 years data I can size the system better next time. Fortunately last 2 years PM was very smooth for us. In that look for the improvement because each time we had little extra Harware. By doing the exact analysis we can save a Cost of ownership...
    I was looking for R/3 users. I could see the number in st07 but I want to know the exact number at particular time.. I believe that st07 stores only for few days.
    Thanks
    Pravin

Maybe you are looking for

  • Fade Out to White in Final Cut Pro (FCP)

    Could someone please show me how to do add a fade-to-white transition in Final Cut Pro (FCP)? (Instead of black, which is default.) I want to be able to do both: 1) fade to white; 2) and white to the picture. An example clip: http://www.allfilters.co

  • Please guide me on the issue of private key

    Hi All I am working on application that requires to do encryption and decryption using public and public key. I need some guidance on how to implement this functionality. The only requirement is to have public key and private key in two different fil

  • Is memory leak Problem Solved in this new FW 4.08...

    Hi frnds,This is my very first post. Im happy to be a member of N Series Family by owing a brand New N73 ME One Week Before (July 2008). The phone really Fascinated me with its features, Since my Previous Phone was Nokia 6630. Now let me Come to my p

  • Highlights/clarity bug

    Hi there, after playing a while with LR 4 settings i've discovered a pattern with horizontal lines, when pushing the highlights and clarity sliders highlights -100 clarity +100 same thing happens in CS6 Adobe Camera RAW its definatly a bug and i'd li

  • Problem Installing Snow Leopard...Please Help!!

    Following the install instruction it said 45 minutes left...so I went on with my morning and came back to check on it and the screen was completely black. Nothing would wake the computer until I finally held the power button down then restarted. Now