Ora-31000 not an XDB schema document error WHY???

I have registered a xmlschema as following
FIRSTLY
I create a procedure schemas as
create or replace procedure schemas is
begin
declare
doc varchar2(1000) := '<schema
targetNamespace="http://localhost/po.xsd"
xmlns:po="http://localhost/po.xsd"
xmlns="http://www.w3.org/2001/XMLSchema"
xmlns:xdb="http://xmlns.oracle.com/xdb">
<complexType name="PurchaseOrderType">
<sequence>
<element name="PONum" type="decimal"/>
<element name="Company">
<simpleType>
<restriction base="string">
<maxLength value="100"/>
</restriction>
</simpleType>
</element>
<element name="Item" maxOccurs="1000">
<complexType>
<sequence>
<element name="Part">
<simpleType>
<restriction base="string">
<maxLength value="1000"/>
</restriction>
</simpleType>
</element>
<element name="Price" type="float"/>
</sequence>
</complexType>
</element>
</sequence>
</complexType>
<element name="PurchaseOrder" type="po:PurchaseOrderType"/>
</schema>';
begin
dbms_xmlschema.registerSchema('http://localhost/po.xsd', doc);
end;
end schemas;
SECONDLY
I execute the schemas procedure as
"exec schemas;"
and the return value show is successful
THIRDLY
I want to create a table based on this registered schema as
"create table po_tab(
id number,
po sys.XMLType
xmltype column po
XMLSCHEMA "http://localhost/PO.xsd"
element "PurchaseOrder";
But the return value is
"ORA-31000: the 'http://localhost/PO.xsd' is not an XDB schema document "
WHY?????

XML is case sensitive.. You used ''http://localhost/po.xsd' when registering the schema and "http://localhost/PO.xsd" when attempting to create the table. Which database version are you working with

