Deployment of a OWB Map-ORA-06550

I created a map that uses two source modules that
point to two different Oracle schemas and instances.
The two tables from which data is imported are PAT_RESULTS and PATIENT tables. Both tables are in the schema CCDBA. One table
STAFF_ALT_ID is in the schema CCDEV.
The target data for the map is a UNIX file.
The File connector from the target to the CCDEV schema
is FILE_CONNECTOR.
The file connector from the target to the CCDBA schema
is FILE_CONNECTOR_ODOULS.
When I deploy the map I get ORA-06550, the Deployment
Manager cannot find the PAT_REULTS table.
When I look at the package body, the file connector referenced for the PAT_RESULTS table is a different
connector than the PATIENT table even though they live in the same schema, i.e. CCDBA.
(See PL/SQL select statement below).
Why can't the deployment manager "see" this table?
Why does PAT_RESULTS have a different file connector?
The meta-data imported for the table,PAT_RESULTS is the same DBlink as the deployment operation.
Any help would be appreciated.
PL/SQL select below
SELECT
"PAT_RESULTS_FILE_CON266982"."FACILITY_ID" "FACILITY_ID",
"PATIENT_FILE_CONNECTOR_ODOULS"."PATIENT_ID" "PATIENT_ID",
"PAT_RESULTS_FILE_CON266982"."RESULT_SEQ" "RESULT_SEQ",
"PAT_RESULTS_FILE_CON266982"."RESULT_VALUE" "RESULT_VALUE",
(TODATE("PAT_RESULTS_FILE_CON266982"."PERFORM_DDT")) "PERFORM_DATE",
"STAFF_ALT_ID_FILE_CONNECTOR"."ALT_STAFF_ID" "ALT_STAFF_ID",
"STAFF_ALT_ID_FILE_CONNECTOR"."SOURCE_SYSTEM" "SOURCE_SYSTEM",
"PAT_RESULTS_FILE_CON266982"."ABNORMAL_FL" "ABNORMAL_FL"
FROM "STAFF_ALT_ID" "STAFF_ALT_ID_FILE_CONNECTOR",
"PATIENT" "PATIENT_FILE_CONNECTOR_ODOULS",
"PAT_RESULTS" "PAT_RESULTS_FILE_CON266982" WHERE ( "STAFF_ALT_ID_FILE_CONNECTOR"."STAFF_ID" = "PAT_RESULTS_FILE_CON266982"."CHART_ID" ) AND
( "PATIENT_FILE_CONNECTOR_ODOULS"."PAT_SEQ" = "PAT_RESULTS_FILE_CON266982"."PAT_SEQ" ) AND
( "PAT_RESULTS_FILE_CON266982"."LABEL_SEQ" IN ( 1013 , 1014 , 1015 , 1016 ) );

Hi,
You ca n do it by changing the load type of target table.
As you said, the conditions will be different for each load type insert, update and delete.
The flow will be in the following way.
Source ---> splitter (Here you need to define the conditions and separate the insert rows, delete rows, and update rows.) ---> Now drag the target table 3 times and give the name as table_insert_mode, table_delete_mode and table_update_mode.
Now link the records from splitter with insert logic to table_insert_mode. and make sure the load type of target table as insert.
Now do this for remaining modes, that are delete and update. And make sure that, the load types will be delete and update.
Now, the mapping will do three types of opeations can be possible on each row according to the defined logic.
Hope this helps you.
Thank you,
Regards,
Gowtham Sen.

