Xml search

I have implemeted Xpath search in flash .the xml contains
more than 70000 lines(2 MB in size) and because of this the
searching is very slow, and also the flash player gives the warnng
message about the script making the flash player slowly. Is there
any way to make this warning message not to be displayed , or is
there any way to make the xml search faster

SELECT *
FROM your_table t
WHERE XMLExists(
        '/Project/Basics[Attribute=$str]'
        PASSING t.xmltype_col
              , 'sam' as "str"
;

Similar Messages

  • Xml search and replace for 'Session Variables' in column title view

    Hi Experts,
    I have around 10 reports where measure column titles are displayed based the session variable.
    Below is the syntax I have used in the column title
    @{biServer.variables['NQ_SESSION.VariableName']}
    Now I would like to replace the above syntax with some static text. To do this, I am trying to use the xml search and replace feature in the catalog manager.
    For some reason, catalog manager is unable to find the syntax in the xml file. I have tried using escape character also for the apostrophe by using &apos, but no luck.
    Any pointers on how to replace the text?
    Thanks

    Using Analysis get the xml conversion for @{biServer.variables['NQ_SESSION.VariableName']} from Advanced tab's xml code
    use this code to find in catalog manager, if you able to find then go for search and replace option.
    I think this should work for you.

  • How to fasten the XML searching compared to database

    Hi,
    i'm putting the whole scenario here:
    It will be so helpful if u can help me.
    -------------------the doubt----------------------------
    i'm having an xml in the following format
    <LOV>
    <RECORD NO="1">
    <FIELD NAME="EMPNO">E1001</EMPNO>
    <FIELD NAME="EMPNAME">MR. X</EMPNO>
    <FIELD NAME="TEAM">PRODUCT TEAM</EMPNO>
    </RECORD>
    <RECORD NO="2">
    <FIELD NAME="EMPNO">E1002</EMPNO>
    <FIELD NAME="EMPNAME">MR. Y</EMPNO>
    <FIELD NAME="TEAM">TECHNOLOGY TEAM</EMPNO>
    </RECORD>
    </LOV>
    like this there will be minimum 5000 records and what i need is to search this xml(using DOM) by specifying a condition like
    EMPNO=E1001
    or EMPNAME=MR.X or EMPNO=E1* etc etc.
    i did this with the help of NodeIterator.
    but the problem is :
    this is done to avoid database interaction.
    and this s taking 2-3 secs to query and once it is stored as an object it s taking .3 secs.
    but when i tried to query the same no and sort of records straight from a database it s taking only .1 sec everytime.
    Now my question is : Is it possible to use any other method in xml parsing so that i can make the xml quering much faster than database query.
    pls help if possible
    Ranjith.M

    this is not pure JAXP but a behind the scene hack: use the org.apache.xpath.CachedXPathAPI and run XPath queries on your DOM.
    simple sample:
    // getMyXpathAPI() returns a singleton CachedXPathAPI
    Node node = getMyXpathAPI().selectSingleNode(doc, xpath);

  • The google.xml search plugin won't speak English

    I have just updated Firefox 3.6.15 to version 4 running under Windows 7 SP1. Before I upgraded it I had edited google.xml to change all instances of http://www.google.com to http://www.google.co.uk. I also added the line <Param name="hl" value="en"/> to a list towards the bottom of the google.xml file
    In version 3.6.x I always got the search results in English when I put a query in the search bar (top, right hand of the screen) but now with Firefox 4 I get the results in the language of the country where I am staying. I am often in France, Belgium and Holland and don't speak Dutch or Flemish so how can I make Firefox produce the search results in English. Is there something in the "about:config" file that I need to alter?
    I have another computer that is running Windows XP with Firefox 3.6.15 and although it lives in France I can make it produce its search results from google.co.uk. Why won't Firefox 4 do the same?

    http://www.google.com/+/learnmore/hangouts/
    Try to download and install the plugin (button labeled with "available for your computer").
    I have OSX 10.8.5 and the latest version of Chrome (30.0.1599.101)

  • Xml search for specific node/attribute

    Hi,
    I load an xml in as3 and need to find and output (as an
    XMLList) a specific node with a specific attribute (example:
    <xs:element name="abcd"> ), or at least find out its path
    (after, I would know what to do to get the XMLList). I looked at
    the XPath classes for Actionscript but the documentation is very
    poor and I did not see any method doing this. Could someone help me
    please? If no method exists, how can I loop through all the xml and
    test each node to see if it is the proper node I am looking for?
    thanks so much in advance for your help
    Pierrot

    You could do it this way, using the descendant accessor:
    var xml:XML =
    <data xmlns:xs="
    http://www.w3.org/2001/XMLSchema">
    <xs:element name="abcd">
    <tagA>hjfhsldf</tagA>
    <tagB>dummy stuff</tagB>
    </xs:element>
    <xs:sequence>
    <xs:element name="dd">
    <tagA>words</tagA>
    <tagB>dummy stuff too</tagB>
    </xs:element>
    </xs:sequence>
    </data>;
    var xs:Namespace = xml.namespaceDeclarations()[0];
    var nodelist:XMLList = xml..xs::element.(@name=="dd");
    trace(nodelist)
    If you need generic code that accounts for no namespaces, you
    can use
    something like this:
    var xs:Namespace = xml.namespaceDeclarations()[0];
    var nodelist:XMLList =
    (xs == null || xs == undefined)
    ? xml..element.(@name=="dd");
    : xml..xs::element.(@name=="dd");
    trace(nodelist)

  • Keyword search over XML documents

    there are many open source native XML databases,and search engines that support XQuery and XPath and many of them also support full text search.
    such as:
    1- TPOX
    2- Timber
    3- DBXML
    4 - http://exist.sourceforge.net/kwic.html [http://exist.sourceforge.net/kwic.html]
    5- http://www.inf.uni-konstanz.de/dbis/basex/ [http://www.inf.uni-konstanz.de/dbis/basex/]
    6- http://xqengine.sourceforge.net/ [http://xqengine.sourceforge.net/]
    7- Lucene
    But, could you please tell me what is the alternative open source systems for the following closed systems (XRANK is a Ranked keyword search over XML documents on http://www.cs.cornell.edu/~cbotev/XRank.pdf ) and (XSeek is A Semantic XML Search Engine Using Keywords on http://xseek.asu.edu/xseekdemo.pdf )
    I posted the question on http://stackoverflow.com/questions/2921379/is-there-any-open-source-system-for-keyword-search-on-xml-documents and I have got good information , but I think some people on this forum may have more information.
    thanks.

    Well, there is a workaround to search in the xml. Open xml in FF, open the page source (Ctrl + U) and search in it.

  • Integration Engine Monitor with PI Payload Search (Tcode: ZMONI)

    Hi Team,
    Good day.
    I have been trying to search the internet on how to use the PI Payload Search (PIPS) functionality of the Integration Engine Monitor (Tcode: ZMONI) but so far I did not find one.
    Does anyone know how to use every functionality of the PI Payload Search? Is there a manual or a how-to document for this function?
    The PI Payload Search tab contains the following fields:
    Sender
         Idoc Number
         Idoc Message Type
    Message Version
         Message version
         Content To Be Searched
         Mime Type
         Payload Sequence Number
    Message Size Selection
         Message Bytes
    Content Search
         Namespace
         XML Element Name
         XML Search Value
    Output Format
         Output to ZIP
         Filename
         GUI Download Path
         HTTP_POST URL
         FTP Server
         FTP User
         FTP Pwd (scrambled)
         FTP Directory
    When executing Variant
         Change TVARV for dates
    I could send you an email if you need more information or screenshot. Thank you in advance
    KR,
    Carlo
    Edited by: Carlo Borja on Dec 23, 2011 5:20 AM

    Hi. Carlo
    Correct me if I wrong, this tx is customized , it's not standard.
    However , you can search using
    TREX . :
           http://help.sap.com/saphelp_banking60/helpdata/en/47/06b054c7750e8ae10000000a155369/content.htm
    WithOut TREX :
           Payload Searching without TREX
    Regards.
    Luis Ortiz

  • Building Oracle XML Application Book....

    Has anyone purchased the 'Building Oracle XML Applications' book and do they have any opinions on it? Useful?

    It it currently orderable, and is planned to ship by September 31st/October 1st, just in time for the Oracle OpenWorld conference.
    The full table of contents (which eventually should be put also up on the O'Reilly Site) is:
    Preface
    Audience for This Book
    Which Platform and Version?
    Structure of This Book
    Chapter Summaries
    About the Examples
    About the CD-ROM
    Conventions Used in this Book
    Comments and Questions
    Acknowledgements
    Part 1: XML Basics
    Chapter 1: Introduction to XML
    What Is XML?
    What Can I Do With XML?
    Why Should I Use It?
    What XML Technology Does Oracle Provide?
    Chapter 2: Working with XML
    Creating and Validating XML
    Modularizing XML
    Searching XML with XPath
    Part 2: Oracle XML Fundamentals
    Chapter 3: Combining XML and Oracle
    Hosting the XML FAQ System on Oracle
    Serving XML in Any Format
    Acquiring Web-Based XML Content
    Chapter 4: Using JDeveloper for XML Development
    Working with XML, XSQL, and JSP Files
    Working with Database Objects
    Using JDeveloper with Oracle XDK Components
    Chapter 5: Processing XML with PL/SQL
    Loading External XML Files
    Parsing XML
    Searching XML Documents with XPath
    Working with XML Messages
    Producing and Transforming XML Query Results
    Chapter 6: Processing XML with Java
    Introduction to Oracle8i JServer
    Parsing and Programmatically Constructing XML
    Searching XML Documents in Memory Using XPath
    Working with XML Messages
    Producing and Transforming XML Query Results
    Chapter 7: Transforming XML with XSLT
    XSLT Processing Mechanics
    Single-Template Stylesheets
    Understanding Input and Output Options
    Improving Flexibility with Multiple Templates
    Chapter 8: Publishing Data with XSQL Pages
    Introduction to XSQL Pages
    Transforming XSQL Page Results with XSLT
    Troubleshooting Your XSQL Pages
    Chapter 9: XSLT Beyond the Basics
    Using XSLT Variables
    The Talented Identity Transformation
    Grouping Repeating Data Using SQL
    Sorting and Grouping Repeating Data with XSLT
    Chapter 10: Generating Datagrams with PL/SQL
    Programmatically Generating XML Using PL/SQL
    Automatic XML Generation with DBXML
    Chapter 11: Generating Datagrams With Java
    Generating XML Using Java
    Serving XML Datagrams Over the Web
    Automatic XML from SQL Queries
    Chapter 12: Storing XML Datagrams
    Overview of XML Storage Approaches
    Loading Datagrams with the XML SQL Utility
    Storing Posted XML Using XSQL Servlet
    Inserting Datagrams Using Java
    Chapter 13: Searching XML with interMedia
    Why Use interMedia Text?
    What is interMedia Text?
    The interMedia Text Query Language
    Handling Heterogeneous Doctypes
    Handling Doctype Evolution
    Advanced interMedia Text
    Chapter 14: Advanced XML Loading Techniques
    Storing Datagrams in Multiple Tables
    Building an XMLLoader Utility
    Creating Insert Transformations Automatically
    Part 3: Oracle XML Applications
    Chapter 15: Using XSQL as a Publishing Framework
    Overview of All XSQL Pages Facilities
    Additional XML Delivery Options
    Chapter 16: Extending XSQL and XSLT with Java
    Developing Custom XSQL Actions
    Integrating Custom XML Sources
    XSLT Extension Functions
    Chapter 17: XSLT-Powered Portals and Applications
    XSLT-Powered Web Store
    Personalized News Portal
    Online Discussion Forum
    Part 4: Appendices
    Appendix 1: XML Helper Packages
    Installing the XML Helper Packages
    Source Code for the XML Helper Packages
    Appendix 2: Installing Oracle XSQL Servlet
    Installing
    Appendix 3: Conceptual Map to XML Family
    Appendix 4: Quick References

  • Intermedia/XML Support...PLEASE ORANET

    Is there someone out there who can provide some real world examples of performing this simple task....
    I have an XML document, I want to feed it into 8i and search by content using the tags...
    Remember my XML document has over 100 tags,
    do I have to sit their and do an ADD_FIELD_SECTION for every tag....If not, where is this documented...
    Thanks for helping us Dummies....

    What follows is the content of the aforementioned demo file.
    It sets up the tables, types, and object views for the XSQL Insurance Claim Demo (that you try try live on our OTN demo site at http://technet.oracle.com/tech/xml/demo/demo1.htm )
    The intermedia-related part starts at the line that reads: ctx_ddl.drop_preference()
    In this example, an insurance claim
    has a "DamageReport" which is an
    XML Document fragment. The intermedia
    stuff at the end shows how to
    setup an XML searching index on
    the <CAUSE> and <MOTIVE> tags in
    this "DamageReport" document fragment.
    Hope this helps.
    set scan off
    set echo on
    set termout on
    REM
    REM $Author: smuench $
    REM $Date: 1999/11/27 14:48:10 $
    REM $Source: C:\\cvsroot/xsql/src/demo/insclaim.sql,v $
    REM $Revision: 1.3 $
    REM
    drop synonym claim;
    drop table settlement_payments;
    drop view insurance_claim_view;
    drop table insurance_claim;
    drop view policy_view;
    drop table policy;
    drop view policyholder_view;
    drop table policyholder;
    drop type insurance_claim_t;
    drop type settlements_t;
    drop type payment;
    drop type policy_t;
    drop type policyholder_t;
    drop type address_t;
    create type address_t as object( Street varchar2(80), City Varchar2(80), State VARCHAR2(80),
    Zip NUMBER );
    create type policyholder_t as object( CustomerId number,
    FirstName varchar2(80),
    LastName varchar2(80),
    HomeAddress address_t);
    create type policy_t as object(
    policyID number,
    primaryinsured policyholder_t);
    create type payment as object(
    PayDate DATE,
    Amount NUMBER,
    Approver VARCHAR2(8));
    create type settlements_t as table of payment;
    create type insurance_claim_t as object (
    claimid number,
    filed date,
    claimpolicy policy_t,
    settlements settlements_t,
    damageReport varchar2(4000) /* XML */
    create table policyholder( CustomerId number,
    FirstName varchar2(80),
    LastName varchar2(80),
    HomeAddress address_t,
    constraint policyholder_pk primary key (customerid) );
    insert into policyholder values ( 1044, 'Paul','Astoria',
    ADDRESS_T('123 Cherry Lane','SF','CA','94132'));
    insert into policyholder values ( 1045, 'Martina','Boyle',
    ADDRESS_T('55 Belden Place','SF','CA','94102'));
    create or replace force view policyholder_view of policyholder_t
    with object OID (customerid)
    as select customerid, firstname, lastname, homeaddress
    from policyholder;
    create table policy(
    policyid number,
    primarycustomerid number,
    constraint policy_pk primary key (policyid),
    constraint customer_fk foreign key (primarycustomerid) references policyholder
    insert into policy values ( 8895, 1044 );
    insert into policy values ( 9054, 1045 );
    create or replace force view policy_view of policy_t
    with object OID (policyid)
    as select p.policyid,
    (SELECT value(phv)
    from policyholder_view phv
    WHERE phv.customerid = p.primarycustomerid) as primaryinsured
    from policy p;
    create table insurance_claim(
    claimid number,
    filed date,
    claimpolicy number,
    damageReport varchar2(4000) /* XML */,
    constraint insurance_claim_pk primary key (claimid),
    constraint policy_fk foreign key (claimpolicy) references policy
    insert into insurance_claim values (77804, '01-JAN-99',8895,
    'The insured''s <VEHICLE>car</VEHICLE> broke through the guard rail and '&#0124; &#0124;
    'plummeted into a ravine. The cause was determined to be <CAUSE>faulty '&#0124; &#0124;
    'brakes</CAUSE> Amazingly there were no casualties.');
    insert into insurance_claim values (12345, '11-MAR-98',8895,
    'Officer George Lumden clocked the insured going 98 miles per hour in a '&#0124; &#0124;
    '45 zone. He wrote up the offender for an <CAUSE>excess speed</CAUSE> '&#0124; &#0124;
    'violation. Insured claims damage was done before he exceeded the speed '&#0124; &#0124;
    'limit.');
    insert into insurance_claim values (90998, '18-JUN-97',9054,
    'San Francisco Fire Department arrived on scene at 9:08pm i n response '&#0124; &#0124;
    'to an anonymous call. Fire went to four alarms. Fire Chief Rodriguez '&#0124; &#0124;
    'immediately suspected <CAUSE>arson</CAUSE> based on clues left at the '&#0124; &#0124;
    'scene.');
    insert into insurance_claim values (11876, '20-APR-98',9054,
    '<SUSPECT>Colonel Mustard</SUSPECT> underwent DNA testing and was '&#0124; &#0124;
    'confirmed as the killer. The insured''s wife was '&#0124; &#0124;
    '<CAUSE>murdered</CAUSE> with a candlestick in the library.');
    create table settlement_payments(
    claimid number,
    PayDate DATE,
    Amount NUMBER,
    Approver VARCHAR2(8),
    constraint claim_fk foreign key (claimid) references insurance_claim
    insert into settlement_payments values (77804,'05-JAN-99',7600,'JCOX');
    insert into settlement_payments values (12345,'15-MAR-98',1800,'MFOX');
    insert into settlement_payments values (12345,'23-MAR-98',7800,'ULOWE');
    insert into settlement_payments values (90998,'01-JUL-97',1500,'JCOX');
    insert into settlement_payments values (11876,'05-JAN-99',7600,'JCOX');
    create or replace force view insurance_claim_view of insurance_claim_t
    with object OID (claimid)
    as select c.claimid,c.filed,
    (SELECT value(pv)
    from policy_view pv
    WHERE pv.policyid = c.claimpolicy),
    CAST(MULTISET(SELECT PAYMENT(sp.paydate,sp.amount,sp.approver) as Payment
    from settlement_payments sp
    WHERE sp.claimid = c.claimid) AS settlements_t),
    c.damagereport
    from insurance_claim c;
    commit;
    begin
    ctx_ddl.drop_preference('Demo');
    end;
    begin
    ctx_ddl.create_preference('Demo', 'basic_lexer');
    ctx_ddl.set_attribute ('Demo', 'index_themes', '0');
    ctx_ddl.set_attribute ('Demo', 'index_text', '1');
    ctx_ddl.create_section_group('demo_xml', 'xml_section_group');
    ctx_ddl.add_zone_section('demo_xml', 'CAUSE', 'CAUSE');
    ctx_ddl.add_zone_section('demo_xml', 'MOTIVE', 'MOTIVE');
    end;
    create index ctx_xml_i on insurance_claim(damagereport)
    indextype is ctxsys.context
    parameters('LEXER Demo SECTION GROUP demo_xml');
    create synonym claim for insurance_claim_view;
    null

  • XML Output with multiple categories

    I am driving myself insane trying to get this to output and I can't seem to find much on the internet that is helpful. Sometimes there is 1 category and sometimes there could be 2.
    For example:
    <Article>
    <Heading>Study: Ban on cell phone use hasn't reduced accident rate</Heading>
    <Date>01/02/2010</Date>
    <Contents>Content regarding cell phone use.</Contents>
    <Categories>
    <Category ID="438024898">General Auto News</Category>
    <Category ID="438022448">Electronics</Category>
    </Categories>
    </Article>
    I set myitems with the xml search and can manage to output everything below perfectly, except for the multiple categories.
    <cfloop from="1" to="#arrayLen(myItems)#" index="i">
    #myItems[i].Heading.xmltext#
    #myItems[i].Categories.Category.xmltext#        this outputs only the first one, but I can not seem to get the second.
    </cfloop>
    Thanks for any help in advance!!!!

    <cfloop from="1" to="#arrayLen(myItems[i].Categories.Category#" index="c"
        #myItems[i].Categories.Category[c].xmltext#
    </cfloop>
    OR
    #myItems[i].Categories.Category[1].xmltext#
    #myItems[i].Categories.Category[2].xmltext#
    Category is just a nested array just like your myItems was.
    Or you could do another xmlSearch if you prefer.

  • XML Huge database files, NEED HELP !!!

    Hello to the community.
    We need to store about ONE MILLION XML FILES inside the database.
    BUT we need to use all functionality of XML Structure to look for
    information inside these files (CONTAINS).
    My question is:
    What is the best way to store them:
    like XML files inside CLOB ?
    or fragment the files inside tables ?
    Using ConText Option ?
    Using CONTAINS functions ?
    Is ConText Option supports CONTAINS function ?!?
    We have many queries with text searching...
    What is the best way to store this so we have best velocity to
    acces to the info ?
    Thanks to answer soon
    MasterPh
    null

    Let me try and answer your question. First the CONTAINS
    operator in Intermedia Text (formerly Context) will allow you to
    search for data between tags of an XML document stored as a
    CLOB. Whether you should distribute your XML documents across
    tables is largely a function of how you want the data searched
    retrieved. Currently the XML search function operates within a
    column and thus if you want the entire doc back it would be best
    to store it as a whole. Once iFS is released you will be able
    to distribute the doc across tables and return it as a whole or
    in parts.
    Chack out http://www.oracle.com/database/options/ifs.htm and
    http://www.oracle.com/database/options/intermedia.htm for more
    details.
    Oracle XML Team
    http://technet.oracle.com
    Oracle Technology Network
    Philippe Thomassigny (guest) wrote:
    : Hello to the community.
    : We need to store about ONE MILLION XML FILES inside the
    database.
    : BUT we need to use all functionality of XML Structure to look
    for
    : information inside these files (CONTAINS).
    : My question is:
    : What is the best way to store them:
    : like XML files inside CLOB ?
    : or fragment the files inside tables ?
    : Using ConText Option ?
    : Using CONTAINS functions ?
    : Is ConText Option supports CONTAINS function ?!?
    : We have many queries with text searching...
    : What is the best way to store this so we have best velocity to
    : acces to the info ?
    : Thanks to answer soon
    : MasterPh
    null

  • Need help in XML data processing

    Hi All,
    I have to process a stored procedure's input parameter which comes as a string in the XML format.
    Ex:
    <Search>
    <Row1>
    <Table1>Tab1</Table1>
    <Column1>col1</Column1>
    <Operator1>op1</Operator1>
    <Value1>val1</Value1>
    </Row1>
    <Row2>
    <Table2>Tab2</Table2>
    <Column2>col2</Column2>
    <Operator2>op2</Operator2>
    <Value2>val2</Value2>
    </Row2>
    </search>
    I should process the above parameter and build a select query from each row.
    Ex: select * from Tab1 where col1 op1 val1;
    How can i achieve this?
    i am using oracle 11g version.
    Thanks in advance to all.

    Your xml is not "well-formed" as every tag has a separate name (the numbering part in Row1, Row2 etc.), i would expect it as
    <Search>
      <Row>
        <Table>Tab1</Table>
        <Column>col1</Column>
        <Operator>op1</Operator>
        <Value>val1</Value>
      </Row>
      <Row>
        <Table>Tab2</Table>
        <Column>col2</Column>
        <Operator>op2</Operator>
        <Value>val2</Value>
      </Row>
    </Search>Anyway, this would do what you want:
    WITH DATA AS (SELECT XMLTYPE('<Search>
                                  <Row1>
                                  <Table1>Tab1</Table1>
                                  <Column1>col1</Column1>
                                  <Operator1>op1</Operator1>
                                  <Value1>val1</Value1>
                                  </Row1>
                                  <Row2>
                                  <Table2>Tab2</Table2>
                                  <Column2>col2</Column2>
                                  <Operator2>op2</Operator2>
                                  <Value2>val2</Value2>
                                  </Row2>
                                  </Search>') xml
                    FROM DUAL
    SELECT 'SELECT * FROM ' || TAB || ' WHERE ' ||COL || ' ' || OPER || ' ' || VALUE
      FROM (SELECT EXTRACTVALUE(xml, '/Search/Row' || LEVEL || '/Table' || LEVEL) TAB,
                   EXTRACTVALUE(xml, '/Search/Row' || LEVEL || '/Column' || LEVEL) COL,
                   EXTRACTVALUE(xml, '/Search/Row' || LEVEL || '/Operator' || LEVEL) OPER,
                   EXTRACTVALUE(xml, '/Search/Row' || LEVEL || '/Value' || LEVEL) VALUE
              FROM DATA
              CONNECT BY LEVEL<100
    WHERE TAB IS NOT NULL

  • No need to index XML Tags

    Hi All:
    I do not want XML tags to be indexed. Any ideas are apreciated.
    Thanks
    Naghmeh

    Hi,
    do You read this section:
    8.3 XML Section Searching with Oracle Text
    Like HTML documents, XML documents have tagged text which you can use to define blocks of text for section searching. The contents of a section can be searched on with the WITHIN or INPATH operators.
    For XML searching, you can do the following:
    Automatic sectioning
    Attribute searching
    Document type sensitive sections
    Path section searching
    As I understand, all You need - customize section group for Your text index, heh?
    WBR, Yuri

  • Searching for tag names

    I have a requirement to perform intermedia searches of xml documents based on tag names. I know it is possible to search for content within tags, but can a search be done on just the tag names themselves?
    If so, what would the syntax look like?
    Thanks.

    There are new features for XML searching in 9i. Please take a look at them: http://technet.oracle.com/products/text/x/Tech_Overviews/text_901.html#xml

  • Renaming Column Names in a single shot in Requests

    Hi All,
    We are having one issue while trying to rename the column in the requests.
    Requirement:
    We are having two presentation table "Fact Summary" and "Countries Dimension". Both of these tables contain one column "Country Description".
    Presently in all the reports we have developed till now, we used "Fact Summary"."Country Description".
    Now the users want us to replace "Fact Summary"."Country Description" with "Countries Dimension"."Country Description" and delete the "Country Description" from "Fact Summary" table.
    Approach we followed:
    Opened the Catalog Manager in Offline mode and used the XML Search and Replace option.
    With this option we are able to replace column names that are selected in a request but not those just used as filters(is prompted).
    Example:
    Suppose we have one request with "States Dimension"."State" seleted and "Fact Summary"."Country Description" as filter, we are able to not able to replace "Fact Summary"."Country Description" with "Countries Dimension"."Country Description"
    Can anyone please help me...Is there any alternative solution for this?
    Thanks in Advance.....

    Nope, I don't have a solution for this. You must never model descriptive columns in a fact table. Even when you have descriptive columns or textual content in one of your fact table columns, you should model them as part of a logical dimension table. Let this be a good lesson.
    Regards,
    Stijn

Maybe you are looking for

  • RAM on a macbook pro 2012

    I have been looking at youtube videos regarding changing the RAM on my macbook pro. Is there a big difference from 4GB of RAM to 8GB ? My macbook is still very new and under full warrenty both with apple and the store where it was bought. If i was to

  • How to use audit command to track the old and new values by any DML?

    Hi, I want to track all the changes done by any DML. I also want to capture who did it, when it was done and where it was done. Or is it possible to capture the user realted details in CDC feature of Oracle 10g? Which will be the best possible soluti

  • How to add custom field to the task via CSOM?

    Hello! I'm trying to add custom fields to my programmatically created task in project 2013. Tasks are created. Then I get them and load custom fields by: DraftProject projCheckedOut = tstProj.CheckOut(); projContext.Load(projCheckedOut.Tasks); projCo

  • Remounting 'No Access" external drive.

    Hi All, Ok I did a silly thing fooling around with an external drive trying to make it more secure. I selected the drive and went 'Get Info' and changed the tab to 'No Access'. I assumed whenever I clicked on the drive it would ask me for my admin pa

  • Lightroom 5.3 - Export not applying changes to all file formats

    Using Lightroom 5.3 with Camera Raw 8.3 on Mac OS X Mavericks 10.9.2 Camera is a Canon EOS 70D, working with Raw files. Just noticed that when applying a range of changes to an image - Tone / Presence / Noise / Crop / Sharpening (and others) When exp