Failed to read USER_SDO_GEOM_METADATA view

Hello,
I'm trying to add a geometry column to an oracleXE table.
commands issued are:
1) alter table specimen add (geom mdsys.sdo_geometry);
2) update specimen set geom = mdsys.sdo_geometry(2001,8307,mdsys.sdo_point_type(dec_long,dec_lat,null),null,null);
3) insert into mdsys.user_sdo_geom_metadata (table_name,column_name,diminfo,srid) values ('specimen','geom',mdsys.sdo_dim_array(mdsys.sdo_dim_element('longitude',-180,180,1), mdsys.sdo_dim_element ('latitude',-90,90,1)),8307);
all above seem to work correctly and if I list user_sdo_geom_metadata I get:
TABLE_NAME
COLUMN_NAME
DIMINFO(SDO_DIMNAME, SDO_LB, SDO_UB, SDO_TOLERANCE)
SRID
SPECIMEN
GEOM
SDO_DIM_ARRAY(SDO_DIM_ELEMENT('longitude', -180, 180, 1), SDO_DIM_ELEMENT('latit
ude', -90, 90, 1))
8307
TABLE_NAME
COLUMN_NAME
DIMINFO(SDO_DIMNAME, SDO_LB, SDO_UB, SDO_TOLERANCE)
SRID
which also looks correct.
However, when I try to create a spatial index with:
create index specimen_sidx on specimen(geom) indextype is mdsys.spatial_index;
I get the error:
ERROR at line 1:
ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
ORA-13203: failed to read USER_SDO_GEOM_METADATA view
ORA-13203: failed to read USER_SDO_GEOM_METADATA view
ORA-06512: at "MDSYS.SDO_INDEX_METHOD_10I", line 10
Does anyone have a fix or any idea why it fails?
Any help appreciated,
Dave

Sorry, I forgot about the triggers on the user_sdo_geom_metadata:
Do these as well (again while connected as SYSDBA).
alter session set current_schema=MDSYS;
CREATE OR REPLACE TRIGGER SDO_GEOM_TRIG_INS1
INSTEAD OF INSERT ON user_sdo_geom_metadata
REFERENCING NEW AS n
FOR EACH ROW
declare
tname varchar2(32);
stmt varchar2(2048);
vcount INTEGER;
dimcount INTEGER;
tolerance NUMBER;
dimelement MDSYS.SDO_DIM_ELEMENT;
idx number;
BEGIN
EXECUTE IMMEDIATE
'SELECT user FROM dual' into tname;
if ( (instr(:n.table_name, ' ') > 0 ) OR
(instr(:n.table_name, '''') > 0 ) ) then
mderr.raise_md_error('MD', 'SDO', -13223,
:n.table_name||'.'||:n.column_name);
end if;
if ( (instr(:n.column_name, ' ') > 0 ) OR
(instr(:n.column_name, '''') > 0 ) ) then
mderr.raise_md_error('MD', 'SDO', -13223,
:n.table_name||'.'||:n.column_name);
end if;
stmt := 'SELECT count(*) FROM SDO_GEOM_METADATA_TABLE ' ||
'WHERE sdo_owner = :tname AND sdo_table_name = :table_name '||
' AND sdo_column_name = :column_name ';
EXECUTE IMMEDIATE stmt INTO vcount
USING upper(tname), upper(:n.table_name), upper(:n.column_name);
IF vcount = 0 THEN
dimcount := :n.diminfo.count;
FOR idx in 1 .. dimcount LOOP
dimelement := :n.diminfo(idx);
tolerance := dimelement.SDO_TOLERANCE;
if ( (tolerance is NULL) OR (tolerance <= 0) ) then
mderr.raise_md_error('MD', 'SDO', -13224,
:n.table_name||'.'||:n.column_name);
end if;
END LOOP;
INSERT INTO sdo_geom_metadata_table values
(tname,
upper(:n.table_name), upper(:n.column_name), :n.diminfo,
:n.srid);
ELSE
mderr.raise_md_error('MD', 'SDO', -13223,
:n.table_name||'.'||:n.column_name);
END IF;
END;
show errors;
CREATE OR REPLACE TRIGGER SDO_GEOM_TRIG_DEL1
INSTEAD OF DELETE ON user_sdo_geom_metadata
REFERENCING OLD AS n
FOR EACH ROW
declare
tname varchar2(32);
stmt varchar2(2048);
vcount INTEGER;
BEGIN
EXECUTE IMMEDIATE
'SELECT user FROM dual' into tname;
DELETE FROM sdo_geom_metadata_table
WHERE SDO_OWNER = tname
AND SDO_TABLE_NAME = upper(:n.table_name)
AND SDO_COLUMN_NAME = upper(:n.column_name);
END;
show errors;
CREATE OR REPLACE TRIGGER SDO_GEOM_TRIG_UPD1
INSTEAD OF UPDATE ON user_sdo_geom_metadata
REFERENCING OLD AS old NEW AS n
FOR EACH ROW
declare
tname varchar2(32);
stmt varchar2(2048);
vcount INTEGER;
BEGIN
EXECUTE IMMEDIATE
'SELECT user FROM dual' into tname;
UPDATE sdo_geom_metadata_table
SET (SDO_TABLE_NAME, SDO_COLUMN_NAME, SDO_DIMINFO, SDO_SRID) =
(SELECT upper(:n.table_name), upper(:n.column_name), :n.diminfo,
:n.srid FROM DUAL)
WHERE SDO_OWNER = tname
AND SDO_TABLE_NAME = upper(:old.table_name)
AND SDO_COLUMN_NAME = upper(:old.column_name);
END;
show errors;

Similar Messages

  • ORA-13203: failed to read USER_SDO_GEOM_METADATA view

    when I create spatial index, it return an error&#65306;
    create index harbin_images_index on harbin_images (image.spatialextent indextype is mdsys.spatial_index;
    ERROR at line 1:
    ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
    ORA-13203: failed to read USER_SDO_GEOM_METADATA view
    ORA-13203: failed to read USER_SDO_GEOM_METADATA view
    ORA-06512: at "MDSYS.SDO_INDEX_METHOD_10I", line 10
    ORA-06512: at line 1
    Please help me , thanks !

    Hi,
    Before creating spatial index you need to insert metadata about your table into MDSYS.SDO_GEOM_METADATA table.
    Regards,
    Andrejus

  • Locator: failed to read USER_SDO_GEOM_METADATA view

    Hi again,
    i tried the step-by-step explanation about oracle locator, published on http://www.oracle.com/pls/xe102/to_toc?pathname=appdev.102%2Fb28004%2Ftoc.htm&remark=portal+%28Getting+Started%29 (thx to roberto)
    i don't know how to explain this simple, but i will try:
    1) creating the tables work fine (stores, customers)
    2) creating the metadata didn't give an error
    3) creating the spatial index gave me this error
    |ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
    |ORA-13203: failed to read USER_SDO_GEOM_METADATA view
    |ORA-13203: failed to read USER_SDO_GEOM_METADATA view
    solution found on the internet: "This error occurs if the table you are trying to index does not have any metadata in the USER_ SDO_GEOM_METADATA"
    so i tried to do step 2 again (creating a metadata-row for my table). the error i get now:
    |ORA-13223: duplicate entry for CUSTOMERS.CUST_GEO_LOCATION in SDO_GEOM_METADATA
    |ORA-06512: at "MDSYS.MD", line 1723
    |ORA-06512: at "MDSYS.MDERR", line 17
    |ORA-06512: at "MDSYS.SDO_GEOM_TRIG_INS1", line 48
    |ORA-04088: error during execution of trigger 'MDSYS.SDO_GEOM_TRIG_INS1'1. INSERT INTO USER_SDO_GEOM_METADATA (TABLE_NAME, COLUMN_NAME, |DIMINFO, SRID)
    |2. VALUES ('CUSTOMERS', 'CUST_GEO_LOCATION',
    |3. SDO_DIM_ARRAY
    from this, i understand that there is already a record within the metadata view??
    next, i tried to delete the specifiek record in user_sdo_geom_metadata. answer:
    |0 records deleted
    from here, i don't know if the record was created in the user_sdo_geom_metadata, and if it is still there!?
    the weird part of all: i tried all these steps in the SQL-command-bar, which is on my database home page.(home >sql>sql commands) that's also where i get the errors.
    when i try the same steps in SQL plus, the record is added to user_sdo_geom_metadata and i can create spatial indexes?!
    can someone explain me what i do wrong, and why i can't create spatial indexes on my database home page?
    I hope I explained my problem clear enough, if not, please ask me some questions.
    thx,
    Ine

    Greetings - I found the excerpt below in the Locator documentation (the link was provided in your previous post), in the first chapter. It doesn't describe why you can't use the Express Edition SQL Commands, only that you must use SQL Plus. Anyway, I thought you might be interested in seeing it, as it appears to confirm your experience ...
    "Note:
    You cannot use the Express Edition SQL Commands or SQL Scripts features to run a SQL script or enter a SQL statement that creates or requires a spatial index. You must instead use SQL*Plus, such as by selecting Run SQL Command Line from the Express Edition menus, and connect as a database user that has the Create Table privilege."
    Regards -
    Gail

  • Out of memory when reading USER_SDO_GEOM_METADATA

    Hi,
    I'm running a plsql procedure from sqldeveloper against a Oracle10g (Spatial) server.
    The procedure mainly performs a SDO_NN search.
    I was expecting the procedure processing time to be about 48h (due to the huge tables involved)
    But I always get this same kind of errors, breaking the process when six hours elapsed :
    ORA-29902: error in executing ODCIIndexStart() routine
    ORA-13203: failed to read USER_SDO_GEOM_METADATA view
    ORA-13203: failed to read USER_SDO_GEOM_METADATA view
    ORA-29400: data cartridge error
    ORA-04030: out of process memory when trying to allocate 16396 bytes. (QERHJ hash-joi,QERHJ Bit vector)
    extending memory could be a workaround
    but it wouldn't explain why the read of USER_SDO_GEOM_METADATA always causes the "out of memory".
    Thanks for your advice or explanation
    Clem

    but it wouldn't explain why the read of USER_SDO_GEOM_METADATA always causes the "out of memory".Reading USER_SDO_GEOM_METADATA wouldn't be the cause of 'out of memory'. It is more likely that some rogue process caused you to run out of memory and the next thing that was supposed to happen was a read of USER_SDO_GEOM_METADATA. This read failed as there was no memory left for the query to perform.
    So the failed read of USER_SDO_GEOM_METADATA is the symptom rather than the cause.
    A few general points:
    - What exact version of the 10g are you on? There were several memory related bugs fixed over the life of 10g. Ensure you are on the very latest patchset before spending any more time on this.
    - Try to ensure your data is valid. i.e. it passes SDO_GEOM.VALIDATE_LAYER_WITH_CONTEXT(). If you've a very big table, then it could be tricky to get all the data valid, but be aware that invalid data can lead to all sorts of problems including memory leaks.
    - Follow the general guidelines for ORA-04030 errors. In particular, ensure you have a sensible PGA_AGREGATE_TARGET value.
    Following that, I'd recommend posting the key parts of your pl/sql procedure here in case you're doing something in the code that is causing this error.

  • Error reading User_SDO_Geom_Metadata when validating geometry

    Hello,
    I am having an error when running SDO_GEOM.VALIDATE_LAYER_WITH_CONTEXT on an Oracle 10.2.0.4 DB running on Windows. Below is a code snippet and response with errors. (I think during the investigation of this problem that I saw similar errors when attempting to build a spatial index but not with this example)
    There is the correct entry into ALL_SDO_GEOM_METADATA also.
    If anyone can offer any suggestions?
    Thanks!
    CODE
    CREATE TABLE "TABLE1"
    ( "COL" VARCHAR2(20 BYTE),
    "GEOM" "MDSYS"."SDO_GEOMETRY"
    DELETE FROM USER_SDO_GEOM_METADATA
    WHERE TABLE_NAME = 'TABLE1' AND COLUMN_NAME = 'GEOM' ;
    INSERT INTO USER_SDO_GEOM_METADATA (TABLE_NAME, COLUMN_NAME, DIMINFO, SRID)
    VALUES
    ('TABLE1', 'GEOM',
    MDSYS.SDO_DIM_ARRAY
    (MDSYS.SDO_DIM_ELEMENT('X', 100000, 200000, 0.005000000),
    MDSYS.SDO_DIM_ELEMENT('Y', 100000, 200000, 0.005000000)
    ), null
    COMMIT;
    SELECT * FROM USER_SDO_GEOM_METADATA;
    INSERT INTO TABLE1 VALUES('TEST',SDO_GEOMETRY
    (2003,null,null,SDO_ELEM_INFO_ARRAY(1, 1003, 1),
    SDO_ORDINATE_ARRAY
    (180000.00,120000.00,
    185000.00,120000.00,
    185000.01,125000.00,
    180000.00,125000.00,
    180000.00,120000.00)));
    COMMIT;
    CREATE INDEX TABLE1_SX ON TABLE1 ( GEOM ) INDEXTYPE IS MDSYS.SPATIAL_INDEX;
    CREATE TABLE VALIDATION_RESULTS (
    SDO_ROWID ROWID,
    STATUS VARCHAR2(2000)
    PROMPT #############################
    CALL SDO_GEOM.VALIDATE_LAYER_WITH_CONTEXT('TABLE1','GEOM','VALIDATION_RESULTS');
    RESULTS
    CREATE TABLE succeeded.
    0 rows deleted
    1 rows inserted
    COMMIT succeeded.
    TABLE_NAME COLUMN_NAME DIMINFO SRID
    TABLE1 GEOM MDSYS.SDO_DIM_ELEMENT(MDSYS.SDO_DIM_ELEMENT(X,100000,200000,0.005),MDSYS.SDO_DIM_ELEMENT(Y,100000,200000,0.005))
    1 rows selected
    1 rows inserted
    COMMIT succeeded.
    CREATE INDEX succeeded.
    CREATE TABLE succeeded.
    Error starting at line 36 in command:
    CALL SDO_GEOM.VALIDATE_LAYER_WITH_CONTEXT('TABLE1','GEOM','VALIDATION_RESULTS')
    Error report:
    SQL Error: ORA-13203: failed to read USER_SDO_GEOM_METADATA view
    ORA-13205: internal error while parsing spatial parameters
    ORA-13249: Stmt-Execute Failure: SELECT DBMS_ASSERT.SCHEMA_NAME( :1 ) FROM DUAL
    ORA-29400: data cartridge error
    ORA-44001: invalid schema
    ORA-06512: at "SYS.DBMS_ASSERT", line 243
    ORA-06512: at "MDSYS.SDO_3GL", line 665
    ORA-06512: at "MDSYS.SDO_GEOM", line 3770
    ORA-06512: at line 1
    13203. 00000 - "failed to read USER_SDO_GEOM_METADATA view"
    *Cause:    An error encountered while trying to read the USER_SDO_GEOM_METADATA
    view.
    *Action:   Check that USER_SDO_GEOM_METADATA has an
    entry for the current geometry table.

    Works for me on Windows XP 11.1.0.7
    You should contact Oracle support about this type of error.
    SQL> CALL SDO_GEOM.VALIDATE_LAYER_WITH_CONTEXT('TABLE1','GEOM','VALIDATION_RESULTS');
    Call completed.
    SQL> select * from VALIDATION_RESULTS;
    SDO_ROWID     STATUS
    Rows Processed <1>
    1 row selected.

  • Macbook pro fails to read sd card with movies recorded on it, any ideas? I can view them in the video camera so know they are there somewhere. I am now thinking I should have formatted or initialised the new card before using it.

    My macbook pro is failing to read a new sd card with movies recorded on it. Any ideas please? A previously used SD card has downloaded without problems. I have tried using a card reader as well as downloading from the video camera itself, neither works.
    I can view the latest recordings on the video camera so know they are there somewhere. I am now thinking I should have formatted or initialised the new card before using it but didn't think of that at the time. Obviously don't want to do this now as it will wipe the movies.

    Hi and Welcome to the Forums!
    From everything you've described, you've done everything possible. Hence, I recommend you seek out your warranty support.
    Good luck and let us know.
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Crystal Report: failed to read parameter object

    Hello -
    I have a report that consists of numerous static parms and one dynamic parm. I can save the report to my desktop but cannot save it to BO 3.1 CMC Personal Folder (or any folder for that matter).
    The dynamic parm does not use a LOV based on Business Views. A table associated with the same data source as the stored proc on which the Report itself is based provides two fields - a code field that is used in the Value and a name field which is used in the Description.
    The specific error is:
    "Failed to read data from report file <file name> Reason: failed to read parameter object".
    All the normal things have been checked -
    - VERIFied the database
    - Ensured 'No Printer' is checked
    - Ran the report (successfully) on the desktop (locally)
    The data source is Oracle. The report can be saved to the CMC and run without problem if the dynamic parameter is deleted from the report.
    The version of Crystal Reports is CR 2008 vers 12.04
    I've seen numerous postings regarding LOVs and Business Views, especially surrounding security issues, but I've yet to see a note about a dynamic parameter based on a table....
    Thanks

    Hi!
    Thanks for the response....
    Re: check the "Enable Repository Refresh" checkbox
    The SAVE failed with the Failed to read data from report file error.
    When I went to the Bus View mgr, I found the LOV. It was set as a cascading prompt (not what I wanted when I set the parm) and could not edit it. No permissions.
    I went back to the report and tried to edit the parm into which I had stuffed the LOV I can't touch in Bus Views, and found I can't open in the report canvas without logging into the repository.... which I did.... and went to edit the parm...can't open in the report canvas without logging into the repository.... which I did.... and went to edit the parm... You get the idea....
    What I had WANTED to do is take a table with 2 fields in it - a NAME and a CODE field, create a dynamic parm, use the CODE field as the Value and the NAME field as a description. When I brought in the LOV, it came in as a cascading LOV... I needed to have the Description as the user fronted piece... but I can't seem to get there from here.....

  • T61 DVD/CD-RW drive fails to read and crashes

    Hello Everyone, I hope people still visit this area of the forums!
    I've highlighted and bolded the symptoms to make them easier to find.
    I recently purchased a T61 6457-C15 on eBay, and have been in the proccess of setting up and customizing it to suit my tastes. When I recieved the laptop, it looked as though Windows had been restored to original factory state, plus some free software, so I proceeded under that assumption. First I used Windows Update to download all the updates that it could find including IE8. I wanted to have an anti-virus program running on my computer before I used a browser to access the internet. I ran IE8 and went straight to the Microsoft Security Essentials website and downloaded the Install program. At this point I tried to remove the pre-installed and expired Norton Internet Security using the built-in uninstall, but it failed. A message box popped saying that I needed to put the Norton installation disc in the CD-ROM drive so that the uninstall program could find a Norton support file. My computer did not come with any discs, but my mothe had bought Norton 2008, so I took that disc and put it in the drive. The drive started spinning right away, and the uninstall program found the file it was looking for in a few seconds. The support file directed me to the Norton website to get their removal tool, which removed Norton from my system in short order. Afterwards, I ran the Microsoft Security Essentials install program and got MSE running on my computer before doing anything else.
    Then I went to the Lenovo support website and had it auto-detect my system. That took me to the support page for my system, where I went to the "Downloads and Drivers" page. I downloaded Access Connections and ThinkVantage Toolbox for Vista 32-bit (my OS is Vista Business 32-bit). I then used Lenovo System Update to retrieve all the updates it deemed neccessary from Lenovo, including those for itself and system components, both software and firmware. There were 35 or more updates suggested, and I trusted the software, so I started downloading them all. I'm not sure, but I think that a DVD/CD-RW drive update was included in the list, but I can't remember if it was auxiliary software, drivers or firmware. After Lenovo System Update was convinced that it had all the neccessary updates, I downloaded Revo Uninstaller and set about removing uneccassary and unwanted programs from my computer and trimming the startup list. I did not touch any Windows or ThinkVantage components, and I searched each program online, so I'm sure that I did not delete or disable any drivers or system files, or anything from Lenovo. I mainly removed Apple products and non-functional software from my system, including an integrated camera driver (my system does not have an integrated camera) and third-party programs that were already missing files or otherwise inoperable when I got my computer. Up to this point I had been using a gigabit ethernet connection to download software; I had not used the DVD/CD-RW drive except for the one time I specified earlier.
    Now that I had my system set up to my liking, including personalization and power settings, I started to install my first program: Command & Conquer the First Decade from a DVD-ROM. When I put the disc in the drive and closed it, it took a few seconds for the drive to spin up, and once it did, it was constantly running at high speed and I could hear the reader constantly moving back and forth quickly. After a few minutes the disc's install menu finally appeared, so I clicked on the install button. I waited several minutes but nothing happened, so I tried to view the contents of the drive by going to My Computer > DVD/CD-RW drive (D, right clicking and selecting explore from the menu options. When I did that, the address bar of the My Computer window started to fill up with a dark gray progress bar and said "loading (D", I think with the drive or disc name after it. After it took several minutes to fill completely, nothing happened. I waited a few more minutes to see if anything would change, (nothing did,) I clicked on the X button in the top right corner of the window to close it. A few minutes and clicks later, the My Computer window was labeled as (not responding), and the window itself became grayed-out. I started Task Manager and tried to close the My Computer window, but the entire Windows Desktop disappeared along with it, saying that it would attempt to restart. Even Task Manager became non-responsive and quit after closing My Computer. After a few minutes of staring at my background (and nothing else), I ejected the disc, and Windows Desktop reappeared immediately and acted as if nothing had ever been wrong.
    I checked Device Manager, but neither the DVD/CD-RW drive nor any of the ATA controllers were flagged; in fact they all said they were working properly with up-to-date drivers. I ran the ThinkVantage Toolbox diagnostics on the drive using a data CD, a music CD and a different DVD-ROM, but in each case the drive failed the tests and a message box popped-up saying that the discscould not be read because they were scratched or there was a hardware problem. I checked the discs both before I put them in and after I took them out, and they were not scratched; also, all of the discs are publisher-manufactured from a software or music company. I restarted my computer, booted the Rescue and Recovery option and Ran PC-Doctor from there. I ran the same drive read tests with the same failure results. The entire time the drive was behaving the same way it had when it first failed to read a disc. Next I removed and cleaned the drive both inside and out with a can of compressed air; I also cleaned the ultrabay itself. Finally I tried fixing the problem with Microsoft Fix It, but when it automatically ejected the drive and i put a disc in, the disc became trapped in the drive and Windows froze up like before. I had to restart Windows twice (once with a BSOD) in order to get the disc out. When the disc was removed the computer went back to normal operation once again.
    Please help me, my DVD/CD-RW drive is a Matshi ta UJDA775, my operating system is Windows Vista Business and my T61's model number is 6457-C15. I have tried all the troubleshooting fixes and none have worked. I have tried updating drivers and using diagnostic software and they have not worked. I have tried disabling drag-to-disc burning and it has not worked. I have treid removing and cleaning the drive and that has not solved my problem. I did notice that the driver for the "Intel(R) ICH8M-E/M SATA AHCI controller" is the only related driver that can be rolled back, so maybe that might fix it. I'm also wondering if a firmware change caused this, and if so, if there is any way I can undo that. The only other fix I've heard of that I haven't tried is editing the registry, but I'm hesitant to do that. I haven't tried booting from the CD drive because I have no bootable CDs and I'm worried that my computer might get stuck in that mode. I'm hoping that someone can tell me what I can do to try to fix this problem, preferably without wrecking my computer. Thank you for taking the time to read my post.
    P.S. Just adding a note; I went through both the Microsoft and Lenovo Update histories and the only related updates I could find were: ThinkPad BIOS update, Easy Eject utility, Intel Matrix Storager Manager driver for Windows (32-bit), and maybe one of the two Intel Chipset Support for Vista updates. I tried rolling back the AHCI driver but it had no effect.
    Solved!
    Go to Solution.

    Well, my problem is fixed, and here's how. I had some trouble figuring out how to contact Lenovo technical support; online options directed me to the IBM support website, which was clearly designed for businesses. Selecting the "Call technical support" option on the Lenovo support website and then choosing my country gave me a 24/7 hotline number. After waiting about five minutes on hold, a nice young fellow by the name of "Tyrese" answered (I maybe misspelling his name), but the connection was so bad that we could barely hear each other. Although he semed eager to help, when I told him my problem the first things he suggested were simple, like cleaning the drive, However, when I told him all of my efforts, described above, to fix the problem myself and read him the log from the Rescue and Recovery diagnostic program, after he checked the error codes against his computer database he promptly replied that the only fix was to send out a new drive. I was happy to have gotten such a successful resolution to a support call in less than fifteen minutes; apparently, all the work I had done trying to solve the problem myself had paid off in a way. Unfortunately, although I had tried to spell out my address for him, some of it got left off of the address label, which caused some trouble in receiving the new drive. Once I got it, I installed it using the uninstall & remove (old drive), shut down, start up, insert & install (new drive) method that I referenced earlier in this topic. I've been using the new drive since then without any trouble, so I guess that the only fix was to replace the drive. Also, I noticed that the new drive was a Hitachi, perhaps a T400/410 or T500/510 Ultrabay Slim drive, which should help me avoid the problems that other users were having with the older Matshi-ta drives. I hope this description helps anyone else having a problem with the optical drives on the T61/61p.

  • Failed to read WSDL - connectException and unknownHostException

    Hi Guys,
    I am starting out with a new installation of SOA Suite 10g on my local windows machine.
    I've tested out a simple BPEL process deployment and all works fine.
    My next step is to test an Invoke of an external webservice: http://www.w3schools.com/webservices/tempconvert.asmx?WSDL
    Initially I had to setup proxy of my Jdev installation to get JDev to look at this WSDL (could not validate the WSDL without this):
    Proxy: 10.176.227.40
    Port: 8080
    Exceptions: |D701341|d701341|localhost
    But when I tried to deploy the BPEL process from jDev, I got an UnknownHostException:
    BUILD FAILED
    C:\jdev10g\jdev\mywork\NetworkRailSHLApplication\Pilot2\build.xml:78: A problem occured while connecting to server "localhost" using port "8888": bpel_Pilot2_1.0.jar failed to deploy. Exception message is: ORABPEL-05215
    Error while loading process.
    The process domain encountered the following errors while loading the process "Pilot2" (revision "1.0"): Failed to read wsdl.
    Error happened when reading wsdl at "C:\soa10gdemo\bpel\domains\default\tmp\.bpel_Pilot2_1.0_e0b22fe325615e2ac6bf1710ef089616.tmp\ExternalWS.wsdl", because "Error reading import of file:/C:/soa10gdemo/bpel/domains/default/tmp/.bpel_Pilot2_1.0_e0b22fe325615e2ac6bf1710ef089616.tmp/ExternalWS.wsdl: Failed to read wsdl file at: "http://www.w3schools.com/webservices/tempconvert.asmx?WSDL", caused by: java.net.UnknownHostException. : www.w3schools.com: www.w3schools.com".
    Make sure wsdl exists at that URL and is valid.
    After searching a bit on the forums, found out that I might have to fiddle with my HOSTS file: C:\WINNT\system32\drivers\etc\hosts
    I added the following line to my hosts file:
    127.0.0.1 localhost
    216.128.29.26     www.w3schools.com
    This time when I tried to deploy the same process, got a ConnectException:
    BUILD FAILED
    C:\jdev10g\jdev\mywork\NetworkRailSHLApplication\Pilot2\build.xml:78: A problem occured while connecting to server "localhost" using port "8888": bpel_Pilot2_1.0.jar failed to deploy. Exception message is: ORABPEL-05215
    Error while loading process.
    The process domain encountered the following errors while loading the process "Pilot2" (revision "1.0"): Failed to read wsdl.
    Error happened when reading wsdl at "C:\soa10gdemo\bpel\domains\default\tmp\.bpel_Pilot2_1.0_e0b22fe325615e2ac6bf1710ef089616.tmp\ExternalWS.wsdl", because "Error reading import of file:/C:/soa10gdemo/bpel/domains/default/tmp/.bpel_Pilot2_1.0_e0b22fe325615e2ac6bf1710ef089616.tmp/ExternalWS.wsdl: Failed to read wsdl file at: "http://www.w3schools.com/webservices/tempconvert.asmx?WSDL", caused by: java.net.ConnectException. : Connection timed out: connect".
    Make sure wsdl exists at that URL and is valid.
    I can visit view WSDL from my Internet Explorer with the same proxy config as mentioned above.
    I am not sure how do I get my local SOA Suite to talk to the external web service.
    Could someone point me in the right direction please?
    Thanks,
    Ravi

    I am also facing the similar kind of issue. Please suggest a solution

  • Hyperion Smart View Fusion Failed to create Smart View Extension Activator

    Receving error with Office 2007, SP2 XP with SP3.
    We have done a few installs and there seems to be a problem here and there which i was able to resolve but not this one?
    exact error is upon launch of Excel , word 2007.
    Failed to create Smart View Extension Activator object. Verify that it is registered properly (-2147221164).
    Please help or suggest a solution:
    Thank you.

    Each time when I start Excel, msg box appear "Error, Failed to create Smart View Extension Activator object. Verify that it is registered properly.
    Please install the following update from Microsoft Corp.
    "MS Office 2003 update (office2003-KB907417-FullFile-ENU.exe)"
    After installing this suggested update Smart-view causes Excel crash every time it is opened.
    Smart View version 11.1.2.1.102
    MS Office 2003 SP3, Internet Explorer 7
    NOTE : Smatview functionality is working fine, but this error message is extremely annoying the users.
    We have already installed .NET 4.0 but the issue still exists.

  • Failed to read data from report file Reason: The table could not be found.

    BO Enterprise XI R2, cannot publish crystal reports using the publishing wizard.
    Failed to read data from report file Reason: The table could not be found.
    Any ideas to get around this would really help out.
    Regards

    Connection used Views, ODBC System DSN is setup properly.
    Approach for import from business view manager and import wizard.  both methods failed to import the Business View and underlying reports.
    I figure I may have imported the Business View wrong? From Business View Manager I exported from my dev server then imported to prod server.
    Apparently I learned exporting my business view also includes the Data Connections that the Business Views are dependent upon.
    So which ever folder you specify it copies it there. Originally the all Data Connections Resides on the root folder. To return it to the original location. I deleted what I had exported. Exported this time to the root folder, then only deleted the business views, foundation, elements. Then exported again to the folder where I intended then only deleted the Data Connection.
    Makes any sense? So I then had to re point the business views and all the dependent objects to the data connection that resides in the root folder.
    I tested the connection, it works fine. I properly updated my crystal reports to the business view in production. Did a sample extract it works as expected.
    However when i try to publish, either from Crystal or Publish wizard i get the same error?
    As a work around i am thinking, after updating the business view in the crystal reports, shall i re map the fields?? or reexport the business views again?
    Any help will be surely appreciated.

  • ERROR: Failed to retrieve character view of the report.

    While trying to get HTML representation of report I am getting following error trying to get report from crystal reports web services XI R2 (Product: 11.5):
    Source code to reproduce:
                        ViewSupport htmlViewSupport = new ViewSupport();
                        htmlViewSupport.setOutputFormat(OutputFormatType.HTML);
                        htmlViewSupport.setViewType(ViewType.CHARACTER);
                        htmlViewSupport.setViewMode(ViewModeType.REPORT);
                        RetrieveCharacterView retCharView = new RetrieveCharacterView();
                        retCharView.setViewSupport(htmlViewSupport);
                        retBOData = new RetrieveData();
                        retBOData.setRetrieveView(retCharView);
                        boDocInfo = oReportEngine.getDocumentInformation(documentCUID, null, null, null, retBOData);
                        XMLView oBinaryView = (XMLView) boDocInfo.getView();
                        docContents = ((String) oBinaryView.getContent()).getBytes();
    in contrary this works ok (getting PDF):
                        RetrieveBinaryView oRetrieveBinaryView = new RetrieveBinaryView();
                        ViewSupport oViewSupport = new ViewSupport();
                        oViewSupport.setOutputFormat(OutputFormatType.PDF);
                        oViewSupport.setViewType(ViewType.BINARY);
                        oViewSupport.setViewMode(ViewModeType.DOCUMENT);
                        oRetrieveBinaryView.setViewSupport(oViewSupport);
                        oRetrieveData.setRetrieveView(oRetrieveBinaryView);
                        // retrieve binary data
                        boDocInfo = oReportEngine.getDocumentInformation(documentCUID, null, null, null, oRetrieveData);
                        documentCUID = boDocInfo.getDocumentReference();
                        BinaryView oBinaryView = (BinaryView) boDocInfo.getView();
                        docContents = oBinaryView.getContent();
    Error:
    Failed to retrieve character view of the report. (Error: WRE 02505)
    AxisFault
    faultCode: Server.generalException
    faultSubcode:
    faultString: Failed to retrieve character view of the report. (Error: WRE 02505)
    faultActor:
    faultNode:
    faultDetail:
         {reportengine.dsws.businessobjects.com}DSWSException:
         <ID>2505</ID>
         <Message>Failed to retrieve character view of the report. (Error: WRE 02505)</Message>
         <Operation>reportengine.dsws.businessobjects.com/getDocumentInformation</Operation>
         <CallStackTrace>com.businessobjects.dsws.wsc.common.axis.WSExceptionFactory$InvalidViewSupport
         at com.businessobjects.dsws.wsc.reportengine.DocumentAgent.validateCharacterViewSupport(Unknown Source)
         at com.businessobjects.dsws.wsc.reportengine.DocumentAgent.handleGetCharacterView(Unknown Source)
         at com.businessobjects.dsws.wsc.reportengine.DocumentAgent.handleRetrieveData(Unknown Source)
         at com.businessobjects.dsws.wsc.reportengine.DocumentAgent.handleActions(Unknown Source)
         at com.businessobjects.dsws.wsc.reportengine.CrystalReportEngineSoapImpl.getDocumentInformation(Unknown Source)
         at com.businessobjects.dsws.reportengine.ReportEngineSoapImpl.getDocumentInformation(Unknown Source)
         at com.businessobjects.dsws.reportengine.ReportEngineSoapSkeleton.getDocumentInformation(Unknown Source)
         at sun.reflect.GeneratedMethodAccessor88.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.apache.axis.providers.java.RPCProvider.invokeMethod(RPCProvider.java:402)
         at org.apache.axis.providers.java.RPCProvider.processMessage(RPCProvider.java:309)
         at org.apache.axis.providers.java.JavaProvider.invoke(JavaProvider.java:333)
         at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:71)
         at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:150)
         at org.apache.axis.SimpleChain.invoke(SimpleChain.java:120)
         at org.apache.axis.handlers.soap.SOAPService.invoke(SOAPService.java:481)
         at org.apache.axis.server.AxisServer.invoke(AxisServer.java:323)
         at org.apache.axis.transport.http.AxisServlet.doPost(AxisServlet.java:854)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
         at org.apache.axis.transport.http.AxisServletBase.service(AxisServletBase.java:339)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:237)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
         at com.businessobjects.dsws.wsc.common.axis.FlashFilter.doFilter(Unknown Source)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:186)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:214)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:198)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:152)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:137)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:929)
         at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:160)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:799)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:705)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:577)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683)
         at java.lang.Thread.run(Thread.java:534)
    </CallStackTrace>
         <CauseException>com.businessobjects.dsws.wsc.common.axis.WSExceptionFactory$InvalidViewSupport</CauseException>
         exceptionName: com.businessobjects.dsws.DSWSException
    Failed to retrieve character view of the report. (Error: WRE 02505)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
         at java.lang.Class.newInstance0(Class.java:355)
         at java.lang.Class.newInstance(Class.java:308)
         at org.apache.axis.encoding.ser.BeanDeserializer.<init>(BeanDeserializer.java:125)
         at org.apache.axis.encoding.ser.BeanDeserializer.<init>(BeanDeserializer.java:111)
         at com.businessobjects.dsws.DSWSException.getDeserializer(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at org.apache.axis.encoding.ser.BaseDeserializerFactory.getSpecialized(BaseDeserializerFactory.java:176)
         at org.apache.axis.encoding.ser.BaseDeserializerFactory.getDeserializerAs(BaseDeserializerFactory.java:117)
         at org.apache.axis.encoding.DeserializationContextImpl.getDeserializer(DeserializationContextImpl.java:466)
         at org.apache.axis.encoding.DeserializationContextImpl.getDeserializerForType(DeserializationContextImpl.java:481)
         at org.apache.axis.message.SOAPFaultDetailsBuilder.onStartChild(SOAPFaultDetailsBuilder.java:172)
         at org.apache.axis.encoding.DeserializationContextImpl.startElement(DeserializationContextImpl.java:963)
         at org.apache.xerces.parsers.AbstractSAXParser.startElement(Unknown Source)
         at org.apache.xerces.impl.XMLNSDocumentScannerImpl.scanStartElement(Unknown Source)
         at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source)
         at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
         at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
         at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
         at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
         at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
         at javax.xml.parsers.SAXParser.parse(SAXParser.java:395)
         at org.apache.axis.encoding.DeserializationContextImpl.parse(DeserializationContextImpl.java:242)
         at org.apache.axis.SOAPPart.getAsSOAPEnvelope(SOAPPart.java:538)
         at org.apache.axis.Message.getSOAPEnvelope(Message.java:376)
         at org.apache.axis.client.Call.invokeEngine(Call.java:2583)
         at org.apache.axis.client.Call.invoke(Call.java:2553)
         at org.apache.axis.client.Call.invoke(Call.java:2248)
         at org.apache.axis.client.Call.invoke(Call.java:2171)
         at org.apache.axis.client.Call.invoke(Call.java:1691)
         at com.businessobjects.dsws.reportengine.ReportEngineSoapStub.getDocumentInformation(Unknown Source)
         at com.businessobjects.dsws.reportengine.ReportEngine.getDocumentInformation(Unknown Source)
         at com.mobitel.reports.CrReportPdfGenerator.getPdf(CrReportPdfGenerator.java:289)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at org.apache.axis2.rpc.receivers.RPCUtil.invokeServiceClass(RPCUtil.java:194)
         at org.apache.axis2.rpc.receivers.RPCMessageReceiver.invokeBusinessLogic(RPCMessageReceiver.java:102)
         at org.apache.axis2.receivers.AbstractInOutMessageReceiver.invokeBusinessLogic(AbstractInOutMessageReceiver.java:40)
         at org.apache.axis2.receivers.AbstractMessageReceiver.receive(AbstractMessageReceiver.java:100)
         at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:176)
         at org.apache.axis2.transport.http.HTTPTransportUtils.processHTTPPostRequest(HTTPTransportUtils.java:275)
         at org.apache.axis2.transport.http.AxisServlet.doPost(AxisServlet.java:133)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:647)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:269)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:172)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:108)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:174)

    I am not using HTML renderer but PDF renderer. See code below:
                   String format = "pdf";
                   RetrieveData oRetrieveData = null;
                   oRetrieveData = new RetrieveData();
                   if (format == "pdf") {
                        // Get a Document info object in character view format.
                        RetrieveBinaryView oRetrieveBinaryView = new RetrieveBinaryView();
                        ViewSupport oViewSupport = new ViewSupport();
                        oViewSupport.setOutputFormat(OutputFormatType.PDF);
                        oViewSupport.setViewType(ViewType.BINARY);
                        oViewSupport.setViewMode(ViewModeType.REPORT_PAGE);
                        oRetrieveBinaryView.setViewSupport(oViewSupport);
                        oRetrieveData.setRetrieveView(oRetrieveBinaryView);
                        // retrieve binary data
                        boDocInfo = oReportEngine.getDocumentInformation(documentCUID, null, null, null, oRetrieveData);
                        documentCUID = boDocInfo.getDocumentReference();
                        BinaryView oBinaryView = (BinaryView) boDocInfo.getView();
                        docContents = oBinaryView.getContent();
    In the mean time I already figured out that I need to use ViewModeType.REPORT_PAGE as you sugested.
    Problem we are having now is that PDF rendering takes at best 6 seconds on pageserver.exe to render report. But if we render it on CR Developer, it renders imediately.
    Report is referencing stored procedure on oracle.

  • What does this Adobe Muse error message mean: MuseJSAssert: Error calling slector function:SecurityError: Failed to read the 'contentDocument' property from 'HTMLIFrameElement': Blocked a frame with orign "null" from accessing a cross-origin frame.

    So what is up with this error message in Muse?
    MuseJSAssert: Error calling slector function:SecurityError: Failed to read the ‘contentDocument’ property from ‘HTMLIFrameElement’: Blocked a frame with orign “null” from accessing a cross-origin frame.

    This is a genuine security error generated by the browser when viewing a page with iFrame content locally.
    Please refer to Zak's reply in the following thread: https://forums.adobe.com/message/6496180#6496180
    Cheers,
    Vikas

  • Failed to Read Parameter Object

    We are new working with Crystal Server.    I cannot publish any reports that have parameters.   I receive an error message that states "Failed to Read Parameter Object".      I have tried all 3 methods for publishing reports (using CMC, using the wizard, saving directly from crystal design) and receive the same error message.   I have no problems publishing reports that do not have parameters.    Thanks for helping resolve this issue.
    Regards,
    Jeff

    Few things to clarify and heck:
    - What is the version of CR Reports Server?
    - Are your parameters List of Values or just regular text, date parameters?
    - Verify that ListofValuesJobServer is up and running in CCM (Central Configuration Manager)
    - The best practice for List of Values Paramters is to use Business View Manager.
    Regards,
    Sinan

  • Failed to read data from report file, failed to read parameter object

    Error message when doing a u201CSchedule List of Valuesu201D
    failed to read data from report file,
    c:\docume~1\user........
    failed to read parameter object
    Earlier in the day it worked just fine nothing had been changed.
    I have admin right on the windows server and in central management console
    Can someone please help with this issue.

    Hi Glenn
    Please let us know the following:
    1.What is the exact version of Crystal Reports Designer?
    2.What is the version of Business objects Enterprise installed on the machine?
    3.Are reports based on Business views,Deski,Webi?
    4.Are the reports migrated from older version of Crystal Reports to new Version?
    Thanks
    Shraddha

Maybe you are looking for

  • Gain or loss due to foreign currency exchange rate in Travel Management

    Hi Experts, I am facing some issues in foreign currency surrender in Travel Management. Example:- An employee goes on a foreign trip in which he takes advance in USD. After returning from the trip, if any USD balance is there then he returns it to co

  • How do I extract email from a form and send the PDF to that user?

    How do I extract email from a form and send the PDF to that user?

  • How do I invoke decision service of business rules in soa suite 11g?

    How do i invoke the decision service of my business rules in SOA 11g. I have an invoke activity in my bpel process which invokes my decision service from the dictionary BUT it fails saying that the "name" attribute (NCNAME type) has invalid value whi

  • System command execution.

    I know this will not make my program portable, but how can you execute system commands on windows xp, 2000, 98se, and *nix? Is there a class that will allow access to this? I'm wanting to write a front end for cdrecord, and a few others.

  • S750s - can't handle high volume :(

    Hi, I've had this problem for ages now, but have been too busy with work to do anything about it, but now that I've moved into my new house, I am aching to blow the roof off (metaphorically speaking) The problem? Crank the volume on the s750s anywher