Similar Messages

  • ORA-31000: Resource '' is not an XDB schema document

    I have registered HTNG_HotelRoomStatusSearchRQ.xsd with Oracle and am attempting use this schema. I have attached the original xsd, results of
    SELECT   * FROM     user_xml_schemas  where SCHEMA_URL = 'HTNG_HotelRoomStatusSearchRQ.xsd' and the block I use to test. It is all labeled in the text document attached.
    Please advise.
    Thank you

    Hi Odie,
    The error occurs on line 52
    [Error] Execution (4: 3): ORA-31000: Resource '' is not an XDB schema document ORA-06512: at line 52
    IF l_xmltype.isschemabased () = 0
        THEN
            RAISE non_registered_schema;
    END IF;
    I get the same exception regardless of the clob I use.
    declare
    x_RoomStatus         CLOB := '<?xml version="1.0" encoding="UTF-8"?>
    <HTNG_HotelRoomStatusSearchRQ 
                  xmlns="http://htng.org/2011B"
                  xmlns:ota="http://www.opentravel.org/OTA/2003/05"
                  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                  xsi:schemaLocation="http://htng.org/2014B HTNG_HotelRoomStatusSearchRQ.xsd"
                  TimeStamp="2011-08-24T09:30:47Z">             
    <PropertyInfo ChainCode="STARWOOD" HotelName="Westin San Diego" BrandCode="WESTIN" HotelCode="2134" HotelCodeContext="CRES"/>
    <Room>
    <RoomType Floor="12"/>
    <HKStatus>VACANT_DIRTY</HKStatus>';
    xy_roomstatus clob :='<?xml version="1.0" encoding="UTF-8"?>
    <HTNG_HotelRoomStatusSearchRQ EchoToken="6c19dbf8-351b-471f-a33b-be8701eb67ae" TimeStamp="2011-08-24T09:30:47Z" Version="1.0" Target="Production" xmlns="http://htng.org/2011B" xmlns:ota="http://www.opentravel.org/OTA/2003/05">
    <PropertyInfo ChainCode="STARWOOD" HotelName="Westin San Diego" BrandCode="WESTIN" HotelCode="2134" HotelCodeContext="CRES"/>
    <Room>
    <RoomType Floor="12"/>
    <HKStatus>VACANT_DIRTY</HKStatus>
    </Room>
    </HTNG_HotelRoomStatusSearchRQ>';
    BEGIN
        l_xmltype   := xmltype (xy_roomstatus);
        v_schema_to_validate :=   l_xmltype.getrootelement () || '.xsd';
        IF l_xmltype.isschemabased () = 0
        THEN
            RAISE non_registered_schema;
        END IF;
    end;
    Thank you

  • ORA-31000: Resource 'string' is not an XDB schema document

    ORA-31000: Resource '<ACCOUNT><EMPLOYEE><empid>2109</empid><sal>10000</sal></EMP
    LOYEE><EMPLOYEE><empid>2109</empid><sal>10000</sal></EMPLOYEE><EMPLOYEE><empid>2
    109</empid><sal>10000</sal></EMPLOYEE><EMPLOYEE><empid>2109</empid><sal>10000</s
    al></EMPLOYEE><EMPLOYEE><empid>2109</empid><sal>10000</sal></EMPLOYEE><ACCOUNT>'
    is not an XDB schema document
    this a output that i get. i have populated this string from table and passing it as:
    xmlvar := xmltype('ROOT',str_xmlstring);
    the function returns the string directly but gives the above output.

    Hello mgralike,
    Thanks for your link but for me this combination is valid with the getClobVal :
    Registers the schema specified as a CLOB
    DBMS_XMLSCHEMA.REGISTERSCHEMA(
    schemaurl IN VARCHAR2,
    schemadoc IN CLOB,
    local IN BOOLEAN := TRUE,
    gentypes IN BOOLEAN := TRUE,
    genbean IN BOOLEAN := FALSE,
    force IN BOOLEAN := FALSE,
    owner IN VARCHAR2 := NULL,
    options IN PLS_INTEGER := 0);
    May be It is not working properly in my case.
    Witch combination do you use it to register schema in a XMLTYPE column ?

  • Registering an XML Schema (schema.xsd is not an XDB schema document)

    Hello there,
    I'm trying to work with XML DB for a few days now, so far i didn't do anything really usefull to me, but i managed to do some general things reading these forums and the documentation. Now however, i encounter this error registering an XML Schema:
    ERROR at line 1:
    ORA-31000: Resource 'www.ariase.com.xsd' is not an XDB schema document
    ORA-06512: at "XDB.DBMS_XMLSCHEMA_INT", line 82
    ORA-06512: at "XDB.DBMS_XMLSCHEMA", line 102
    ORA-06512: at line 8I'm registering it with the following code:
    DBMS_XMLSCHEMA.registerSchema('www.ariase.com.xsd', XDBURIType('D:\Stage\Results\XSD_Target\www.ariase.com.xsd').getClob(),TRUE,TRUE,FALSE,TRUE);and this is the schema i'm registering:
    <?xml version="1.0" encoding="UTF-8"?>
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xdb="http://xmlns.oracle.com/xdb" xdb:storeVarrayAsTable="true">
         <xs:element name="ariase" xdb:defaultTable="ARIASE">
              <xs:complexType xdb:maintainDOM="false">
                   <xs:sequence>
                        <xs:element name="ligne" type="typeLigne" xdb:SQLName="LIGNE"/>
                        <xs:element name="debit" type="typeDebit" xdb:SQLName="DEBIT"/>
                        <xs:element name="central" type="typeCentral" xdb:SQLName="CENTRAL"/>
                        <xs:element name="technologies" type="typeTechnologies" xdb:SQLName="TECHNOLOGIES"/>
                        <xs:element name="reseaux" type="typeReseaux" xdb:SQLName="RESEAUX"/>
                        <xs:element name="degroupage" type="typeDegroupage" xdb:SQLName="DEGROUPAGE"/>
                   </xs:sequence>
              </xs:complexType>
         </xs:element>
         <!-- Complex types -->
         <xs:complexType name="typeLigne" xdb:maintainDOM="false" xdb:SQLType="XML_TYPE_LIGNE">
              <xs:sequence>
                   <xs:element name="numero" type="typeNumero"/>
                   <xs:element name="longeur" type="xs:string"/>
                   <xs:element name="affaiblissement" type="xs:string"/>
              </xs:sequence>
         </xs:complexType>
         <xs:complexType name="typeDebit" xdb:maintainDOM="false" xdb:SQLType="XML_TYPE_DEBIT">
              <xs:sequence>
                   <xs:element name="adsl2" type="xs:string"/>
                   <xs:element name="adsl" type="xs:string"/>
                   <xs:element name="readsl" type="xs:string"/>
              </xs:sequence>
         </xs:complexType>
         <xs:complexType name="typeCentral" xdb:maintainDOM="false" xdb:SQLType="XML_TYPE_CENTRAL">
              <xs:sequence>
                   <xs:element name="code" type="xs:string"/>
                   <xs:element name="nom" type="xs:string"/>
                   <xs:element name="lieu" type="xs:string"/>
                   <xs:element name="lignes" type="xs:string"/>
                   <xs:element name="densite" type="xs:string"/>
                   <xs:element name="dslam" type="xs:string"/>
                   <xs:element name="plaque" type="xs:string"/>
                   <xs:element name="couvertures" type="typeCouvertures"/>
              </xs:sequence>
         </xs:complexType>
         <xs:complexType name="typeCouvertures" xdb:maintainDOM="false" xdb:SQLType="XML_TYPE_COUVERTURES">
              <xs:sequence maxOccurs="unbounded">
                   <xs:element name="comunne" type="typeComunne"/>
              </xs:sequence>
         </xs:complexType>
         <xs:complexType name="typeComunne" xdb:maintainDOM="false" xdb:SQLType="XML_TYPE_COMUNNE">
              <xs:sequence>
                   <xs:element name="nom" type="xs:string"/>
                   <xs:element name="couverture" type="xs:string"/>
              </xs:sequence>
         </xs:complexType>
         <xs:complexType name="typeTechnologies" xdb:maintainDOM="false" xdb:SQLType="XML_TYPE_TECHNOLOGIES">
              <xs:sequence maxOccurs="unbounded">
                   <xs:element name="technologie" type="typeTechnologie"/>
              </xs:sequence>
         </xs:complexType>
         <xs:complexType name="typeTechnologie" xdb:maintainDOM="false" xdb:SQLType="XML_TYPE_TECHNOLOGIE">
              <xs:sequence>
                   <xs:element name="nom" type="xs:string"/>
                   <xs:element name="central" type="xs:string"/>
                   <xs:element name="ligne" type="xs:string"/>
                   <xs:element name="reponse" type="xs:string"/>
              </xs:sequence>
         </xs:complexType>
         <xs:complexType name="typeReseaux" xdb:maintainDOM="false" xdb:SQLType="XML_TYPE_RESEAUX">
              <xs:sequence maxOccurs="unbounded">
                   <xs:element name="reseau" type="typeReseau"/>
              </xs:sequence>
         </xs:complexType>
         <xs:complexType name="typeReseau" xdb:maintainDOM="false" xdb:SQLType="XML_TYPE_RESEAU">
              <xs:sequence>
                   <xs:element name="nom" type="xs:string"/>
                   <xs:element name="adsl" type="xs:string"/>
                   <xs:element name="adsl2" type="xs:string"/>
              </xs:sequence>
         </xs:complexType>
         <xs:complexType name="typeDegroupage" xdb:maintainDOM="false" xdb:SQLType="XML_TYPE_DEGROUPAGE">
              <xs:sequence maxOccurs="unbounded">
                   <xs:element name="fournisseur" type="typeFournisseur"/>
              </xs:sequence>
         </xs:complexType>
         <xs:complexType name="typeFournisseur" xdb:maintainDOM="false" xdb:SQLType="XML_TYPE_FOURNISSEUR">
              <xs:sequence>
                   <xs:element name="nom" type="xs:string"/>
                   <xs:element name="totale" type="xs:string"/>
                   <xs:element name="tv" type="xs:string"/>
              </xs:sequence>
         </xs:complexType>
         <!-- Simple types -->
         <xs:simpleType name="typeNumero">
              <xs:restriction base="xs:string">
                   <xs:pattern value="[0-9]{10}"/>
              </xs:restriction>
         </xs:simpleType>
    </xs:schema>I'm using Oracle XE 2.1.0.00.39. Does this all look a bit OK, or am i way off here. I already managed to register the schema when it had a different name, and when it was in a different folder, so now i don't know what i'm doing wrong.
    Also i'd like to know what the best way is to insert 10.000s of XML documents in the database, is it possible to 'upload' them to the server, or will i always have to use an INSERT query to do this?
    I hope i gave enough information.
    Regards,
    Stijn

    THis looks wrong to me
    XDBURIType('D:\Stage\Results\XSD_Target\www.ariase.com.xsd').
    xdburitype() is used to reference an XML document that already been loaded into the XDB repository.
    You can load the document using FTP or WEBDAV or BFILENAME to any folder that already exists and you have write access to. By default this will probably be '/public' unless you have loaded the xdb_utilities package which is posted in this forum and create a '/home' folder for your user. For instance if you loaded the XSD into '/public' your code would look something like this..
    xdburitype('/public/www.ariase.com').getClob()
    However that would typically generate an error like this
    'SQL> exec DBMS_XMLSCHEMA.registerSchema('www.ariase.com.xsd', XDBURIType('D:\Stage\Results\XSD_Target\www.ariase.com.xsd').getClob(),TRUE,TR
    UE,FALSE,TRUE);
    BEGIN DBMS_XMLSCHEMA.registerSchema('www.ariase.com.xsd', XDBURIType('D:\Stage\Results\XSD_Target\www.ariase.com.xsd').getClob(),TRUE,TRUE,F
    ALSE,TRUE); END;
    ERROR at line 1:
    ORA-31001: Invalid resource handle or path name
    "D:\Stage\Results\XSD_Target\www.ariase.com.xsd"
    ORA-06512: at "SYS.XDBURITYPE", line 4
    ORA-06512: at line 1
    SQL>The error message you are seeing implies that the schema you are registering contains an import or include element with a schemalocation attribute that references 'www.ariase.com.xsd'
    Eg
    SQL> begin
      2    DBMS_XMLSCHEMA.registerSchema('www.ariase.com1.xsd',
      3  '<?xml version="1.0" encoding="UTF-8"?>
      4  <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attri
      5     <xs:include schemaLocation="www.ariase.com.xsd"/>
      6     <xs:element name="root" type="xs:short">
      7             <xs:annotation>
      8                     <xs:documentation>Comment describing your root element</xs:documentation
      9             </xs:annotation>
    10     </xs:element>
    11  </xs:schema>',
    12  TRUE,TRUE,FALSE,TRUE);
    13  end;
    14
    15
    16  /
    begin
    ERROR at line 1:
    ORA-31000: Resource 'www.ariase.com.xsd' is not an XDB schema document
    ORA-06512: at "XDB.DBMS_XMLSCHEMA_INT", line 3
    ORA-06512: at "XDB.DBMS_XMLSCHEMA", line 14
    ORA-06512: at line 2
    SQL>

  • ORA-31000: Resource 'example_name.xsd' is not an XDB schema document

    Morning,
    I'm running 11gr2 on OEL 5. I recently joined a project where a lot of work has already been done by a previous dba and xmldb is fairly new to me. I'm trying to register a new xml schema but keep getting the above error. The error is referencing a resource that I'm not even declaring in my statement. See statement below.
    BEGIN
    DBMS_XMLSCHEMA.registerSchema(
    SCHEMAURL => 'http://localhost/xsd/test/collection_test.xsd',
    SCHEMADOC => bfilename('XSD_TEST','collection_test.xsd'),
    CSID => nls_charset_id('AL32UTF8'));
    END;
    I've used the FORCE=True option which has worked but then the error shows up again when trying to create a table. I queried the schema url and found that nothing was mapped to it so I deleted it as so:
    DBMS_XMLSCHEMA.DELETESCHEMA('http://localhost/xsd/test/collection_test.xsd', DBMS_XMLSCHEMA.DELETE_CASCADE_FORCE);
    This worked just fine. Problem now is, I'm still getting the same error when registering schema or creating a table. I thought maybe I could purge t he schema from the database now but I can't query the schema ID to do so. I feel I am stuck now. I've tried to look up solutions online for a day now to no avail. All help is GREATLY appreciated (and rewarded). Thanks!!

    I don't expect to be able to give you the answer you seek, but I'll ask a couple of questions to help others along.
    1) What is your error message? That is useful
    2) What does collection_test.xsd look like? Can you post it (or a portion of it, including any includes/imports and all namespaces)?
    Reproducible test cases are always nice as they show others what is going on and give a starting point for reproducing/fixing the error.

  • "...not a valid Photoshop document" error when opening Mac cc file on PC

    I get a "Could not complete your request because it is not a valid Photoshop document." error message whenever I try to open up a PSD file created on a Mac using Photoshop CC on my PC using CC. Other people have been able to open the file from the same location, so the files aren't corrupted. Anyone know how to fix this?

    I know this thread is a bit old, but I wanted to share my experience and solution in case anyone else runs into this.
    The other day, I spent many hours editing some photos for a client. I saved them all and closed Photoshop. When I tried to open the .PSDs, they all came up with this "Not a valid Photoshop document" error. I was freaking out. I could see the thunmbnails and previews with the MacOS Finder and could see the images just fine in Lightroom, but couldn't open them in Photoshop CC.
    Finally, I remembered that these were NOT supposed to be .psd files! They were supposed to be TIFFs. What happened was, when I edited them from within Lightroom into Photoshop, they opened as TIFFs. However, when I did "save as", I wanted to name them similarly to some other files I had. I clicked on one of the existing files to copy the file name in the Save As dialog to make it easier to name the new file I was saving, but I didn't realize it was changing the file extention from ".tif" to ".psd" as well. The older MacOS (version 9 and earlier) didn't rely on file extensions fo identifying file types, so it didn't hit me right away that this would be the problem. When I changed the incorrect .psd file extension to .tiff, the files opened in Photoshop just fine.
    SO... if you run into this "Not a valid Photoshop document" error, try figuring out if it's actually another file type (.jpg, .tif, .png, etc) by either getting the file info from another program or just experimenting with different file extensions. Chances are good that your file isn't actually corrupt, but just named improperly!

  • Getting "ORA-00979: not a GROUP BY expression" error in Inline query

    Hello all,
    The following query when run in SCOTT user gives "ORA-00979: not a GROUP BY expression" error.
    If I remove the TRUNC function from the outer query's group by clause, then it fetches
    (My actual query is something similar to the following query. I have given emp, dept tables for convenience's sake)
    select e.empno,e.ename, AVG(e.SAL), trunc(e.hiredate),
    (select sum(sal) from emp
    where hiredate = e.hiredate) salary
    from emp e
    group by e.DEPTNO,e.EMPNO,e.ENAME, trunc(e.hiredate)
    Pls suggest how this error can be avoided.
    Regards,
    Sam

    Why not this?
    satyaki>
    satyaki>select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod
    PL/SQL Release 10.2.0.1.0 - Production
    CORE    10.2.0.1.0      Production
    TNS for Linux: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    Elapsed: 00:00:00.02
    satyaki>
    satyaki>
    satyaki>select e.empno,
      2         e.ename,
      3         AVG(e.SAL),
      4         trunc(e.hiredate),
      5        (
      6           select sum(sal)
      7           from emp
      8           where hiredate = e.hiredate
      9        ) salary
    10  from emp e
    11  group by e.DEPTNO,
    12           e.EMPNO,
    13           e.ENAME,
    14           e.hiredate;
         EMPNO ENAME      AVG(E.SAL) TRUNC(E.H     SALARY
          7934 MILLER         1887.6 23-JAN-82     5583.6
          7698 Glen             1848 23-JAN-82     5583.6
          7788 SCOTT          598.95 19-APR-87     598.95
          7900 JAMES          1379.4 03-DEC-81    6650.16
          7521 WARD           226.88 22-FEB-81     226.88
          7599 BILLY            4500 10-JUN-09       4500
          2222 sp               1200 14-SEP-09       1200
          7902 FORD          5270.76 03-DEC-81    6650.16
          7566 Smith            1848 23-JAN-82     5583.6
          7654 MARTIN           1815 28-SEP-81       1815
          7839 KING             7260 17-NOV-81       7260
         EMPNO ENAME      AVG(E.SAL) TRUNC(E.H     SALARY
          7844 TURNER           2178 08-SEP-81       2178
          7876 ADAMS          159.72 23-MAY-87     159.72
    13 rows selected.
    Elapsed: 00:00:00.03
    satyaki>Regards.
    Satyaki De.

  • TS3694 im trying to update my phone and it says could not be restored an unknoen error why is this

    im trying to update my phone and it says could not be restored an unknoen error why is this

    Hey alyreed22,
    Thanks for the question. I understand you are having issues updating to iOS 7. The following articles may help you resolve the error message:
    iOS: Troubleshooting update and restore issues
    http://support.apple.com/kb/TS1275
    iTunes: Specific update-and-restore error messages and advanced troubleshooting
    http://support.apple.com/kb/TS3694
    Thanks,
    Matt M.

  • I am always getting the message ' could not complete due to program error" Why does this happen

    I am always getting the message ' could not complete due to program error" Why does this happen

    Without knowing a lot more details we can't tell you anything. This is just the most generic Photoshop error message imaginable. What system are you on? What version of Photoshop? what are you doing when the error occurs? Provide as much info as you can. Refer to this as a start:
    Working with your Operating System’s Tools
    Mylenium

  • Could not Auto-save your document ERROR

    Greetings,
    I am going through a nightmare at our school.
    Keynote regularly brings the above error and I am stuck now, Reinstall of Iwork,File Server and disabling auto save didnt help.
    This is the the log extract :
    11/28/14 10:13:09.565 AM Keynote[1075]: *** Error: +[TSPFileManager linkOrCopyURL:decryptionKey:toURL:encryptionKey:] TSPFileManager.m:56 Couldn't copy file:///Volumes/Lower/.TemporaryItems/folders.502/TemporaryItems/(A%20Document% 20Being%20Saved%20By%20Keynote%208)/843BEF70-2229-41E5-8B55-6E92D539934A/st4-16. jpg to file:///Volumes/Lower/Grade%202/2G/Sophia/Tomatoes%20to%20Ketchup.key.sb-621df9 a2-SqBtVx/Tomatoes%20to%20Ketchup.key/Data/st4-282.jpg: Error Domain=NSCocoaErrorDomain Code=260 "The file “st4-16.jpg” couldn’t be opened because there is no such file." UserInfo=0x600000c7b900 {NSFilePath=/Volumes/Lower/.TemporaryItems/folders.502/TemporaryItems/(A Document Being Saved By Keynote 8)/843BEF70-2229-41E5-8B55-6E92D539934A/st4-16.jpg, NSUnderlyingError=0x600001251940 "The operation couldn’t be completed. No such file or directory"}
    11/28/14 10:13:09.565 AM Keynote[1075]: *** Error: __100-[TSPPackageWriteCoordinator createPackageMetadataWritingDatasWithPackageWriter:saveOperationState:]_block_i nvoke_2 TSPPackageWriteCoordinator.mm:1403 Failed to write data: st4.jpg
    11/28/14 10:15:55.815 AM Keynote[1075]: *** Error: +[TSPFileManager linkOrCopyURL:decryptionKey:toURL:encryptionKey:] TSPFileManager.m:56 Couldn't copy file:///Volumes/Lower/.TemporaryItems/folders.502/TemporaryItems/(A%20Document% 20Being%20Saved%20By%20Keynote%208)/843BEF70-2229-41E5-8B55-6E92D539934A/st4-16. jpg to file:///Volumes/Lower/Grade%202/2G/Sophia/Tomatoes%20to%20Ketchup.key.sb-621df9 a2-6DMdC1/Tomatoes%20to%20Ketchup.key/Data/st4-282.jpg: Error Domain=NSCocoaErrorDomain Code=260 "The file “st4-16.jpg” couldn’t be opened because there is no such file." UserInfo=0x6000016759c0 {NSFilePath=/Volumes/Lower/.TemporaryItems/folders.502/TemporaryItems/(A Document Being Saved By Keynote 8)/843BEF70-2229-41E5-8B55-6E92D539934A/st4-16.jpg, NSUnderlyingError=0x6000012518b0 "The operation couldn’t be completed. No such file or directory"}
    11/28/14 10:15:55.815 AM Keynote[1075]: *** Error: __100-[TSPPackageWriteCoordinator createPackageMetadataWritingDatasWithPackageWriter:saveOperationState:]_block_i nvoke_2 TSPPackageWriteCoordinator.mm:1403 Failed to write data: st4.jpg
    11/28/14 10:20:11.352 AM Console[1818]: setPresentationOptions called with NSApplicationPresentationFullScreen when there is no visible fullscreen window; this call will be ignored.
    11/28/14 10:20:12.584 AM Keynote[1075]: *** Error: +[TSPFileManager linkOrCopyURL:decryptionKey:toURL:encryptionKey:] TSPFileManager.m:56 Couldn't copy file:///Volumes/Lower/.TemporaryItems/folders.502/TemporaryItems/(A%20Document% 20Being%20Saved%20By%20Keynote%208)/843BEF70-2229-41E5-8B55-6E92D539934A/st4-16. jpg to file:///Volumes/Lower/Grade%202/2G/Sophia/Tomatoes%20to%20Ketchup.key.sb-621df9 a2-pbIR2V/Tomatoes%20to%20Ketchup.key/Data/st4-282.jpg: Error Domain=NSCocoaErrorDomain Code=260 "The file “st4-16.jpg” couldn’t be opened because there is no such file." UserInfo=0x6000014702c0 {NSFilePath=/Volumes/Lower/.TemporaryItems/folders.502/TemporaryItems/(A Document Being Saved By Keynote 8)/843BEF70-2229-41E5-8B55-6E92D539934A/st4-16.jpg, NSUnderlyingError=0x600001a52e70 "The operation couldn’t be completed. No such file or directory"}
    11/28/14 10:20:12.584 AM Keynote[1075]: *** Error: __100-[TSPPackageWriteCoordinator createPackageMetadataWritingDatasWithPackageWriter:saveOperationState:]_block_i nvoke_2 TSPPackageWriteCoordinator.mm:1403 Failed to write data: st4.jpg
    Please advise...
    Lower is  AFP File server just mounted on all computers
    Thanks
    Huzz

    Very well. Try this with your Mac:
    Open "new.psd" in Preview
    File > Save
    new.psd becomes new.png  If the extension was correct, Preview would not have changed it.
    it now opens in Photoshop  You can download it here.  ("Save image As...)
    Simply put, you had the wrong extension.

  • I want to purchase VPN but not. Buy get a error why Plc help plc

    Plc help

    I'm not sure what you mean. You want to purchase a virtual private network? that's not really something you purchase - it's a means to connect to a network when you're not actually in that network and is supplied by the owner of that network

  • I have adobe photoshop cs6, but after offline activation by legal SN its just not working and showing no error, why?

    After installation and registering CS6 i tryed to run aplication and it works only 5 secs ... and i dont know why .. ?

    Yes it quit itself silently .... and i dont know why... i have to say .. that i have adobe photoshop CC  too ... and its working perfectly .... but i need cs6 for my work too ..:/

  • ORA-20011: Approximate NDV failed: ORA-31000: Resource Error in Oracle 11g

    Hi Friends,
    I am using Oracle 11.2.0.1 on linux (x64) and i am getting the following messages in Alert Log / Trace Log.
    Please let me know the fix.
    Alert Log:
    GATHER_STATS_JOB encountered errors. Check the trace file.
    Errors in file /u01/app/oracle/diag/rdbms/oraht01/oraht01/trace/oraht01_j001_30852.trc:
    ORA-20011: Approximate NDV failed: ORA-31000: Resource '' is not an XDB schema document
    ORA-06512: at "XDB.XDB$ACL_PKG_INT", line 18
    Trace File entries:
    ----- Guard Frame Metadata Dump -----
    ----- Java Stack -----
    ORA-20011: Approximate NDV failed: ORA-31000: Resource '' is not an XDB schema document
    ORA-06512: at "XDB.XDB$ACL_PKG_INT", line 18
    *** 2013-01-21 22:00:36.397
    GATHER_STATS_JOB: GATHER_TABLE_STATS('"XDB"','"XDB$ACL"','""', ...)
    ORA-20011: Approximate NDV failed: ORA-31000: Resource '' is not an XDB schema document
    ORA-06512: at "XDB.XDB$ACL_PKG_INT", line 18
    Regards,
    DB

    Hi Friends,
    Thanks for the info but the referred Thread and the Metalink Notes : 1290722.1 or 1305127.1 doesn't help me.
    Trace File :
    *** 2013-01-21 22:00:29.760
    *** SESSION ID:(28.36753) 2013-01-21 22:00:29.760
    *** CLIENT ID:() 2013-01-21 22:00:29.760
    *** SERVICE NAME:(SYS$USERS) 2013-01-21 22:00:29.760
    *** MODULE NAME:(DBMS_SCHEDULER) 2013-01-21 22:00:29.760
    *** ACTION NAME:(ORA$AT_OS_OPT_SY_1144) 2013-01-21 22:00:29.760
    SQL> SELECT JOB_NAME,STATUS,ADDITIONAL_INFO FROM DBA_SCHEDULER_JOB_RUN_DETAILS WHERE JOB_NAME = 'ORA$AT_OS_OPT_SY_1144';
    JOB_NAME
    STATUS
    ADDITIONAL_INFO
    ORA$AT_OS_OPT_SY_1144
    SUCCEEDED
    The job show completed but i want to avoid this issue in the Alert.
    Regards,
    DB

  • ORA-31000 when register schema in oracle 10g

    I am trying to register a schema in oracle10g rel2. The schema contain "<xs:include schemaLocation="papiNetCommonDefsV2R31.xsd"/>" and papiNetCommonDefsV2R31.xsd is successfully registered in Oracle repository. But i am still getting the error as
    1 begin
    2 dbms_xmlschema.registerSchema
    3 ('http://localhost:8080/home/xdb/xsd/PurchaseOrderV2R31.xsd',
    4 xdburitype('/home/xdb/xsd/PurchaseOrderV2R31.xsd').getCLOB(),
    5 FALSE,
    6 TRUE,
    7 FALSE,
    8 TRUE
    9 );
    10* end;
    SQL> /
    begin
    ERROR at line 1:
    ORA-31000: Resource 'papiNetCommonDefsV2R31.xsd' is not an XDB schema document
    ORA-06512: at "XDB.DBMS_XMLSCHEMA_INT", line 20
    ORA-06512: at "XDB.DBMS_XMLSCHEMA", line 31
    ORA-06512: at line 2.
    I can view 'papiNetCommonDefsV2R31.xsd' when i run the query - select schema_url from user_xml_schemas

    Hi Glyn,
    Can you create a script that recreates the problem?
    I have a similiar problem, but can not recreate the exact operations sequance that cause the ORA-07445.
    Avi.

  • DICOM packaged application install error - XDB schema error

    Hi, I have worked through the install readme for the DICOM packaged application and on installing the DICOM_demo_installer.sql supporting objects I get an error when trying to create the table dicom_archive
    ORA-31000: Resource 'http://xmlns.oracle.com/ord/meta/dia_demo' is not an XDB schema document
    Any pointers appreciated.

    9503657 (In lieu of your actual name - Please give your name in future),
    Where are you trying to install this packaged application (DB Version, DB Edition (EE / SE / SE1 / XE), DB Options, localhost / hosted environment)?
    There are specific requirements specified in the readme.txt file provided in the zip file.
    There are very specific installation instructions also provided in the readme.txt file.
    Unlike most packaged applications this one requires various scripts be run prior to installing the actual application into APEX.
    So could you please specify the steps taken to get to this error.
    Regards,
    David

Maybe you are looking for

  • Error while creating a client proxy for CBR.RU

    Hi! I need to consume web service. Here is the link: http://www.cbr.ru/DailyInfoWebServ/DailyInfo.asmx?WSDL I tried to make an own client proxy with SE80 transaction. (edit object->enterprise services -> client proxy -> create) After completing wizar

  • How to make the menu fonts larger in Bridge CC 2014?

    I just upgraded my monitor to a 3840x2160 HiRez  & Photoshop CC 2014 /Bridge CC 2014. I have been able to make the menu fonts large enough to read in Photoshop CC but not for Bridge. Any suggestions on how to enlarge the fonts in Bridge? Thanks!

  • Diplay results which span across multiple pages

    hello friends i want to display my search results which span across multiple pages with next and previos buttons. example google search .ie if u search for a topic it gives severl pages with next and previos buttons. thanks in advance R.G.SHARMA

  • Query on javax.mail.event.MessageCountListener

    Hi All, Have a java batch which reads email from an inbox (IMAP) and processes new mails received. we are using javax.mail.event.MessageCountListener to listen for any new mails received and add those to a arraylist which can be processed. During som

  • HTML Post method.

    HI Experts, Here my scenario is Proxy to HTTP. My Receiver system need HTML Post method in place of XML file. Normally PI will send the XML but receiver system is expecting HTML POST method. For this i have to do in configuration. Receiver is expecti