Similar Messages

  • Error while deploy mapping ora-06550 table or view does not exist

    Hi everyone,
    i have a target source 'U_BCK' that cointains some Oracle table.
    I have also created a target schema 'BCK_OWNER' where i create some dimensions and cubes with mappings.
    My mappings connect some table from U_BCK with dimension or cube from BCK_OWNER.
    My repository owner is called 'rep_owner' and i used this user to create every metadata.
    Now i'm trying to deploy, and i don't have any problem until deploying mappings. When i try to deploy mappings i get some errors like ora-06550,ora-00942 table or view does not exist and statement ignored.
    Please help me and sorry for my english...
    Thanks,
    Alex.

    The mapping, that drives the data from one table to another is deployed to the database as a PL/SQL package. When deploying your mapping fails, it most often means that the resulting PL/SQL package doesn't compile in the database.
    Using Oracle SQL Developer (or Toad, SQL Navigator or any other tool) connect to the schema on the database where you have deployed the mapping. Open the pl/sql package and compile it. That should show you the place where the compilation fails, and give you an idea as to what table it can not find. Otherwise, in SQLPLUS, you can simply give the following command:
    ALTER PACKAGE THE_PACKAGE_NAME_GOES_HERE compile body;
    show errors;
    As the database user who owns the source tables, make sure to issue a GRANT command for each of the source tables, granting SELECT access to the database user who owns the mapping:
    grant select on TABLENAME to TARGETSCHEMA.
    hope this helps
    Borkur

  • Mapping: ORA-04052 Remote Object not found

    Hi,
    I created a source module with a table reading from an external Oracle database. I can see data so the connection seems to work.
    In the target module a mapping trying to read from this table can´t be deployed with this errors message:
    - ora-06550: package body, line 0, column 0: ORA 04052: Error while trying to find the remote object: <name of the object> ....... ora-02019: connection description for remote-database not found.
    An equal internal mapping, not adressing an external database, works find.
    Any idea?
    Thanks so much.
    Georg

    oh, of course.
    I could not find dblink, saw some source information. What section/s is /are to be checked?
    I find code like
    SELECT
    /*+ NO_MERGE */
    /* OBJSTAMM.INOUTGRP1 */
    "OBJSTAMM"."OBJEKTNUMMER" "OBJEKTNUMMER"
    FROM
    "VMAN30M"."OBJSTAMM"@"PDORA06@QUELLE_VISMAN_LOCATION" "OBJSTAMM"
    Is there a way to find out the correct "from" path?
    Thanks Georg
    Edited by: georgo on 02.05.2011 16:34

  • Mapping deploy : ORA 06550 PACKAGE BODY... 101031:insufficient privileges

    Hi All,
    I am using OWB11.2,
    When i deploying a very simply mapping.
    i met the following error
    ORA 06550 PACKAGE BODY line 15 column 13: PL/SQL: 101031:insufficient privileges
    ORA 06550 PACKAGE BODY line 11, column 2: PL/SQL: SQL statement ignored
    i have grant source's 'select' privilege to target schema
    i have add the target schema to owb user group and from 'security' i tick all privllege to target schema
    don't know what else privilege do i need to add to target schema.
    Thanks for you attention.

    Hi,
    if your error statement is
    FROM
    "SCHEMA_SOURCE"."TABLE_NAME_SOURCE" "ALIAS"
    then you need direct grant on object "TABLE_NAME_SOURCE" from "SCHEMA_SOURCE"-user to target user (package owner).
    GRANT SELECT /* ALL */ ON "SCHEMA_SOURCE"."TABLE_NAME_SOURCE" TO package_owner.
    Best Regards,
    IM
    Edited by: user9014055 on 21.02.2012 06:26

  • Mapping with Match and Merge operater giving ORA-06550 error while deploy..

    Created a simplet mapping to source from Customer table to tstcustomer table thru' Match and Merge operator. The mapping validated successful but giving ORA-06550 line x column y error while deploying the mapping.
    It is a simple mapping consisting of source Customer table, Match and Merge operator, tstcustomer target table.
    Could anyone advise me on how to resolve this?

    The test mapping basically consists of :
    source table - sh.customers
    target table - tstcustomers (similar to sh.customers)
    Match-Merge operator.
    The mapping validation was successful but when attempt was made to deploy, its giving errors starting with ORA-06550.
    I saved the code and executed thru' SQL Plus and the error details are as follows:
    SQL> show errors;
    Errors for PACKAGE BODY MMTEST4:
    LINE/COL ERROR
    594/6 PL/SQL: Statement ignored
    594/37 PLS-00306: wrong number or types of arguments in call to 'RTRIM'
    601/6 PL/SQL: Statement ignored
    601/36 PLS-00306: wrong number or types of arguments in call to 'RTRIM'
    1017/655 PL/SQL: SQL Statement ignored
    30
    1020/27 PL/SQL: ORA-00942: table or view does not exist
    2163/6 PL/SQL: Statement ignored
    2163/43 PLS-00201: identifier 'CUSTOMERS_0_CUST_GENDER' must be declared
    2170/6 PL/SQL: Statement ignored
    LINE/COL ERROR
    2170/42 PLS-00201: identifier 'CUSTOMERS_0_COUNTRY_ID' must be declared
    2586/655 PL/SQL: SQL Statement ignored
    30
    2589/27 PL/SQL: ORA-00942: table or view does not exist
    SQL>
    For your info, the same mapping without Match-Merge Operator is getting deployed and executed successfully.
    But with Match-Merge operator, after setting Match bins, Match rules, Merge rules etc the mapping is validated successfully but errorring out while deployment.
    Pls advise on how to resolve this.
    I understand that the Match-Merge Operator gives Pl/Sql output from the documentation.
    thanks
    Naren.

  • Mapping Deployment Warning - ORA-06550, PLW-07204

    While deploying a mapping, I receive a warning
    ORA-06550 and PLW-07204: conversion away from column type may result in sub-optimal query plan.
    Any ideas on why this might be happening?
    Thanks!

    Hi,
    I think you are trying to conert the datatype of your column
    Amrit

  • Error while deploying map: ORA-00942 Table or view does not exist

    Hi OWB experts,
    I'm having yet another problem with OWB, this time when I try to deploy a mapping I get this error:
    ORA-06550: line 59, column 3:
    PL/SQL: ORA-00942: table or view does not exist
    DIM_01_ESTCON_MAP
    ORA-06550: line 93, column 3:
    PL/SQL: SQL Statement ignored
    If I open the package that OWB created I see the errors:
    CURSOR "DEDUP_SRC_0_IN2_c" IS
    SELECT
    "DEDUP_INPUT_SUBQUERY2$1"."ESTADOCONEXION_ID" "ESTADOCONEXION_ID",
    "DEDUP_INPUT_SUBQUERY2$1"."ESTADOCONEXION_COD_ESTCON" "ESTADOCONEXION_COD_ESTCON",
    "DEDUP_INPUT_SUBQUERY2$1"."ESTADOCONEXION_DESC_ESTCON" "ESTADOCONEXION_DESC_ESTCON",
    "DEDUP_INPUT_SUBQUERY2$1"."STANDARD_TOTAL_COD_TTL" "STANDARD_TOTAL_COD_TTL"
    FROM
    (SELECT
    DISTINCT
    "DIM_01_ESTCON_MAP"."GET_CONST_CA_0_ESTADOCO" "ESTADOCONEXION_ID",
    "ESTADOS"."ESTADO" "ESTADOCONEXION_COD_ESTCON",
    "ESTADOS"."DESC_EST" "ESTADOCONEXION_DESC_ESTCON",
    "DIM_01_ESTCON_MAP"."GET_TOTAL_C_0_TTLID" "STANDARD_TOTAL_COD_TTL"
    FROM
    "CONSULTA"."ESTADOS"@"PROD@AYADEV_LOCATION" "ESTADOS"
    WHERE
    ( estado LIKE 'EC%' )) "DEDUP_INPUT_SUBQUERY2$1";
    Where AYADEV_LOCATION points to the module/schema/location where my source data is.
    Now, I have defined three modules:
    SOURCE, where I defined the tables and other objects from the original database (source data)
    STAGE, where I am performing all the transformations; here I defined all the maps
    TARGET, this holds the dimensions and fact tables.
    Now all three modules point to different databases. The dblink for AYADEV_LOCATION has been created and shouldn't present any problems. The username that I'm using to log on to the source database is current and I can connect to it through SQL+ or any other program (TOAD, SQLDeveloper).
    What could be happening here? I'm using OWB 10g R2, with Oracle DB 10g R2.
    I'd really appreciate any help you could provide.
    Best Regards,
    --Osvaldo
    [osantos]

    Hi,
    I'm still having problems but I found out why these tables are returning errors. The username I've been given by the DBA to connect to the database is CONSULTA, but this user is only for querying purposes, the actual objects reside on a differente schema, of course, which is PROD. So the line:
    "CONSULTA"."ESTADOS"@"PROD@AYADEV_LOCATION" "ESTADOS"
    raises an exception because the table ESTADOS is not located on that schema, but on PROD. If I query the table from SQL Plus with:
    SELECT *
    FROM [email protected]@AYADEV_LOCATION
    then there's no problem at all.
    Why is this? How do I instruct OWB to point to the correct schema or to avoind fully qualifying the table name?
    Please help me, I'm kind of confused here.
    Best Regards,
    --oswaldo.
    [osantos]

  • OWB mapping deployment error

    Hi I got similar kind of error.. created a simple mapping for one small table.. the generated PL/SQL is as bellow. When I try to deploy the mapping I am getting warnings as shown bellow.. Could any body help me ?
    Warnings:
    ORA-06550: line 0, column 0:
    PL/SQL: Compilation unit analysis terminated
    ORA-06550: line 1, column 14:
    PLS-00304: cannot compile body of 'CNTY_MAP_9' without its specification
    ORA-06550: line 1, column 14:
    PLS-00905: object OWBDATAUSER.CNTY_MAP_9 is invalid
    ORA-06550: line 129, column 1:
    PL/SQL: Declaration ignored
    ORA-06550: line 129, column 24:
    PLS-00201: identifier 'WB_RT_MAPAUDIT' must be declared
    PL/SQL Block :
    -- Note: This generated code is for demonstration purposes only and may
    -- not be deployable.
    CREATE OR REPLACE PACKAGE ""CNTY_MAP_9"" AS
    OWB$MAP_OBJECT_ID VARCHAR2(32) := '';
    sql_stmt VARCHAR2(32767);
    get_abort BOOLEAN := FALSE;
    get_abort_procedure BOOLEAN := FALSE;
    get_trigger_success BOOLEAN := TRUE;
    get_errors NUMBER(22) := 0;
    get_status NUMBER(22) := 0;
    get_error_ratio NUMBER(22) := 0;
    get_global_names VARCHAR2(10) := 'FALSE';
    -- Status variable for Batch cursors
    "VAL_CNTY_9_St" BOOLEAN := FALSE;
    -- Function Main
    -- Entry point in package ""CNTY_MAP_9""
    FUNCTION Main RETURN NUMBER;
    END ""CNTY_MAP_9"";
    CREATE OR REPLACE PACKAGE BODY ""CNTY_MAP_9"" AS
    -- Function "VAL_CNTY_9_Bat"
    -- performs batch extraction
    -- Returns TRUE on success
    -- Returns FALSE on failure
    FUNCTION "VAL_CNTY_9_Bat"
    RETURN BOOLEAN IS
    BEGIN
    EXECUTE IMMEDIATE 'ALTER SESSION ENABLE PARALLEL DML';
    BEGIN
    INSERT
    INTO
    "VAL_CNTY_9"
    ("STATE",
    "CNTY",
    "ABBR",
    "SHORT_DESC",
    "LONG_DESC")
    (SELECT
    /*+ NO_MERGE */
    "VAL_CNTY"."STATE" "STATE",
    "VAL_CNTY"."CNTY" "CNTY",
    "VAL_CNTY"."ABBR" "ABBR",
    "VAL_CNTY"."SHORT_DESC" "SHORT_DESC",
    "VAL_CNTY"."LONG_DESC" "LONG_DESC"
    FROM
    "ISRSVAL"."VAL_CNTY"@"PROTO_SOURCE_9_LOCATION" "VAL_CNTY"
    COMMIT;
    EXCEPTION WHEN OTHERS THEN
    ROLLBACK;
    COMMIT;
    RETURN FALSE;
    END;
    COMMIT;
    RETURN TRUE;
    END "VAL_CNTY_9_Bat";
    FUNCTION Main RETURN NUMBER IS
    get_batch_status BOOLEAN := TRUE;
    BEGIN
    PROCEDURE EXEC_AUTONOMOUS_SQL(CMD IN VARCHAR2) IS
    PRAGMA AUTONOMOUS_TRANSACTION;
    BEGIN
    EXECUTE IMMEDIATE (CMD);
    COMMIT;
    END;
    -- Initialize all batch status variables
    "VAL_CNTY_9_St" := FALSE;
    "VAL_CNTY_9_St" := "VAL_CNTY_9_Bat";
    RETURN get_status;
    END Main;
    END ""CNTY_MAP_9"";
    /

    Is the schema that you are deploying to a member of OWB (security in the global explorer)? Are they registered as a target schema? I have a synonym for created in each of my registered target schemas for the owb.WB_RT_MAPAUDIT object.

  • Ora -06550 error while executing the mapping

    Hi,
    I am using owb client 11.2.0.3 . I have mapping map_emlap_src in this mapping i have import tables from different scehema and i have done one to one mapping on both the table .
    While executing the mapping i got the following error .
    ORA-06550: line 1, column 1082:
    PLS-00302: component 'MAP_EMLAP_SRC' must be declared
    ORA-06550: line 1, column 1062:
    PL/SQL: Statement ignored

    grant execute on owner_name.MAP_EMLAP_SRC to user_name;

  • Deployment error ( ORA - 06550 )

    Oracle Lite 10.2.0.1
    Windows XP 2002
    We have published an application for the Oracle Lite WEB platform. When attempting to deploy to a laptop with a Windows XP operating system, the setup goes until the sync step and then ABENDS with the following error:
    Sync session exception stack trace:
    java.sql.SQLException: ORA-06550: line 1, column 7:
    PLS-00201: identifier 'CONS_EXT.SET_CURR_CLIENT' must be declared
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    ORA-06550: line 1, column 38:
    PLS-00201: identifier 'CONS_EXT.SET_CURR_DEVICE' must be declared
    ORA-06550: line 1, column 38:
    PL/SQL: Statement ignored
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:189)
         at oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java:242)
         at oracle.jdbc.ttc7.Oall7.receive(Oall7.java:554)
         at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java:1478)
         at oracle.jdbc.ttc7.TTC7Protocol.parseExecuteFetch(TTC7Protocol.java:888)
         at oracle.jdbc.driver.OracleStatement.executeNonQuery(OracleStatement.java:2077)
         at oracle.jdbc.driver.OracleStatement.doExecuteOther(OracleStatement.java:1987)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:2704)
         at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:458)
         at oracle.lite.sync.Subscription.executeAndClose(Unknown Source)
         at oracle.lite.sync.HeliosSession.startSession(Unknown Source)
         at oracle.lite.sync.resume.Client$1.run(Unknown Source)
         at oracle.lite.sync.resume.ThreadPool$PoolTask.run(Unknown Source)
    Got anything that will solve this? Is this an internal error in Olite or would this be a problem with our code?
    Message was edited by:
    gotgriz

    Obviously the CONS_EXT package was not getting created. We found that the grants on the database were set up so that SYS.DBMS_LOB was not public(the DBA said the default values were used when the database was created). So when the REPWIZARD attempted to create the CONS_EXT package it couldn't. Changed the SYS.DBMS_LOB to public drop the MOBILEADMIN user and reran the REPWIZARD. The CONS_EXT package was created. The deployment worked.
    Found the solution under Doc ID: Note: 298391.1
    Subject: Synchronization Fails with the Error Cns-9025 ORA-22275

  • ORA-01031: insufficient privileges at runtime of OWB Mapping

    Hi,
    I have a simple OWB mapping which contains 4 reference tables (no external table), then it summarize data and inserts into target table.
    when i executes the mapping, it inserts the records successfully in target table.
    it does not show any error/warning in run time audit browser, BUT
    i can see everyday it is throwing insufficient privilege error in all_rt_audit_map_run_errors (owbruntime schema).
    what could be the reason for this, where/what privilege i should check to resolve this.
    Many other mappings are also running but this is only for one mapping. whats wrong with it?
    Please give me the guidelines.
    Many Thanks

    Hi
    Maybe you should recretae and redeploy the mapping.
    It is possible that the user hasn't got execute privilege on the package which try to run it.
    Karesz

  • Error while runinning OWB map.

    Hi all,
    I have installed OWB 10G. I am trying to run a simple map to load data from EMP table scott schema to another table(emp_test) in test_tgt schema. No transformations or expressions used. But at the time of deploying I get following error.
    ORA-06550: line 83, column 24:
    PLS-00201: identifier 'WB_RT_MAPAUDIT' must be declared
    ORA-06550: line 83, column 1:
    PL/SQL: Declaration ignored
    ORA-06550: line 1, column 14:
    PLS-00905: object TEST_TGT.MAP1 is invalid
    ORA-06550: line 1, column 14:
    PLS-00304: cannot compile body of 'MAP1' without its specification
    ORA-06550: line 0, column 0:
    PL/SQL: Compilation unit analysis terminated
    Any idea why am I getting this & how to correct this.
    Thanks,
    Rekha

    I hope that you are not in OWB10gR2.
    Have you configured the runtime repositories as well as the target schema. when it's not clearly configured thats' the only possibel way to not able to deploy or exec any tasks.
    Make sure the credentials, which your passing into Runtime Repository Connection is valid and accurate with Runtime access user and Runtime Repository Owner....I guess this will help you to get some areas to find out ...
    Or you can create another on Runtime repository connection...

  • Error while running OWB mapping package from sql prompt

    hi all,
    i have deployed my owb mapping in oracle. Now i want to execute this from the sql prompt. the foolowing error is giving when i try to run.
    SQL> DECLARE
    2 RetVal NUMBER;
    3 P_ENV WB_RT_MAPAUDIT.WB_RT_NAME_VALUES;
    4 BEGIN
    5 RetVal := TEST1.TEST_MAP.MAIN ( P_ENV );
    6 END;
    7 /
    RetVal := TEST1.TEST_MAP.MAIN ( P_ENV );
    ERROR at line 5:
    ORA-06550: line 5, column 19:
    PLS-00302: component 'TEST_MAP' must be declared
    ORA-06550: line 5, column 3:
    PL/SQL: Statement ignored
    pls help me for finding the solution.
    -Regards
    Raj Kumar

    You need to split your data and create (at least 5) worksheet targets.
    For example if you have a ROW_NUMBER column you can use for instance a
    Conditional Split for something like:
    ROW_NUMBER % 5 == 0 for Case 1 (excel 1)
    ROW_NUMBER % 5 == 1 for Case 2 (excel 2)
    ROW_NUMBER % 5 == 2 for Case 3 (excel 3)
    ROW_NUMBER % 5 == 3 for Case 4 (excel 4)
    ROW_NUMBER % 5 == 4 for Case 5 (excel 5)

  • OWB Mapping with Flat file as a Target.

    Hi all,
    we have created a mapping in OWB where we have source as a table.and the target is a flat file.
    we have created a file module and we have given the local system path for the file.
    when we deploy and execute the mapping we get the error
    "Invalid Path for target file, check UTL_FILE_DIR database parameter"
    where do we have to specify the path?
    Can any one please help in this reg.
    Thanks in advance.

    The UTL_FILE_DIR is set in your init.ora file for your Oracle DB.
    init.ora parameter doc: http://www.ss64.com/orasyntax/initora.html
    In order to apply the change, you'll need to restart the DB too.

  • Problem in running OWB maps

    Hi ,
    We use DBMS to kick our OWB maps.Previously it worked very fine ..But from near about 2 weeks we are facing problems.
    Problem is though our JOB_QUEUE_PROCESS is set to 8 and even I can see 8 jobs with this_data populated in dba_jobs (means jobs are running as we cannot query DBA_JOBS_RUNNING view to see the no of jobs running as it is taking too much time ) we can see only entry of two of there maps in WB_RT_AUDIT.other maps start only if these two get complete .
    and there is huge time difference between actual job start time and the entry into WB_RT_AUDIT table .
    can any one help us with solution.
    Bcos of this issues load which used to take max 4 hours is now taking 24 hours..
    Thanks & Regards

    I've successfully installed OWF as described in Installation guide (all components are on the sam server).
    But when I deploy a workflow in OWB I get some errors. In the job details
    I find ORA-00942 and RPE-02053. It seems that the workflow repository is missing.
    Are there additional steps for creating a workflow repository?
    Or what is wrong? All installation logs (wf.log and workflow.log) are without errors and with success messages.
    Any idea?

Maybe you are looking for

  • How to Determine Safe Max Memory Limit?

    From what I understand, the amount of memory available to your AIR game on a device will vary depending on how many other apps the user is running, the type of device, etc.  So with this in mind, how does one define a safe max memory limit for a give

  • Ipod touch password is locked

    My daughters ipod touch is locked and she does not know the password.  The laptop that it was originally connected to no longer works.  I have an iphone connected to my computer and was thinking I could hook hers up to mine and some how restore hers?

  • Moving from iPhoto 11' to Aperture 3

    OK everyone, I know this has probably been asked many times before, but after searching previous discussions, I have not been able to find a more recent answer. I want to make sure I am doing this right from to get-go. Basically, I would like to make

  • Inactive internal Hyperlinks

    I publish my portfolio to my desktop then to a hosting site, all the images on the home page are internal hyperlinks but non of them work: www.ollystjohn.co.uk still getting use to the software and anything web based so a simple response would be app

  • How to uninstall BI 10.3.3.0 SILENTLY?

    I have to package BI 10.3.3.0 for mass distribution. I can install it silently with the response file, that's no problem. However, the silent UNINSTALL does not seem to work. I believe this is because it wants the password for the OC4JADMIN account.