UPPER Indexes cause select ERROR!

I downloaded Oracle 10g and installed it on a windows 2003 server. When I created UPPER indexes on a table, and the table has many rows, SELECT statement failed.
for example:
DROP TABLE TestTab;
CREATE     TABLE     TestTab(
     id          NUMBER(9)     DEFAULT 1 NULL,
     name          VARCHAR2(32)     NULL,
     address          VARCHAR2(64)     NULL,
     PRIMARY     KEY     (id)
DROP INDEX TestTab_01;
CREATE     INDEX     TestTab_01 ON TestTab(UPPER(name));
DROP INDEX TestTab_02;
CREATE     INDEX     TestTab_02 ON TestTab(UPPER(address));
create or replace procedure ADDDATA
IS
lCount     NUMBER;
BEGIN
lCount := 1;
LOOP
INSERT INTO TESTTAB VALUES(lCount, TO_CHAR(lCount, '00000'), TO_CHAR(lCount, '00000'));
lCount := lCount + 1;
IF lCount >= 80000 THEN
EXIT;
END IF;
END LOOP;
COMMIT;
EXCEPTION
WHEN OTHERS THEN
ROLLBACK;
RAISE;
END;
EXEC ADDDATA;
SELECT COUNT(*) FROM TestTab;
SELECT id FROM TestTab WHERE (UPPER(name) = ' 00100' OR UPPER(name) = ' 00101' OR UPPER(name) = ' 00102'
OR UPPER(address) = ' 00105' OR UPPER(address) = ' 00106') ORDER BY id;
ID
100
101
102
SELECT id FROM TestTab WHERE (UPPER(address) = ' 00105' OR UPPER(address) = ' 00106' OR UPPER(name) = ' 00100' OR UPPER(name) = ' 00101' OR UPPER(name) = ' 00102') ORDER BY id;
ID
105
106
It looks like that the first index could be used and the second index couldn't be used and indexes caused select errors.

indexes caused select errors. Which errors ? I did exactly what you posted, and these are the results :
TEST@db102 SQL> SELECT id FROM TestTab WHERE (UPPER(name) = ' 00100' OR UPPER(name) = ' 00101' OR UPPER(name) = ' 00102'
OR UPPER(address) = ' 00105' OR UPPER(address) = ' 00106') ORDER BY id;  2
             ID
            100
            101
            102
            105
            106
TEST@db102 SQL> SELECT id FROM TestTab WHERE (UPPER(address) = ' 00105' OR UPPER(address) = ' 00106' OR UPPER(name) = ' 00100'
OR UPPER(name) = ' 00101' OR UPPER(name) = ' 00102') ORDER BY id;
             ID
            100
            101
            102
            105
            106
TEST@db102 SQL> select count(*) from testtab;
       COUNT(*)
          79999
TEST@db102 SQL>                                                                                    

Similar Messages

  • Spotlight indexing causing repeated error in console

    Hi,
    I just recently upgraded my mac to 10.6.8 from 10.5.8.  Everything is working fine, except for Spotlight.  I know that upon a new upgrade Spotlight will take a while to index the computer, but it has been hours and in console I am getting two repeated messages.  The first one appears every minute or so:
    Dec  5 15:45:58 marc-cutillos-macbook mds[43]: (/.Spotlight-V100/Store-V1/Stores/164ED999-5DAD-430E-8FD9-79661D539F03)(Error) IndexSDB in si_writeBackDBO:Error 2 storing dbo(c973f5,430,75,4d02111cfd3ea,0,65089c,30)
    Dec  5 15:46:22 marc-cutillos-macbook mds[43]: (/.Spotlight-V100/Store-V1/Stores/164ED999-5DAD-430E-8FD9-79661D539F03)(Error) IndexSDB in si_writeBackDBO:Error 2 storing dbo(c973f5,430,75,4d0211343a689,0,65089e,30)
    I have literally hundreds of these messages with the only thing changing is the final numbers before the "30"
    The other message I keep getting every half hour or so is the following.  I am listing two of these such messages:
    Dec  5 13:46:29 marc-cutillos-macbook Safari[283]: Periodic CFURLCache Insert stats (iters: 412) - Tx time:0.005208, # of Inserts: 1, # of bytes written: 11474, Did shrink: NO, Size of cache-file: 8409088, Num of Failures: 0
    Dec  5 15:12:14 marc-cutillos-macbook Safari[719]: Periodic CFURLCache Insert stats (iters: 360) - Tx time:0.005909, # of Inserts: 1, # of bytes written: 86046, Did shrink: NO, Size of cache-file: 29925376, Num of Failures: 1
    Lastly, I am getting this error a few times also:
    Dec  5 15:18:21 marc-cutillos-macbook mdworker[750]: (Error) SyncInfo: Catalog changed during searchfs too many times -- falling back to fsw search /
    I have very few 3rd party apps.  I had McAfee but deleted it (although there seems to be some remnants as .plist files) Can anyone let me know of some advice?  I would just force quit the indexng through terminal, but I'm very curious what these constant error messages are.

    BTW, I went off some terminal commands that I saw in another discussion thread by Linc Davis:
    https://discussions.apple.com/thread/3185946?start=0&tstart=0
    I typed in the commands and this was my result:
    Last login: Wed Dec  5 14:33:34 on console
    marc-cutillos-macbook:~ yankee119$ kextstat -kl | awk ' !/apple/ { print $6 } '
    marc-cutillos-macbook:~ yankee119$ sudo launchctl list | sed 1d | awk ' !/0x|apple|edu\.|org\./ { print $3 } '
    Password:
    com.vix.cron
    com.adobe.versioncueCS3
    marc-cutillos-macbook:~ yankee119$ launchctl list | sed 1d | awk ' !/0x|apple|edu\.|org\./ { print $3 } '
    com.adobe.ARM.ad895013aeb33ea6e968d9fdc06c0eb42c7c2a5229d98d64ad002716
    com.adobe.ARM.925793fb327152fd34795896fa1fb9ffa268b2a852256fe56609efa3
    marc-cutillos-macbook:~ yankee119$ ls -1 /Library/{InputManagers,StartupItems}
    ls: /Library/InputManagers: No such file or directory
    /Library/StartupItems:
    cma
    marc-cutillos-macbook:~ yankee119$

  • A view, function and TO_DATE causing an error.

    I have the following statement which calls a view, VW_DIST_RPT_WORK_LIST which in turn calls a function which returns either 'Null' or a date string e.g. '07 Oct 2003' as a VARCHAR2 (alias PROJECTED_DELIVERY_DATE).
    Statement:
    SELECT CUSTOMER_NAME, PROTOCOL_REFERENCE, SHIPPING_REFERENCE, CUSTOMER_REFERENCE, COUNTRY, PROJECTED_DELIVERY_DATE, STATUS, NOTES,
    TO_DATE(PROJECTED_DELIVERY_DATE)
    FROM VW_DIST_RPT_WORK_LIST
    WHERE EXPECTED_DESP_DT IS NOT NULL
    AND UPPER(PROJECTED_DELIVERY_DATE) NOT LIKE('NULL%')
    AND EXPECTED_DESP_DT <= TO_DATE('07/10/2003', 'DD/MM/YYYY')
    AND TO_DATE(PROJECTED_DELIVERY_DATE) <= TO_DATE('31/12/2003', 'DD/MM/YYYY') --< Problem here
    I need to be able to specify a date filter on the PROJECTED_DELIVERY_DATE field and hence used the TO_DATE(PROJECTED_DELIVERY_DATE) <= TO_DATE('31/12/2003', 'DD/MM/YYYY') but this is generating an ORA-01858: a non-numeric character was found where a numeric character was expected.
    I think the problem lies with the fact that this field can contain 'Null' which cannot be converted to a date using TO_DATE. I've tried adding a NOT LIKE ('NULL%') statement to catch any nulls which may be creeping in bu this doesn't solve the problem.
    I've added TO_DATE(PROJECTED_DELIVERY_DATE) to the select above to determine if the nulls are being caught and if the TO_DATE in performing the conversion correctly which it is on both counts.
    Any ideas anyone ?

    The answer provided above by Monika will work for this situation. However, you should seriously think whether you should be using a string for date datatype. Ideally, you should rewrite the function that returns PROJECTED_DELIVERY_DATE and change the return type to DATE. The least you should do is to return NULL (instead of the string 'NULL') from the function. Oracle handles nulls perfectly, there is no reason you should write code to handle nulls;
    One more thing. Looking at the type of error you are receiving, it seems that you are using rule based optimizer. Why do I think so? Because, in rule based optimizer, the conditions are evaluated in a specific order (viz, bottoms-up for AND clauses). To show this, look at the following simple demonstration. I did this in Oracle 8.1.6 (also in 9.2.0.4.0 on Windows).
    -- Check the database version
    select * from v$version;
    BANNER
    Oracle8i Enterprise Edition Release 8.1.6.1.0 - Production
    PL/SQL Release 8.1.6.1.0 - Production
    CORE 8.1.6.0.0 Production
    TNS for Solaris: Version 8.1.6.0.0 - Production
    NLSRTL Version 3.4.0.0.0 - Production
    -- Create the test table
    create table test (a number(2));
    insert into test(a) values (0);
    insert into test(a) values (1);
    insert into test(a) values (2);
    insert into test(a) values (3);
    insert into test(a) values (4);
    insert into test(a) values (5);
    insert into test(a) values (6);
    insert into test(a) values (7);
    commit;
    -- See that I have not analyzed the table. This will make use of RULE based optimizer
    select * from test
    where a > 0
    and 1/a < .25;
    and 1/a < .25
    ERROR at line 3:
    ORA-01476: divisor is equal to zero
    -- Look at the query clause. Even though I specifically asked for records where a is positive
    -- the evaluation path of rule based optimizer started at the bottom and as it evaluated the
    -- first row with a=0, and caused an error.
    -- Now look at the query below. I just re-arranged the conditions so that a > 0 is evaluated
    -- first. As a result, the row with a=0 is ignored and the query executes without any problem.
    select * from test
    where 1/a < .25
    and a > 0;
    A
    5
    6
    7
    -- Now I analyze the table to create statistics. This will make the query use the
    -- cost based optimizer (since optimizer goal is set to CHOOSE)
    analyze table test compute statistics;
    Table analyzed.
    -- Now I issue the erring query. See it executes without any problem. This indicates that
    -- the cost based optimizer was intelligent enough to evaluate the proper path instead of
    -- looking only at the syntax.
    select * from test
    where a > 0
    and 1/a < .25;
    A
    5
    6
    7
    Does the above example seem familiar to your case? Even though you had the AND UPPER(PROJECTED_DELIVERY_DATE) NOT LIKE('NULL%') in your query, a record with PROJECTED_DELIVERY_DATE = 'NULL' was evaluated first and that caused the error.
    Summary
    1. Use dates for dates and strings for strings
    2. Use cost based optimizer
    Thanks
    Suman

  • Field Selection error for movement type and G/L account

    I am currently experiencing a field selection error between movement type 601 and G/L account 7140000.  The problem field is 'Segment'.  This field is set to required for the G/L account, but it is hidden for the movement type 601. This inconsistency causes an error when posting the goods movement. According to business requirement the field must be required for the G/L account, therefore we must make this field optional for the movement type.
    However, in configuration the field segment does not appear for the movement type 601. Therefore it can not be changed to optional.
    Does anyone know a workaround other than making this field optional for the G/L account because the business requirement is to have this field as required?????
    Many Thanks

    Hi,
    On the Error message detail, system will guide you to the Configuration details for Field settings for Movement type & Account, please get in touch with your FI consultant, to make the Field selection for the account similr to that of your movement type, this is a very common issue.
    Regards
    Chandra Shekhar

  • How to get the index of selected values in SelectManyChoice...

    How to get the index of selected values in SelectManyChoice... the value which i get is coming when i submit the value second time

    By using the given code i get the value of the selected indices, but problem here is i get the value when it get submits at the second time... First time the length of that int array is 0.
    Second time it shows the value two times (i.e) First time submitted value and the second time submitted value. After that it works fine.. I have problem while clicking first time only..
    The Following error also raises.. One multiselect is dependent on other multiselect.
    DF_FACES-60098:Faces lifecycle receives unhandled exceptions in phase PROCESS_VALIDATIONS 3
    java.lang.ArrayIndexOutOfBoundsException: 6
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlListBinding.findObjectFromIndex(FacesCtrlListBinding.java:334)
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlListBinding.getInputValue(FacesCtrlListBinding.java:199)
         at oracle.jbo.uicli.binding.JUCtrlValueBinding.internalGet(JUCtrlValueBinding.java:2416)
         at oracle.jbo.uicli.binding.JUCtrlListBinding.internalGet(JUCtrlListBinding.java:3717)
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlListBinding.internalGet(FacesCtrlListBinding.java:500)
         at oracle.adf.model.binding.DCControlBinding.get(DCControlBinding.java:749)
         at javax.el.MapELResolver.getValue(MapELResolver.java:164)
         at com.sun.faces.el.DemuxCompositeELResolver._getValue(DemuxCompositeELResolver.java:176)
         at com.sun.faces.el.DemuxCompositeELResolver.getValue(DemuxCompositeELResolver.java:203)
         at com.sun.el.parser.AstValue.getValue(Unknown Source)
         at com.sun.el.ValueExpressionImpl.getValue(Unknown Source)

  • OBJECTS_OBJREF_NOT_ASSIGNED - E-Recruitment Candidate Selection Error

    HI guys
    Im getting this error when i access the page Candidate selection to assign to requisition in E-Recruitment.
    OBJECTS_OBJREF_NOT_ASSIGNED
    You attempted to use a 'NULL' object reference (points to 'nothing')
    access a component (variable: " ").
    An object reference must point to an object (an instance of a class)
    before it can be used to access components.
    Either the reference was never set or it was set to 'NULL' using the
    CLEAR statement.
    Can any one tell me which entry im missing and in what table??
    Thanks
    Saad

    Hi Bala
    Thanks for the guidance but the error i mentioned is actually taken by using *T.Code ST22.*
    I am stating the error again. Plz plz plz help me out if u ever came up with such error. Will be grateful to you.
    Runtime Errors         OBJECTS_OBJREF_NOT_ASSIGNED
    Short text
        Access via 'NULL' object reference not possible.
    What happened?
        Error in the ABAP Application Program
        The current ABAP program "CL_HRRCF_SEARCH_CRITERIA_ENT_VCP" had to be
         terminated because it has
        come across a statement that unfortunately cannot be executed.
    What can you do?
        Note down which actions and inputs caused the error.
        To process the problem further, contact you SAP system
        administrator.
        Using Transaction ST22 for ABAP Dump Analysis, you can look
        at and manage termination messages, and you can also
        keep them for a long time.
    Error analysis
        You attempted to use a 'NULL' object reference (points to 'nothing')
        access a component (variable: " ").
        An object reference must point to an object (an instance of a class)
        before it can be used to access components.
    Either the reference was never set or it was set to 'NULL' using the
    CLEAR statement.
    Regards,
    Saad

  • Query Causes ASP Error

    This query works great within MS Access itself but causes and
    error when used in an ASP application ...
    DateAdd("m",-2,EndDate()) >= Date()
    Someone suggested there is a problem with the quote marks in
    ASP. Would appreciate any help to resolve this. The original thread
    is below. Thanks.
    Newsgroup User has posted a message entitled Re: EndDate.
    Message Posted on: Monday January 22,2007 05:01:27 PM
    You use a DateAdd function to get this, something like
    DateAdd("m",-2,EndDate()) >= Date()
    Paul Whitham
    Certified Dreamweaver MX2004 Professional
    Adobe Community Expert - Dreamweaver
    Valleybiz Internet Design
    www.valleybiz.net
    "Tiggerick" <[email protected]> wrote in
    message
    news:ep2nej$oar$[email protected]..
    > Our current function is ... EndDate() >= Date() ...
    which is used to
    > screen out
    > any results prior to today's date.
    > We would like to modify this so that instead of today's
    date we would use
    > the
    > date 2 months prior to today's date, so that, for
    example the EndDate() on
    > 1/22/07 would be 11/22/06.
    > Would appreciate help on the format for this.
    > Thanks in advance!
    > Rick
    >
    You can view the message at
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?catid=189&threadid=1235135&fo rumid=12.
    Text
    quote marks
    Text

    The quotes around m are the problem here. Double them up to
    send as-is to
    Access (""m"" instead of "m").
    "Tiggerick" <[email protected]> wrote in
    message
    news:er00oi$duu$[email protected]..
    > Here is the complete SQL statement that is causing a
    problem. Dreamweaver
    > is
    > showing the m inside the quotes in black if that means
    anything ...
    >
    > Recordset1.Source = "SELECT * FROM Events WHERE
    EventType = '" +
    > Replace(Recordset1__MMColParam, "'", "''") + "' AND
    EndDate >=
    > DateAdd("m", -2,
    > Date()) ORDER BY StartDate ASC"
    >

  • Error: Error: XML Indexer: Fatal Parse error in document

    Hi,
    I was trying to add a document into using the following code:
    txn = myManager.createTransaction();               
    XmlDocumentConfig docConfig = new XmlDocumentConfig();
    docConfig.setGenerateName(true);
    myContainer.putDocument(txn, docName, content, docConfig);
    //commit the Transaction
    txn.commit();
    the content is juz a string formatted to the UTF-8 format. When I run the program, an error occurs:
    com.sleepycat.dbxml.XmlException: Error: Error: XML Indexer: Fatal Parse error in document at line 2, char 74. Parser message: An exception occurred! Type:NetAccessorException, Message:The host/address 'www.posc.org' could not be resolved (Document: docName_287), errcode = INDEXER_PARSER_ERROR
         at com.sleepycat.dbxml.dbxml_javaJNI.XmlContainer_putDocument__SWIG_3(Native Method)
         at com.sleepycat.dbxml.XmlContainer.putDocument(XmlContainer.java:736)
         at com.sleepycat.dbxml.XmlContainer.putDocument(XmlContainer.java:232)
         at com.sleepycat.dbxml.XmlContainer.putDocument(XmlContainer.java:218)
         at ag.SaveMessageinDB.addXMLDocument(SaveMessageinDB.java:157)
         at ag.SaveMessageinDB.saveMessage(SaveMessageinDB.java:58)
         at connector.TextListener.onMessage(TextListener.java:92)
         at com.tibco.tibjms.TibjmsSession._submit(TibjmsSession.java:2775)Reading message: <?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <!DOCTYPE BLMNOS SYSTEM "http://www.posc.org/ebiz/blmSamples/blmnos.dtd"> at com.tibco.tibjms.TibjmsSession._dispatchAsyncMessage(TibjmsSession.java:1413)
    at com.tibco.tibjms.TibjmsSession$Dispatcher.run(TibjmsSession.java:2491)
    The XML Message that causes this problem is this:
    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <!DOCTYPE BLM31603 SYSTEM "http://www.posc.org/ebiz/blmSamples/blm3160-3.dtd">
    <BLM31603>
    <DocumentInformation>
    <documentName namingSystem="POSC pilot">Sample 2</documentName>
    <Version>
    <dtdVersion>1.0 beta</dtdVersion>
    <formVersion>BLM 3160-3 August 1999</formVersion>
    </Version>
    <reportClass>Application for Permit to Drill</reportClass>
    <filingDate>
    <year>1997</year><month>07</month><day>14</day>
    </filingDate>
    <Security>
    <securityClass>confidential</securityClass></Security>
    <BusinessAssociate>
    <Contact>
    <name>Joseph Josephson</name>
    <Address>
    <street>5847 Rushmore Dr.</street>
    <cityName>Rapid City</cityName>
    <stateName namingSystem="USCode">SD</stateName>
    <postalCode namingSystem="USZipCode">57709</postalCode>
    </Address>
    <phoneNumber>266-181-9229</phoneNumber>
    <associatedWith>Black Hills Exploration</associatedWith>
    </Contact>
    <AuthorizedPerson>
    <name>Joseph Josephson</name>
    <title>Vice President of Drilling Operations</title>
    </AuthorizedPerson>
    </BusinessAssociate>
    </DocumentInformation>
    <FieldInformation>
    <regulatoryFieldName>wildcat</regulatoryFieldName>
    <SpacingOrder>
    <spacingUnitSize unit="acre">40</spacingUnitSize>
    </SpacingOrder>
    <ContractDesignation>
    <leaseName>Dog Draw</leaseName>
    <leaseNumber>156-5799-80-89</leaseNumber>
    <unitAgreementName>WY72817</unitAgreementName>
    <leaseSize unit="acre">629.97</leaseSize>
    <indianName type="allottee">James Hickson</indianName>
    </ContractDesignation>
    </FieldInformation>
    <WellInformation>
    <apiWellNumber>510162561100</apiWellNumber>
    <wellID>Dog Draw #1</wellID>
    <wellProduct type="oil"/>
    <wellActivity type="drill"/>
    <wellCompletionType type="single"/>
    <Operator>
    <operatorName>Black Hills Exploration</operatorName>
    <Address>
    <street>5847 Rushmore Dr.</street>
    <cityName>Rapid City</cityName>
    <stateName namingSystem="USCode">SD</stateName>
    <postalCode namingSystem="USZipCode">57709</postalCode>
    </Address>
    <phoneNumber>266-181-9229</phoneNumber>
    <bondCollateralNumber>BF39002976</bondCollateralNumber>
    </Operator>
    <WellLocation>
    <LegalDescription>
    <townshipNumber direction="N">52</townshipNumber>
    <rangeNumber direction="W">68</rangeNumber>
    <sectionNumber>18</sectionNumber>
    <quarterSectionIdentifier>SE 1/4, SW 1/4</quarterSectionIdentifier>
    <locationDistance from="FSL" unit="ft">843</locationDistance>
    <locationDistance from="FWL" unit="ft">1664</locationDistance>
    </LegalDescription>
    <Geopolitical>
    <stateName>WY</stateName>
    <countyName>Crook</countyName>
    </Geopolitical>
    <RelativeFrom from="Town">
    Approximately 15 mi NW of Moorcroft, WY </RelativeFrom>
    </WellLocation>
    <wellElevationHeight referenceCode="GL">4306</wellElevationHeight>
    <WellboreInformation>
    <proposedTotalMeasuredDepth unit="ft">8500</proposedTotalMeasuredDepth>
    <proposedTotalTrueVerticalDepth unit="ft">8450</proposedTotalTrueVerticalDepth>
    <BottomholeLocation>
    <LegalDescription>
    <townshipNumber direction="N">52</townshipNumber>
    <rangeNumber direction="W">68</rangeNumber>
    <sectionNumber>18</sectionNumber>
    <quarterSectionIdentifier>SE 1/4, SW 1/4</quarterSectionIdentifier>
    <locationDistance from="FSL" unit="ft">843</locationDistance>
    <locationDistance from="FWL" unit="ft">1664</locationDistance>
    </LegalDescription>
    <Geopolitical>
    <stateName>WY</stateName>
    <countyName>Crook</countyName>
    </Geopolitical>
    <RelativeFrom from="LeaseLine">
    843 ft from nearest property or lease line</RelativeFrom>
    </BottomholeLocation>
    <operationStartDate>
    <year>1997</year><month>8</month><day>8</day></operationStartDate>
    <estimatedDuration unit="days">37</estimatedDuration>
    <drillingTool type="rotary"/>
    </WellboreInformation>
    </WellInformation>
    <ProposedCasingProgram>
    <CasingInformation type="conductor">
    <drillBitDiameter>12 5/8</drillBitDiameter>
    <tubularOutsideDiameter>9.5</tubularOutsideDiameter>
    <tubularWeight unit="lb/ft">52</tubularWeight>
    <tubularGradeCode>C-22</tubularGradeCode>
    <baseMeasuredDepth unit="ft">3477</baseMeasuredDepth>
    <Cement>
    <cementQuantity unit="sacks" type="Eugene">97</cementQuantity>
    <cementSlurryVolume unit="ft3">1287</cementSlurryVolume>
    <cementSlurryYield unit="ft3/sack">13.1</cementSlurryYield>
    <additive>Rock Salt</additive>
    <additive>carcinogenic biophages</additive>
    <topMeasuredDepth unit="ft">87</topMeasuredDepth>
    </Cement>
    </CasingInformation>
    <CasingInformation type="intermediate">
    <drillBitDiameter>8 7/8</drillBitDiameter>
    <tubularOutsideDiameter>8.125</tubularOutsideDiameter>
    <tubularWeight unit="lb/ft">43</tubularWeight>
    <tubularGradeCode>D-220</tubularGradeCode>
    <baseMeasuredDepth unit="ft">9112</baseMeasuredDepth>
    <Cement>
    <cementQuantity unit="sacks" type="Portland">82</cementQuantity>
    <cementSlurryVolume unit="ft3">1003</cementSlurryVolume>
    <cementSlurryYield unit="ft3/sack">13.1</cementSlurryYield>
    <stageCementerMeasuredDepth unit="ft">6633</stageCementerMeasuredDepth>
    </Cement>
    <Cement>
    <cementQuantity unit="sacks" type="Seattle">116</cementQuantity>
    <cementSlurryVolume unit="ft3">1504</cementSlurryVolume>
    <cementSlurryYield unit="ft3/sack">13.1</cementSlurryYield>
    <additive>mucilaginous algal-based slime</additive>
    <stageCementerMeasuredDepth unit="ft">3483</stageCementerMeasuredDepth>
    </Cement>
    </CasingInformation>
    </ProposedCasingProgram>
    <reportRemark>Black Hills Exploration has a Statewide Bond. Bond # BF39002976</reportRemark>
    <reportRemark>Drilling Program and Surface Use Plan attached.</reportRemark>
    </BLM31603>
    Many Thanks in advance for your help!
    :)

    hi, I also have same problem. I wanna to putDocument dblp.xml in the created container by using dbxml shell commands
    I faced this error:
    "stdin:18: putDocument failed, Error: Error: XML indexer: Fatal parse error in document at line 1, char 1. Parser message: invalid document structure <Document: dbp.xml>"
    the content of theat xml file is:
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE dblp SYSTEM "file: dblp.dtd">
    <dblp>
    <mastersthesis mdate="2006-04-06" key="ms/Vollmer2006">
    <author>Stephan Vollmer</author>
    <title>Portierung des DBLP-Systems auf ein relationales Datenbanksystem und Evaluation der Performance.</title>
    <year>2006</year>
    <school>Diplomarbeit, Universit&auml;t Trier, FB IV, Informatik</school>
    <url>http://dbis.uni-trier.de/Diplomanden/Vollmer/vollmer.shtml</url>
    </mastersthesis>
    <mastersthesis mdate="2002-01-03" key="ms/Brown92">
    <author>Kurt P. Brown</author>
    <title>PRPL: A Database Workload Specification Language, v1.3.</title>
    <year>1992</year>
    <school>Univ. of Wisconsin-Madison</school>
    </mastersthesis>
    </article>
    <article mdate="2003-11-19" key="journals/ai/Todd93">
    <author>Peter M. Todd</author>
    <title>Stephanie Forrest, ed., Emergent Computation: Self-Organizing, Collective, and Cooperative Phenomena in Natural and Artificial Computing Networks.</title>
    <pages>171-183</pages>
    <year>1993</year>
    <volume>60</volume>
    <journal>Artif. Intell.</journal>
    <number>1</number>
    <url>db/journals/ai/ai60.html#Todd93</url>
    </article>
    <article mdate="2003-11-19" key="journals/ai/KautzKS95">
    <author>Henry A. Kautz</author>
    <author>Michael J. Kearns</author>
    <author>Bart Selman</author>
    <title>Horn Approximations of Empirical Data.</title>
    <pages>129-145</pages>
    <year>1995</year>
    <volume>74</volume>
    <journal>Artif. Intell.</journal>
    <number>1</number>
    <url>db/journals/ai/ai60.html#Todd93</url>
    </article>
    </dblp>
    could you please help me.
    here or send me to this address please:
    [email protected]
    Thanks,
    Mohsen

  • New Client: Licence Sever Selection Error

    Hi Experts,
    We have set up a new SAP client PC.  When loading SAP, we are getting a Licence Sever Selection prompt asking for the 'IP Address or Server Name for the Licence Server'
    When entering the IP address or server name with 30000 in the second box, we are getting the error message:
    Connection with licence server failed [Message 60070-15]
    Any suggestions what may be causing this error?  The client machine can ping the licence server.
    Thanks

    Hi Greig,
    By searching for the error message you have using this forum, I can see that the following post had the same error message and it also seems to have resolved it.  If there are no similar posts within the 90 days you can search all posts.
    Please check this post:
    Connection with license server failed [Message 60070-15]
    Regards,
    Adrian

  • I am trying to install current Firefox 3.6, as I am currently running an older Firefox on my Windows ME, but I keep getting this error message: "Setup has caused an error in SETUP.EXE Setup will now close."--Please help?

    I have downloaded all IP changer Privacy software I have purchased and am trying to install it, and although it is made to work with WindowsME that I am currently using on my computer, it now says it requires Firefox 3 or above to be able to install the software. Therefore, I am trying to update my Firefox to current 3.6 but once Firefox 3.6 downloads it doesn't install. Instead I just keep getting the same error message: Setup has caused an error in SETUP.EXE. Set up will now close. Several times, I have also tried restarting the computer as the error message also recommended But I just still keep getting the same error message when I try to update/install Firefox 3.5. Please help/advise on how I can fix this problem. Many thanks in advance!

    Firefox 2.0.0.20 is the last ever version of Firefox for Win98 / SE / ME.
    You can get it from here, but you are better off using K-Meleon (derived from Firefox) or Opera instead an old version of Firefox:
    [ftp://ftp.mozilla.org/pub/firefox/releases/2.0.0.20/win32/en-US/]
    You can try KernelEx to get Firefox 3+ to work, but it would be very slow with an old PC of less than 750Mhz. 3.5 and later supposedly doesn't work.
    http://sourceforge.net/projects/kernelex/

  • Does dropping bitmap index and creation of b- index cause any dead locks

    Does dropping a bitmap index on table which is being used continuously for DML operations and creation of b- index cause any dead locks on a table
    in oracle 10g database
    ( 10.1.0.4.0 - 64bi).
    we have seen alert log file which has dead lock occurrence.. would index change/re-creation resulted dead lock or some other reason?
    Could you please give us info or help us on this.. thanks in advance..

    Bitmap indexes can be the cause of deadlocks on busy systems.
    Dropping indexes may cause some locking.
    Creating indexes may cause some locking.
    You haven't given any traces or scripts or lock information, so difficult to say which one (if any) was the cause of your deadlocks.
    It would be better to do this activity when the system is not busy.

  • Photoshop CS4 for Mac What can cause the error: Plug-in failed to load - NO VERSION

    With Photoshop CS4 for Mac I install the Kodak Plug-in DIGITAL GEM Airbrush Professional v2.1.0. When Photoshop starts I get an error:
    Plug-ins that failed to load:
       DIGITAL GEM Airbrush Professional v2.1.0 NO VERSION -  - from the file “DigitalAIRProv2.plugin”Flash:
       Connections
       Kuler
    This plug-in works fine on my Mac Pro with Photoshop CS4 and OS 10.6 but fails on a new Macbook Air.
    Reinstalling the plug-in did not make any difference. What can cause this error?

    Thanks Chris, That was my first thought too but this same plug-in works on another installation of CS4. This is a Mac installation and the plug-in is Universal so it should work. Is there any other possible cause for this error? Would Photoshop refuse to load a plug-in in a low memory situation?
    Also, The Flash extensions:Connections and Kuler are working OK, I just copied a little more out of the System Info report than I needed to.

  • DESADV01 E1EDP07 segment per line item causes EDIFACT error

    When a Sales Order has the PO Number + Date populated, the subsequent outbound Delivery IDoc (DESADV01) contains a parent E1EDP07 segment for every child line item segment (E1EDP09).  For a SO without PO Date, the IDoc is created with a single E1EDP07 with multiple child E1EDP09 segments.  This is standard SAP - do you need to code around this?
    The first scenario causes an error in EDIFACT mapping, as a limit of 9 RFF segments is allowed (E1EDP07 is a level 1 segment).  Partner systems reject this.

    Hi,
    Segment field should be optional, so check the posting keys in OB41, check the GL account which hit this posting and check the FIeld status in OBC4 and make the segment field as optional.
    while posting the transactions you can check in more then Profit center and segment details will be updated in the postings.
    try out, this might help. check the new ledger document types also.
    Regards,
    Padma

  • Does Delete Overlapping Requests drop the BIA index like Selective deletion

    Hi,
    Does Delete Overlapping Requests process in a chain drop the Accelerator index like Selective Deletion does?

    Hi,
    No is does not.
    -Vikram

  • How to get the index of the error record when uploaded using standard LSMW

    Hi Experts,
    When uploading data using lsmw standard batch input method which creates an error session if any errors,how can we able to find the index of the error record
    eg: If 3rd record in input file is incorrect then error session is getting created with the error and index as 1.But I want to know that 3rd record in my input file is incorrect.
    Please help me out.

    Srinivas,
    In global data, i've written like this.
    TYPES: BEGIN OF TYPE_ERROR,
                 INDEX TYPE I,
                 END OF TYPE_ERROR.
    DATA: GT_ERROR TYPE TABLE OF TYPE_ERROR,
               GS_ERROR TYPE TYPE_ERROR,
               GV_TOTAL_COUNT TYPE I, GV_INDEX TYPE I,
               GV_STRING TYPE STRING,
              GV_FILE TYPE STRING VALUE '/usr/sap/interfaces/LSMW/Asseterror
    In Begin of transaction,
    GV_TOTAL_COUNT = GV_TOTAL_COUNT + 1.
    In End of processing,
    OPEN DATASET GV_FILE FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
    IF SY-SUBRC = 0.
    CLEAR GS_ERROR.
    LOOP AT GT_ERROR INTO GS_ERROR.
    CONCATENATE 'INDEX OF THE ERROR RECORD IS:' GS_ERROR INTO GV_STRING.
    TRANSFER GV_STRING TO GV_FILE.
    CLEAR: GV_STRING, GS_ERROR.
    ENDLOOP.
    ENDIF.
    How and where will I be assigning error count and append it to the internal table.
    Please help me out.

Maybe you are looking for

  • Web Service Problem! URLs are basically broken.

    We recently updated our SQL Server 2012 SSRS implimentation from 11.0.3339 (SP1 CU2) to 11.0.3381 (SP1 CU6).   We are on Server 2008 R2 SP1.  I am pretty certain that this is related to the Cumulative update since I have 6 seperate and entire cluster

  • Has anyone got an iBook G3 to work with an iPhone hotspot?

    hi! First question here, and its been a real headscratcher. I have an iBook G3 with 128bits airport card (picking up and connecting to routers no problem) I also have an iPhone 4 which I've used as a personal hotspot, providing internet to my Macbook

  • Safari Crashin Problem

    Everytime I load safari the webpage quits.... this is the error message report I get...Can anyone shed some light on this? OS Version: 10.4.7 (Build 8J135) Report Version: 4 Command: Safari Path: /Applications/Safari.app/Contents/MacOS/Safari Parent:

  • Linux or windows hosting?

    I am publishing my site on iweb via godaddy- i have a choice to use linux or windows for hosting- which one?

  • Procurement Cycle of material type "PIPE"

    Hi Gurus , Can you please explain the purchase Cycle (Order to Invoicing Cycle ) of the material type "PIPE".I belive that Purchase Orders are not created for the same. Thanks, Tausif