Querying metadata vs data

Hi There,
Say I had the option of coming up with whatever schema that works best for BDB XML from a performance standpoint to persist xml documents. That said, I now have the option of storing metadata as metadata or as part of the regular data/content. Given that both metadata and data/content can be indexed, is one option preferable over the other ?
Just to be really clear, I am considering b/w options (1) and (2) below. Assume that 'custCreatedBy' will be indexed for both (1) and (2).
(1)
Metadata: <custCreatedBy>bar</custCreatedBy>
Data/Content:
<cust>
<id>123</id>
<name>foo</name>
</cust>
(2)
Metadata: None
Data/Content:
<cust>
<custCreatedBy>bar</custCreatedBy>
<content>
<id>123</id>
<name>foo</name>
</content>
</cust>
Cheers,
Shashi

Whether you opt to put data in the document or in
metadata depends mainly on whether you need that data
available outside of BDB XML. If you do, it should go
in the document. There is not a major performance
difference, because both can be looked up directly
using indexes if they exist. I use metadata primarily
when I need to store data that cannot exist in
my XML, for such reasons as schema constraints, etc.
Keep in mind that metadata is not XML, it's just
name-value pairs.
Agreed. Makes sense.
When you can create your own XML, some of the things
to keep in mind for ease of use with BDB XML are:
I guess in my case, I wasn't very clear but I do not have as much control over the content as much as the rest of it which would be the metadata. But regardless, all of the below points are very valid and useful (some of which I gathered from Chapter 7). Thanks for reiterating these anyways.
• Indexes are not used for negative presence. That
is, you should avoid XML where you need to test for
the absence of certain nodes. If you wanted to query
for all documents missing an <id/> element, for
example, indexes would not help. You'd need to
instead test for documents with <id/> elements with
an empty string value, and look that up with a
query.Interesting. I find it hard to understand why a "presence" index cannot be leveraged for this as well. Anyways, just to satisfy my curiosity, I played with the two queries (exist, not exist) - below are query plans for both usecases with a "presence" index for "id" node.
dbxml> queryPlan collection('junk.dbxml')/cust[id]
<XQuery>
<Navigation>
<QueryPlanFunction result="collection" container="junk.dbxml">
<OQPlan>P(node-element-presence-none,=,id)</OQPlan>
</QueryPlanFunction>
<Step axis="child" name="cust" nodeType="element">
<Predicates>
<Step axis="child" name="id" nodeType="element">
<OQPlan>P(node-element-presence-none,=,id)</OQPlan>
</Step>
</Predicates>
</Step>
</Navigation>
</XQuery>
dbxml> queryPlan collection('junk.dbxml')/cust[not(id)]
<XQuery>
<Navigation>
<QueryPlanFunction result="collection" container="junk.dbxml">
<OQPlan>U</OQPlan>
</QueryPlanFunction>
<Step axis="child" name="cust" nodeType="element">
<Predicates>
<Function name="{http://www.w3.org/2005/04/xpath-functions}:not">
<Step axis="child" name="id" nodeType="element">
<OQPlan>P(node-element-presence-none,=,id)</OQPlan>
</Step>
</Function>
</Predicates>
</Step>
</Navigation>
</XQuery>
I presume that you are referring to the first bolded line (indicating that the index is not kicking in for "cust[not(id)]" query. However, I am curious to learn about the second bolded line above which seems to indicate that the "presence" index is indeed kicking in. In my limited experience with db xml, this is the first query plan where I have seen the <OQPlan> node appear twice. Wondering if someone could shed more light or pointers to understand this query plan more. I did see the "Caution" line in your book citing that it is not documented anywhere - but i am hoping against hope that maybe that is not true anymore - since I see myself banking on it to do some tuning of my own.
Thanks again for all your insightful comments/tips. Cheers.

Similar Messages

  • Server does not return query metadata check the query

    hi,
    i want know how to  use bex query designer,
    when i  insert a data provider,the message is appear "server does not return query metadata check the query",
    who can help me ?
    thanks a lot !
    addition: my current entironment is: gui710 with sp4,bi710 with sp2.

    Hi,
    All the yellow and red lights will have an effect on query performance or execution.  Read up on them as there are too many to explain via this forum.
    There is a document on SDN on query performance.  Some useful links:
    [https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/9f4a452b-0301-0010-8ca6-ef25a095834a]
    [http://help.sap.com/saphelp_nw70/helpdata/en/41/b987eb1443534ba78a793f4beed9d5/frameset.htm]
    [http://help.sap.com/saphelp_nw70/helpdata/en/d9/31363dc992752de10000000a114084/frameset.htm]
    [http://help.sap.com/saphelp_nw04/helpdata/en/2e/caceae8dd08e48a63c2da60c8ffa5e/frameset.htm]
    [https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e0501cb9-d51c-2a10-239c-c141a22c45a6]
    Cheers...

  • APD -  Query metadata is incomplete

    Hi
    I have a problem with a basic APD made of a query as a data source and an ODS as a target
    When executed it ends with 'Query metadata is incomplete'.  Anybody know how to manage this 'query metadatau2019
    Thanks in advance for your answers.
    Thanks
    Sai

    HI
    I am facing problem with APD, when executed it ends with 'Query metadata is incomplete'. Anybody know how to manage this 'query metadatau2019
    Thanks
    Sai

  • Getting data in a query on last date of all previous months

    Dear Experts,
    I need your help with a query.
    I am trying to create a query which when run should pick the number of Open Sales Order on the last date of all the previous months from the start of company.
    I could create the query for fetching the required data on last day of the previous month, say today is 25th June 2014, so my query only fetches data for May 31st 2014 but I need data for all previous month, May 31st 2014, April 30th 2014, March 31st 2014 & so on.
    Please advise how to achieve this is SQL query.
    Thanks & regards,
    Nitin

    Hi,
    Try this:
    Select *
    from(
    SELECT T0.[DocNum] as #,t0.cardcode as C, t0.docdate
    FROM ORDR T0
    WHERE T0.[DocStatus] = 'o' and T0.[DocDate]  = CONVERT(VARCHAR(10), DATEADD(s,-1,DATEADD(mm, DATEDIFF(m,0,getdate())-1,0)),10) OR T0.[DocDate]  = CONVERT(VARCHAR(10), DATEADD(s,-1,DATEADD(mm, DATEDIFF(m,0,getdate())-2,0)),10) or T0.[DocDate]  = CONVERT(VARCHAR(10), DATEADD(s,-1,DATEADD(mm, DATEDIFF(m,0,getdate())-3,0)),10) or T0.[DocDate]  = CONVERT(VARCHAR(10), DATEADD(s,-1,DATEADD(mm, DATEDIFF(m,0,getdate())-4,0)),10) or T0.[DocDate]  = CONVERT(VARCHAR(10), DATEADD(s,-1,DATEADD(mm, DATEDIFF(m,0,getdate())-5,0)),10) or T0.[DocDate]  = CONVERT(VARCHAR(10), DATEADD(s,-1,DATEADD(mm, DATEDIFF(m,0,getdate())-6,0)),10) or T0.[DocDate]  = CONVERT(VARCHAR(10), DATEADD(s,-1,DATEADD(mm, DATEDIFF(m,0,getdate())-7,0)),10)
    group by t0.cardcode,docdate,T0.[DocNum]) S
    pivot
    (count(#) for c in([cvt01],[cvt02],[cvt03],[cvt04],[cvt05],[cvt06],[cvt07],[cvt08],[cvt12])) P
    Note: Replace Cvt01,02...with your customer code.
    Thanks & Regards,
    Nagarajan

  • POWER QUERY Get External Data From File From Folder (Excel 2013)

    Hi,
    Beginner's question :
    What could be the use of the query on a folder : we just get a list of files with their path. What can we do with that?
    Thanks

    Hi,
    Do you want to combine data from multiple Excel Files in the same folder path into one table? If I understand correct, we can add a custom column to import the data.
    After we getting a list of files with their path, the Query Editor window will activate to show you a table containing a record for each file in the chosen directory. These will provide our function with the needed FilePath and FileName parameters. 
    Function sample: File name([Folder path],[Field name]
    For more detailed steps, please see the article:
    http://datapigtechnologies.com/blog/index.php/using-power-query-to-combine-data-from-multiple-excel-files-into-one-table/
    Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • How can I use "date modified" from metadata to date iphoto events?

    I am very frustrated trying to move photos from windows to iMac.  I have a number of photos, all of them have some metadata with date created and date modified.  This worked well in Picasa in Windows and kept everything in order.  Now it seems iphoto will not read date modified or assigns date created (if there is no date in the metadata) as the date everything was switched over.  I looked over some of the wrongly organized photos (there are thousands) and realized that under the old sustem, Picasa in windows must have used either date created or date modified, which ever came earlier or perhaps whichever was available.  In iphoto, it doesn't read "date modified" or does this crazy thing where even if the modification date is before the creation date, puts all photos in the order or when they were brought over from windows.  I have a lot of photos dated September 18 -- thousands.
    Is there any way to get either iphoto or some other program (I'm not terribly impressed by iphoto) that will properly organize the photos in an imac environment. In other words, I want a program to look at (1) creation date or (2) modification date (which-ever is earlier).
    Even Picasa is now confused (in the mac envirnoment). 
    Thanks,
    Mark

    No, as this is file metadata not photo metadata.
    You can adjust the date and time using the Photos -> Adjust Date and Time or even the Photos -> Batch Change command.
    Regards
    TD

  • Data driven subscription query returns no data

    We have a data driven subscription on SSRS 2008 R2. The columns in the query are tied to one or more parameters of the report. When we run the subscription and if the query does not return any rows, I was hoping that the subscription will not start; however,
    instead, to my surprise, I got error stating..."Parameter XYZ value can't be null". How to avoid this error and keep subscription from running in this situation? 
    Example: I have a report that required employeeID as a parameter. I have a query (step 3: data driven subscription) that fetches employee ID based on some criteria. If there is no row returned by the query; It throws error on report stating "Parameter
    EmployeeID can't be null."
    Nehal Jain

    Hello Nehal -
    Try adding a UNION ALL to your parameter dataset query like
    UNION ALL SELECT NULL AS EmployeeID , ..
    Just check accordingly. I ll revert again based on this , got a priority now.
    Happy to help! Thanks. Regards and good Wishes, Deepak. http://deepaksqlmsbusinessintelligence.blogspot.com/

  • Web Analysis Error -- Error while executing query and retrieving data

    Regarding Web Analysis:
    We have a number of reports that we created. yesterday they were all working fine. today we try to open them and most are generating an error.
    The error is:
    Error while executing query and retrieving data.; nested exception is:
    com.hyperion.ap.APException: [1033] Native:
    1013033[Thu Oct 22 09:08:17
    2009]server name/application name/database name/user name/Error91013033)
    ReportWriter exit abnormally
    Does anyone have any insight into what is going on?
    My version information is:
    Hyperion System 9 BI+ Analytic Administration Services 9.3.0.1.1 Build 2
    Web Analysis 9.3.0.0.0.286
    Thanks in advance for your help.
    DaveW

    Hi,
    And also click on check option by opening the query in Query designer,as Mr . Arun suggested.
    And if you get any error in checking, see the long message(detail).
    With rgds,
    Anil Kumar Sharma .P

  • Select query to read data from a view

    Hi friends,
    We have been using a query to read data from a custom view which used to work perfectly. Now the program sits at that select query forever. We are able to extract same data from se16. Not sure what could be the problem.
    Thanks in advance.

    Dev
    Have a look at the Table Index for the tables involved in the View... I think there is some change in the Indexes.. (Add / Remove / Change)
    Thanks
    Amol Lohade

  • Error when executing a query on master data

    Hi Friends,
    When I execute a query fon Master Data Characteristic infoObject ( 0BPARTNER ) from BEx Analyzer I got the below error. 0BPARTNER contains 15 attributes. I am getting the below error only for this query. Rest all other queries are working good with the same BEx Analyzer.
    <b>An error occured in the communication with the BW Server.
    Due to this connection has to be closed.</b>
    <b>Detailed Description:
    The system is configured incorrectly.</b>
    Please tell me what could be the problem? How to overcome this?
    Thanks,
    Sasi

    Hi Arun,
    Before the execution of query I did that. And it was ' Query is Correct'.
    Any more ideas?
    Thanks,
    Sasi.

  • How to use a query in matrix data retrive

    hai  everybody
    how to use a query in matrix data retrive...
    pls ..

    If u have created a UDT to store the data then U can retrive the data through recordset.
    oRecordset.doquery("SQL Statement")
    If u have taken the DB Data source to Manipulate then
    then type
    oMatrix.flushtoDataSource
    then
    U can retrive the data through DB Data source.
    -Manmath

  • Query regarding the data type for fetcing records from multiple ODS tables

    hey guys;
    i have a query regarding the data type for fetcing records from multiple ODS tables.
    if i have 2 table with a same column name then in the datatype under parent row node i cant add 2 nodes with the same name.
    can any one help with some suggestion.

    Hi Mudit,
    One option would be to go as mentioned by Padamja , prefxing the table name to the column name or another would be to use the AS keyoword in your SQL statement.
    AS is used to rename the column name when data is being selected from your DB.
    So, the query  Select ename as empname from emptable will return the data with column name as empname.
    Regards,
    Bhavesh

  • Query from the data abse  and pass values to a pdf form

    query from the data abse and pass values to a pdf form
    Hello
    Hello i have this html report that i have written to output a
    report.
    now, i am assigned to pass the same fields to a pdf form so
    the fields in the adaobe form can be populated or the term
    Pre-populate the form.
    can anyone help me get started.
    first i would like to know if it can be done.
    second, what do i need to get started (tools )
    third how do i do this.
    i am really lost at this point.
    can anyone give me tips in how to approach this
    subject??

    It can be one using Adobe Acrobat Designer which is packaged
    with Acrobat
    Professional Pro 7. It uses all XML to create and populate
    forms.
    If you had the time, you can also create <cfdocument
    type="pdf"> to have
    them ready and just pass the info to it so it autogenerates
    the PDF on the
    fly.

  • Database performance is very very slow when I query metadata

    Hi,
    I have installed Oracle 11G R2 recently and Its a oracle Standard edition single instance installation. When I run the below query it takes more than an 1minute to return the data. I have did another installation of oracle 11GR2 on on my laptop and it takes not more than 10sec. Why is this difference. Why is that query of meta data is taking so long. How to debug. Any help!
    select component, final_size, end_time from v$sga_resize_ops where initial_size <> final_size order by end_time;
    This is the query and its a direct select to a V$ table.
    On one machine it takes 1min 31 sec.
    SQL> r
    1* select component, final_size, end_time from v$sga_resize_ops where initial_size <> final_size order by end_time
    COMPONENT FINAL_SIZE END_TIME
    shared pool 1157627904 30-SEP-10
    large pool 16777216 30-SEP-10
    DEFAULT buffer cache 3036676096 30-SEP-10
    streams pool 16777216 30-SEP-10
    java pool 16777216 30-SEP-10
    Elapsed: 00:01:31.50
    SQL>
    ON LAPTOP:
    java pool     4194304     03-SEP-10
    streams pool     4194304     03-SEP-10
    DEFAULT buffer cache     146800640     03-SEP-10
    large pool     4194304     03-SEP-10
    shared pool     230686720     03-SEP-10
    DEFAULT buffer cache     142606336     03-SEP-10
    shared pool     234881024     03-SEP-10
    DEFAULT buffer cache     138412032     03-SEP-10
    shared pool     239075328     03-SEP-10
    TAKES <1 SEC

    TKPROF: Release 11.2.0.1.0 - Development on Fri Oct 1 07:53:01 2010
    Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved.
    Trace file: knk6_ora_487590.trc
    Sort options: default
    count = number of times OCI procedure was executed
    cpu = cpu time in seconds executing
    elapsed = elapsed time in seconds executing
    disk = number of physical reads of buffers from disk
    query = number of buffers gotten for consistent read
    current = number of buffers gotten in current mode (usually for update)
    rows = number of rows processed by the fetch or execute call
    SQL ID: 4tk6t8tfsfqbf
    Plan Hash: 0
    alter session set sql_trace=true
    call count cpu elapsed disk query current rows
    Parse 0 0.00 0.00 0 0 0 0
    Execute 1 0.00 0.00 0 0 0 0
    Fetch 0 0.00 0.00 0 0 0 0
    total 1 0.00 0.00 0 0 0 0
    Misses in library cache during parse: 0
    Misses in library cache during execute: 1
    Optimizer mode: FIRST_ROWS
    Parsing user id: SYS
    SQL ID: 9babjv8yq8ru3
    Plan Hash: 0
    BEGIN DBMS_OUTPUT.GET_LINES(:LINES, :NUMLINES); END;
    call count cpu elapsed disk query current rows
    Parse 2 0.00 0.00 0 0 0 0
    Execute 2 0.00 0.00 0 3 0 2
    Fetch 0 0.00 0.00 0 0 0 0
    total 4 0.00 0.00 0 3 0 2
    Misses in library cache during parse: 0
    Optimizer mode: FIRST_ROWS
    Parsing user id: SYS
    select component,
    final_size,
    end_time
    from v$sga_resize_ops
    where initial_size <> final_size order by end_time
    call count cpu elapsed disk query current rows
    Parse 1 0.00 0.00 0 0 0 0
    Execute 1 0.00 0.00 0 0 0 0
    Fetch 2 90.78 90.97 0 0 0 5
    total 4 90.78 90.97 0 0 0 5
    Misses in library cache during parse: 0
    Optimizer mode: FIRST_ROWS
    Parsing user id: SYS
    Rows Row Source Operation
    5 SORT ORDER BY (cr=0 pr=0 pw=0 time=0 us cost=1 size=247 card=1)
    5 NESTED LOOPS (cr=0 pr=0 pw=0 time=72903784 us cost=0 size=247 card=1)
    12010 MERGE JOIN CARTESIAN (cr=0 pr=0 pw=0 time=19546 us cost=0 size=166 card=1)
    5 NESTED LOOPS (cr=0 pr=0 pw=0 time=200 us cost=0 size=134 card=1)
    14 FIXED TABLE FULL X$KMGSCT (cr=0 pr=0 pw=0 time=91 us cost=0 size=60 card=1)
    5 FIXED TABLE FULL X$KMGSOP (cr=0 pr=0 pw=0 time=0 us cost=0 size=74 card=1)
    12010 BUFFER SORT (cr=0 pr=0 pw=0 time=9677 us cost=0 size=3200 card=100)
    2402 FIXED TABLE FULL X$KSPPCV (cr=0 pr=0 pw=0 time=3411 us cost=0 size=3200 card=100)
    5 FIXED TABLE FULL X$KSPPI (cr=0 pr=0 pw=0 time=0 us cost=0 size=81 card=1)
    SQL ID: aam2chsgpj7mb
    Plan Hash: 0
    alter session set sql_trace=false
    call count cpu elapsed disk query current rows
    Parse 1 0.00 0.00 0 0 0 0
    Execute 1 0.00 0.00 0 0 0 0
    Fetch 0 0.00 0.00 0 0 0 0
    total 2 0.00 0.00 0 0 0 0
    Misses in library cache during parse: 1
    Optimizer mode: FIRST_ROWS
    Parsing user id: SYS
    OVERALL TOTALS FOR ALL NON-RECURSIVE STATEMENTS
    call count cpu elapsed disk query current rows
    Parse 4 0.00 0.00 0 0 0 0
    Execute 5 0.00 0.00 0 3 0 2
    Fetch 2 90.78 90.97 0 0 0 5
    total 11 90.78 90.97 0 3 0 7
    Misses in library cache during parse: 1
    Misses in library cache during execute: 1
    OVERALL TOTALS FOR ALL RECURSIVE STATEMENTS
    call count cpu elapsed disk query current rows
    Parse 0 0.00 0.00 0 0 0 0
    Execute 0 0.00 0.00 0 0 0 0
    Fetch 0 0.00 0.00 0 0 0 0
    total 0 0.00 0.00 0 0 0 0
    Misses in library cache during parse: 0
    5 user SQL statements in session.
    0 internal SQL statements in session.
    5 SQL statements in session.
    Trace file: knk6_ora_487590.trc
    Trace file compatibility: 11.1.0.7
    Sort options: default
    1 session in tracefile.
    5 user SQL statements in trace file.
    0 internal SQL statements in trace file.
    5 SQL statements in trace file.
    4 unique SQL statements in trace file.
    71 lines in trace file.
    91 elapsed seconds in trace file.
    Edited by: user13131431 on Oct 1, 2010 5:01 AM

  • Query based on date partition

    Hi,
    I am trying to output only a successful job during the past 24 hrs of each day. If there is job that has an outcome of a success and a failure within the last
    24 hrs for each day, I want to only output the successful one. If there are no success for the same job, I will output the last attempted failed job.
    Here are my columns:
    current output:
    JOB_ID     JOBDATE               GROUP     PATH          OUTCOME          FAILED     LEVEL     ASSET
    3400908     7/27/2012 10:01:18 AM     polA     target1          Success          0     incr     clone1
    3400907     7/27/2012 10:01:09 AM     polA     target1          Failed          0     incr     clone1
    3389180     7/23/2012 10:01:14 AM     polA     target1          Failed          1     incr     clone1
    3374713     7/23/2012 10:01:03 AM     polA     target1          Success          0     incr     clone1
    3374712     7/22/2012 11:24:32 AM     polA     target1          Success          0     Full     clone1
    3367074     7/22/2012 11:24:00 AM     polA     target1          Failed          1     Full     clone1
    3167074     7/21/2012 10:01:13 AM     polA     target1          Success          0     incr     clone1
    336074     7/21/2012 10:01:08 AM     polA     target1          Success          0     incr     clone1
    desired output:
    JOB_ID     JOBDATE               GROUP     PATH          OUTCOME          FAILED     LEVEL     ASSET
    3400908     7/27/2012 10:01:18 AM     polA     target1          Success          0     incr     clone1
    3374713     7/23/2012 10:01:03 AM     polA     target1          Success          0     incr     clone1
    3374712     7/22/2012 11:24:32 AM     polA     target1          Success          0     Full     clone1
    3167074     7/21/2012 10:01:13 AM     polA     target1          Success          0     incr     clone1
    Here is a code I am trying to use without success:
    select *
    from
       (selectjob_id, jobdate, group, path, outcome, Failed, level, asset,
              ROW_NUMBER() OVER(PARTITION BY group, path, asset ORDER BY jobdate desc) as rn
                   from job_table where jobdate between trunc(jobdate) and trunc(jobdate) -1 )
       where rn = 1
       order by jobdate desc;Thanks,
    -Abe

    Hi, Abe,
    You're on the right track, using ROW_NUMBER to assign numbers, and picking only #1 in the main query. The main thing you're missing is the PARTITION BY clause.
    You want to assign a #1 for each distinct combination of group_id, path, asset and calendar day , right?
    Then you need to PARTITION BY group_id, path, asset and calendar day . I think you realized that when you named this thread "Query Based *on date partition* ".
    The next thing is the analytic ORDER BY clause. To see which row in each partition gets assigned #1, you need to order the rows by outcome ('Success' first, then 'Failed'), and after that, by jobdate (latest jobdate first, which is DESCending order).
    If so, this is what you want:
    WITH     got_r_num     AS
         SELECT  j.*     -- or list columns wanted
         ,     ROW_NUMBER () OVER ( PARTITION BY  group_id     -- GROUP is not a good column name
                                   ,                    path
                             ,             asset
                             ,             TRUNC (jobdate)
                                   ORDER BY          CASE  outcome
                                                 WHEN  'Succcess'
                                         THEN  1
                                         ELSE  2
                                             END 
                             ,             jobdate     DESC
                           )      AS r_num
         FROM    job_table  j
         WHERE     outcome     IN ('Success', 'Failed')
    --     AND     ...     -- Any other filtering, if needed
    SELECT     *       -- or list all columns except r_num
    FROM     got_r_num
    WHERE     r_num     = 1
    ;If you'd care to post CREATE TABLE and INSERT statements for the sample data, then I could test it.
    It looks like you posted multiple copies of this thread.  I'll bet that's not your fault; this site can cause that.  Even though it's not your fault, please mark all the duplicate versions of this thread as "Answered" right away, and continue in this thread if necessary.
    Edited by: Frank Kulash on Jul 28, 2012 11:47 PM
    This site is flakier than I thought! I did see at least 3 copies of this same thread earlier, but I don't see them now.

Maybe you are looking for

  • How can we Use SAP BI in Crystal Xcelsius

    Hi, Can we do the Xcelsius Dash board reporting on the BW reports which give the output in the Microsoft Excel.  Because its getting the data from the Excel only.  So my question is can we do dash board reporting on the Bex reports.  Regards Sankar R

  • Workflow Activities not executing in Parallel

    Hi, I am using Oracle Workflow as a dependency management system to load a Data Warehouse. Workflow Activities are used to execute a custom PL/SQL wrapper that kick off Oracle Warehouse Builder (OWB) mappings that load target tables with source syste

  • Log file sync spike

    We have just deployed a 4-node RAC cluster on 10GR2. We force a log switch every 5 minutes to ensure our Dataguard standby site is relatively up to date, we use the ARCH to ship logs. We are running to a very fast HP XP 12000 with massive amounts of

  • Where do i find the release date for a PO

    Hi, I am writing a report and i need to find 1) "request date" for the release 2) "release date"(from the higher authority)  for PO I did look up in ekko and ekpo.. couldnt find it. ekko-frgzu gives the staus  but i need the actual date. Pls help Hri

  • Adobe forms Body pages in 8.0 version

    Hi All, I am using Adobe Life cycle designer 8.0 version, and i have some clarifications. 1. Is the body page concet no longer available in 8.0. 2. What is the difference between body page and Subform. 3. What is the limit of master pages we can have