0x8007065D data supplied is of wrong type

This is an ongoing problem! I can't make backup/restore(last backup August 2009) Keep getting 'backup failed... ". Data provided is wrong type (0x8007065D), I have tried all the suggested fix (sfc/scannow, performed a clean boot, etc), but nothing helps. Again all my PID is returned in the form of incorrect format or wrong. It took me ages to get to this point so what I can do next?

For what you do the backup (manufacturer and the make and model and how it's connected - internal, USB, network, other)?  How the backup disk is formatted (FAT - 32, NTFS, other)?  How the source drive is formatted (I guess that NTFS but want to be sure)?  Which version of Vista you are using (for example, 32-bit Vista Business SP2)?  What kind of backup are doing (full, incremental and full image,...)?  When the error occurs (when the backup when the backup starts, or when it is about to finish or announcing it is finished)?

Thank you.  I need this information before I can suggest any course of action.

Good luck!

Lorien - MCSA/MCSE/network + / has + - if this post solves your problem, please click the 'Mark as answer' or 'Useful' button at the top of this message. Marking a post as answer, or relatively useful, you help others find the answer more quickly.

Tags: Windows

Similar Questions

  • pls 00382 expression is of the wrong type as he returned a record

    Hi Experts,

    I returned a record type variable in the function below. but I'm getting pls 00382 expression is of the wrong type error

    Could you please all you please solve this problem.

    {format} {format}

    CREATE or REPLACE TYPE vp40.t_attr_list_tab AS TABLE OF VARCHAR2 (4000);

    CREATE or REPLACE TYPE vp40.t_fin_tab () AS OBJECT

    object_id NUMBER (8),

    object_name VARCHAR2 (50)

    );

    create or replace type vp40.t_objects_info

    AS AN OBJECT

    (

    node_id number,

    NUMBER THE OBJECT_ID,

    OBJECT_NAME VARCHAR2 (200)

    );

    / * Formatted on 2013/09/03 07:58 (trainer more v4.8.8) * /.

    (Vp40.findobjects) FUNCTION to CREATE or REPLACE

    i_object_type_id in NUMBERS

    i_l_filter_list IN VARCHAR2,

    i_scope_node_id NUMBER

    )

    RETURN t_fin_tab

    AS

    l_tab t_attr_list_tab: = t_attr_list_tab ();

    TYPE t_objects_info_arr IS TABLE OF THE t_objects_info

    INDEX BY PLS_INTEGER;

    l_obj_info t_objects_info_arr;

    TYPE t_fin_tab_arr IS TABLE OF THE t_fin_tab

    INDEX BY PLS_INTEGER;

    l_fin_tab t_fin_tab_arr;

    l_text VARCHAR2 (32767): = i_l_filter_list | ',';

    l_idx NUMBER;

    BEGIN

    LOOP

    l_idx: = INSTR (l_text, ",");

    OUTPUT WHEN NVL (l_idx, 0) = 0;

    l_tab. EXTEND;

    l_tab (l_tab. (Last): = TRIM (SUBSTR (l_text, 1, l_idx - 1));

    l_text: = SUBSTR (l_text, l_idx + 1);

    END LOOP;

    SELECT t_objects_info (n.node_id, o.object_id, o.NAME)

    LOOSE COLLECTION l_obj_info

    FROM (SELECT n.node_id, n.object_id

    N nodes

    START WITH n.node_id = i_scope_node_id

    N.node_id CONNECT BY PRIOR = n.parent_node_id) n

    JOIN IN-HOUSE

    objects o ON o.object_id = n.object_id

    WHERE o.object_type_id = i_object_type_id;

    IF l_obj_info. COUNT > 0

    THEN

    BECAUSE me IN l_obj_info. FIRST... l_obj_info. LAST

    LOOP

    FOR j IN l_tab. FIRST... l_tab. LAST

    LOOP

    BEGIN

    SELECT t_fin_tab (o.object_id, o.NAME)

    LOOSE COLLECTION l_fin_tab

    O objects, ATTRIBUTES att

    WHERE o.object_id = l_obj_info (i) .object_id;

    AND att. VALUE = l_tab (j);

    EXCEPTION

    WHEN NO_DATA_FOUND

    THEN

    raise_application_error

    (- 20004,

    "Attribute values do not match."

    );

    WHILE OTHERS

    THEN

    raise_application_error (-20005, "an error has occurred.");

    END;

    END LOOP;

    END LOOP;

    END IF;

    RETURN l_fin_tab;

    END;

    /

    {format} {format}

    Hello

    Sorry, I don't understand,

    mbb774 wrote:

    ...

    -for example with node_id = 100 and object_type_id = 200

    -Suppose we get 4 items

    ...

    Do you have after the bad examples of data? I don't see numbers of 100 or 200 anywhere in the sample data you posted.

  • PLS-00597: expression "v_record" in the list is wrong type

    Hi experts,

    I'm working on

    Oracle Database 10 g Enterprise Edition Release 10.2.0.3.0 - 64 bit

    I have 2 Sp allows to call SP1 and Sp2.

    SP1 now have an output of the Ref cursor. and I get this output to my SP2. Output slider Ref of SP1 have column 4.
    create or replace procedure sp2 (out_cur out sys_refcursor) is
    type record_typ is record(value_date     date,
                              name           varchar2(20),
                             category        varchar2(20),
                              amount         number);
    
    type tbl_typ is a table of record_typ;
    
    v_record      tbl_typ;
    out_cur1    sys_refcursor;
    
    begin
    
              Sp1(:out_cur1);
             loop
              fetch out_cur1 into v_record;
              exit when out_cur1%notfound;
             insert into tmp_tbl values(v_record.value_date, v_record.name, v_record.category, v_record.amount);
           end loop;
    
       open out_cur for
         select * from tmp_tbl;
    end;
    and I got the error PLS-00597: expression "v_record" in the list is wrong type
    Please suggest me where I am doing wrong.

    Thank you much in advance.
    Ritesh

    Hello

    Well you just put your type declaration in each stored procedure to refer to him...

    create table tmp_tbl
    (       value_date     date,
            name           varchar2(20),
            category        varchar2(20),
            amount         number
    )
    /
    
    CREATE OR REPLACE PROCEDURE  sp1
    (out_cur out sys_refcursor
    )
    IS
    
    begin
    
        OPEN out_cur FOR
        SELECT
            sysdate         value_date,
            'Bravid'        name,
            'Ape'           category,
            1               amount
        FROM
            dual;
    
    END;
    /
    
    CREATE OR REPLACE PROCEDURE sp2
    (out_cur out sys_refcursor
    )
    IS
        TYPE record_typ is record(value_date     date,
                              name           varchar2(20),
                             category        varchar2(20),
                              amount         number);
    
        v_record      record_typ;
        out_cur1    sys_refcursor;
    
    begin
    
             Sp1(out_cur1);
    
             loop
              fetch out_cur1 into v_record;
              exit when out_cur1%notfound;
             insert into tmp_tbl values(v_record.value_date, v_record.name, v_record.category, v_record.amount);
           end loop;
    
       open out_cur for
         select * from tmp_tbl;
    
    END;
    /
    

    HTH

    David

  • ORA-06550 PLS-00382: expression is of the wrong type

    Please help me with the following script:

    declare
    cursor c1 is
    Select prod_country_id
    of prod_country
    where eccnum = "NOCLASS-SG" and ccode = 'SG ';
    New_data_type TYPE IS TABLE C1% ROWTYPE;
    new_data_tab new_data_type;
    Start
    Open c1;
    loop
    collect fetch c1 into bulk
    in new_data_tab limit 500000;
    OUTPUT WHEN c1% NOTFOUND;
    ForAll i in 1... new_data_tab. Count
    Update prod_country
    Set eccnum = "NOCLASS".
    where prod_country_id = new_data_tab (i);
    end loop;
    Close c1;
    commit;
    end;

    Gives following error:

    ORA-06550: line 17, column 32:
    PLS-00382: expression is of the wrong type


    Please help immediately.
    Need to update block.

    Thanks in advance

    user13759851 wrote:
    Just change my query and now its execution without the previous error:

    So what? It is always wrong.

    The correct way using just SQL to perform the update - which is the most effective and scalable way. And much faster.

    As for your code? Everything is fake.

    You read the update lines. Without locking of these lines. And these same lines are changed in the code. This is false.

    Then you agree inside the loop. This is false.

    You now get a cursor (where the lines are not locked) and changes of committng to these same lines. It is a violation of the standard ANSI SQL - get everywhere is committed. You consume more resources Oracle doing this. If this process crashes - and there is an excellent chance that Oracle will not provide a coherent reading/snapshot while the data are changed and committed - you what? A process that has changed some data and no other data. We ask that the corruption of data. A total lack of data integrity.

    You set the limit to a ridiculous 500000. This is false.

    It's not faster than with a 1000 limit. But she will consume 500 times more memory. And not just any memory. The more expensive server memory that a process of PL/SQL can consume - PGA.

    You have provided a perfect example of How not to Code for Oracle+.

    Now trash. You never forget retry such an erroneous approach. Use a single SQL UPDATE statement. And then a COMMIT.

  • "expression is of the wrong type" - but who and where... ?

    Hello.

    I hope that it will be clear as day to someone... Please could someone tell me why I get the following error message...
    [061010_042222995][][EXCEPTION] SQLException encounter while executing data trigger....
    java.sql.SQLException: ORA-06550: line 4, column 20:
    PLS-00382: expression is of wrong type
    ORA-06550: line 4, column 1:
    PL/SQL: Statement ignored
    data model when the trigger is called...
      <?xml version="1.0" encoding="utf-8" ?> 
    - <dataTemplate name="UofS_OutstandngExpenses_Report" defaultPackage="SUBIXCLT" dataSourceRef="FINDEV" version="1.0">
    - <properties>
      <property name="xml_tag_case" value="upper" /> 
      <property name="include_parameters" value="true" /> 
      <property name="debug_mode" value="on" /> 
      </properties>
    - <parameters>
      <parameter name="p_claimant" dataType="character" defaultValue="" /> 
      <parameter name="p_expense_date_from" dataType="date" defaultValue="" /> 
      <parameter name="p_expense_date_to" dataType="date" defaultValue="" /> 
      <parameter name="p_raisedby" dataType="character" defaultValue="" /> 
      <parameter name="p_status" dataType="character" defaultValue="" /> 
      <parameter name="p_ordered_by" dataType="varchar2" defaultValue="" /> 
      </parameters>
    - <dataQuery>
    - <sqlStatement name="Q1">
    - <![CDATA[ 
    SELECT DISTINCT
    erh.invoice_num, 
    pap.full_name EMP_CLAIMING,
    DECODE(NVL(erh.expense_status_code, 'Not yet Submitted (NULL)'), 'CANCELLED', 'CANCELLED',
         'EMPAPPR', 'Pending Individuals Approval',      'ERROR', 'Pending System Administrator Action',
         'HOLD_PENDING_RECEIPTS     ', 'Hold Pending Receipts', 'INPROGRESS', 'In Progress', 'INVOICED', 'Ready for Payment',
         'MGRAPPR', 'Pending Payables Approval', 'MGRPAYAPPR', 'Ready for Invoicing', 'PAID', 'Paid',
         'PARPAID', 'Partially Paid',     'PAYAPPR', 'Payables Approved',     'PENDMGR', 'Pending Manager Approval',
         'PEND_HOLDS_CLEARANCE', 'Pending Payment Verification',     'REJECTED', 'Rejected',     'RESOLUTN',     'Pending Your Resolution',
         'RETURNED',     'Returned',     'SAVED',     'Saved',     'SUBMITTED',     'Submitted',     'UNUSED',     'UNUSED',
         'WITHDRAWN','Withdrawn',     'Not yet Submitted (NULL)') "EXPENSE_STATUS" ,
    NVL(TO_CHAR(erh.report_submitted_date,'dd-MON-yyyy'),'NULL') SUBMIT_DATE,
    NVL(TO_CHAR(erh.expense_last_status_date,'dd-MON-yyyy'),'NULL') LAST_UPDATE,
    erh.override_approver_name ER_Approver,
    fu.description EXP_ADMIN,
    erh.total, 
    erh.description  
    FROM
    AP_EXPENSE_REPORT_HEADERS_all erh, 
    per_all_people_f pap, fnd_user fu
    WHERE erh.employee_id = pap.person_id 
    AND fu.user_id = erh.created_by
    AND NVL(erh.expense_status_code, 'Not yet Submitted') NOT IN  ('MGRAPPR', 'INVOICED', 'PAID', 'PARPAID')
    AND pap.full_name = NVL(:p_claimant, pap.full_name)
    AND TRUNC(erh.report_submitted_date) BETWEEN NVL(:p_expense_date_from, '01-JAN-1999') AND NVL(:p_expense_date_to,'31-DEC-2299')
    AND fu.description = NVL(:p_raisedby,fu.description)
    AND erh.expense_status_code = NVL(:p_status,erh.expense_status_code) &L_ORDERED_BY
    
      ]]> 
      </sqlStatement>
      </dataQuery>
      <dataTrigger name="beforeReport" source="SUBIXCLT.beforeReportTrigger" /> 
    - <dataStructure>
    - <group name="G_XP_CLM_TRACKNG" source="Q1">
      <element name="INVOICE_NUM" value="INVOICE_NUM" /> 
      <element name="EMP_CLAIMING" value="EMP_CLAIMING" /> 
      <element name="EXPENSE_STATUS" value="EXPENSE_STATUS" /> 
      <element name="SUBMIT_DATE" value="SUBMIT_DATE" /> 
      <element name="LAST_UPDATE" value="LAST_UPDATE" /> 
      </group>
      </dataStructure>
      </dataTemplate>
    specifications of the package and the body...

    --THE SPEC...
    
    CREATE OR REPLACE PACKAGE Subixclt IS
    FUNCTION beforeReportTrigger RETURN VARCHAR2;
    p_order_by VARCHAR2(50);
    l_ordered_by VARCHAR2(350);
    p_claimant  VARCHAR2(80); 
    expense_date_from DATE;
    expense_date_to DATE;
    p_raisedby   VARCHAR2(80);
    p_status   VARCHAR2(80);
    p_ordered_by   VARCHAR2(80);
    --RETURN VARCHAR2;
    END;
    
    
    --THE BODY...
    
    REATE OR REPLACE PACKAGE BODY Subixclt IS
    FUNCTION BeforeReportTrigger RETURN VARCHAR2 IS
    
    BEGIN
    Fnd_File.PUT_LINE(Fnd_File.LOG,'L_ORDERED_by'||L_ORDERED_BY);
    
    DECLARE
    
    L_ORDERED_BY VARCHAR2(50);
    P_ORDERED_BY  VARCHAR2(50);
    P_RAISEDBY VARCHAR2(50);
    P_STATUS VARCHAR2(50);
    P_CLAIMANT VARCHAR2(100);
    P_EXPENSE_DATE_FROM DATE;
    --P_EXPENSE_DATE_FROM  VARCHAR2(50);
    --P_EXPENSE_DATE_TO  VARCHAR2(50);
    P_EXPENSE_DATE_TO DATE;
    
    BEGIN
     IF (P_ORDERED_BY='Expense Report Number') THEN
         L_ORDERED_BY :='order by 1 asc;';
      ELSIF (P_ORDERED_BY='Person Claiming') THEN
         L_ORDERED_BY :='order by 2 asc;';
      ELSIF (P_ORDERED_BY='Submit Date') THEN
      L_ORDERED_BY :='order by 4 asc;';
      END IF;
     
    RETURN(L_ORDERED_BY);
    --RETURN NULL;
    END;
    END;
    END;
    Thank you very much for looking...

    D

    Hi Steven,

    your settings are not correctly spread. P_ORDERED_BY in your package does not get the value of the report parameter.

    Can you please send me the full source code by email? XML, spec data definition package & body? (name (at) melexis.com)

    Thank you
    David.

  • Why the date and time is wrong when I start my computer

    Why the date and time is wrong when I start my computer

    CMOS battery die/of - usually about the size of a quarter on the motherboard of your system.

    It keeps things when you are not using the computer - if it starts to die/dies - then the time is no longer maintained.  Replacing, it is no different (in most cases) that replace the batteries of your TV remote or FOB car key.

  • Message error "the preconfiguration file has the wrong type of preset."

    I try to import the Preset brushes for newborn photography.  They are. Irtemplate files. I'm going in in my cc in Lightroom Develop Module, then opening presets Panel and hover the cursor over the user Presets.  I right click and choose "import".  So I find the real. The Irtemplate file and then click Import.  What I get is the above error message «the presets file has the wrong type of preset.»  What I am doing wrong?

    Predefined live (Windows): C:\Users\User Name\AppData\Roaming\Adobe\Lightroom\Local of adjustment presets.

    Presets to develop 'Global' live in: C:\Users\User Name\AppData\Roaming\Adobe\Lightroom\Develop Presets.

    Find your presets in the "Lightroom" file folders (similar to above) tab Preferences dialog - Presets > [show Lightroom Presets folder]

    Manually copy & paste your .lrtemplate files to the appropriate folder and restart Lightroom.

    Note: The folder [develop Presets] can tolerate and allows subfolders, the folder [Local adjustment presets] cannot.

    If only in the folder [Local adjustment presets] .lrtemplate files.

  • PLS-00382: expression is of the wrong type

    Hello

    PL/SQL code
    CREATE OR REPLACE TYPE prof_ctab_value_rec_t AS OBJECT (
      prof_id         INTEGER
     ,ctabv_id        INTEGER
     ,ctab_id         INTEGER
    )
    
    
    CREATE OR REPLACE TYPE prof_ctab_value_table_t IS TABLE OF prof_ctab_value_rec_t
    
    
    
    FUNCTION get_prof_ctab_value
    
    RETURN prof_ctab_value_table_t PIPELINED
    IS
    
      v_sql          VARCHAR2(4000);
      v_cursor       SYS_REFCURSOR;
      v_result_set   prof_ctab_value_table_t;
    
    
    BEGIN
    
       v_sql := 'select .....';
    
      EXECUTE IMMEDIATE v_sql USING
      OUT v_cursor;
          
        LOOP
        FETCH v_cursor INTO v_result_set;
        EXIT WHEN v_cursor%NOTFOUND;
        PIPE ROW(v_result_set);
    
        END LOOP;
    
    
    END;
    Compile errors


    Error: PLS-00382: expression is of the wrong type
    Text: PIPE ROW (v_result_set);

    Error: PL/SQL: statement ignored
    Text: PIPE ROW (v_result_set);

    Please tell me wht causes the compile error. Thanks in advance.

    I don't know what you're trying to do... Probably, this will help you...

    SQL> create or replace FUNCTION get_prof_ctab_value
      2  RETURN prof_ctab_value_table_t PIPELINED
      3  IS
      4    v_sql          VARCHAR2(4000);
      5    v_cursor       SYS_REFCURSOR;
      6    v_result_set   prof_ctab_value_rec_t :=
      7                prof_ctab_value_rec_t(null,null,null);
      8  BEGIN
      9     v_sql := 'select 1,2,3 from dual union all select 4,5,6 from dual';
     10    open  v_cursor for v_sql;
     11      LOOP
     12      FETCH v_cursor INTO
     13     v_result_set.prof_id,
     14     v_result_set.ctabv_id,
     15     v_result_set.ctab_id;
     16      EXIT WHEN v_cursor%NOTFOUND;
     17      PIPE ROW(v_result_set);
     18      END LOOP;
     19   return;
     20  END;
     21  /
    
    Function created.
    
    SQL> select *
      2  from table(get_prof_ctab_value);
    
       PROF_ID   CTABV_ID    CTAB_ID
    ---------- ---------- ----------
             1          2          3
             4          5          6
    
  • expression is of the wrong type

    Hello
    I have this function
    FUNCTION MY_F_SUB_EXISTS (
          p_email_address   IN cnsmr.email_addr%TYPE,
          p_question_cd     IN ref_cd.quest_num%TYPE,
          p_language        IN ref_cd.language%TYPE)
          RETURN BOOLEAN
       AS
          CURSOR cur_exists (
             l_email_address   IN cnsmr.email_addr%TYPE,
             l_question_cd     IN ref_cd.quest_num%TYPE)
          IS
             SELECT 1
               FROM queue_consumers qc, queue_consumer_subsc qcs
              WHERE     qcs.queue_consumer_id = qc.queue_consumer_id
                    AND qcs.question_cd = l_question_cd
                    AND LOWER (qc.email_address) = LOWER (l_email_address);
    
          --
          CURSOR cur_rtr_exists (
             l_email_address   IN cnsmr.email_addr%TYPE,
             l_question_cd     IN ref_cd.quest_num%TYPE,
             l_language        IN ref_cd.language%TYPE)
          IS
             SELECT 1
               FROM cnsmr idv,
                    cnsmr_opt idv_sbc,
                    ref_cd sbsc
              WHERE     idv_sbc.indiv_id = idv.indiv_id
                    AND idv_sbc.subsc_cd = sbsc.subsc_cd
                    AND idv_sbc.subsc_prod_cd = sbsc.subsc_prod_cd
                    AND idv_sbc.subsc_chnl_cd = sbsc.subsc_chnl_cd
                    AND sbsc.quest_num = l_question_cd
                    AND sbsc.language = l_language
                    AND LOWER (idv.email_addr) = LOWER (l_email_address);
    
          --
          v_exist   NUMBER DEFAULT NULL;
       BEGIN
          --
          OPEN cur_exists (p_email_address, p_question_cd);
    
          FETCH cur_exists INTO v_exist;
    
          --
          IF cur_exists%FOUND
          THEN
             CLOSE cur_exists;
    
             RETURN TRUE;
          ELSE
             --
             CLOSE cur_exists;
    
             OPEN cur_rtr_exists (p_email_address, p_question_cd, p_language);
    
             FETCH cur_rtr_exists INTO v_exist;
    
             --
             IF cur_rtr_exists%FOUND
             THEN
                CLOSE cur_rtr_exists;
    
                RETURN TRUE;
             ELSE
                CLOSE cur_rtr_exists;
    
                RETURN FALSE;
             END IF;
          END IF;
       --
       EXCEPTION
          WHEN OTHERS
          THEN
             raise_application_error (
                -20001,
                   'error in MY_F_SUB_EXISTS:'
                || SQLCODE
                || '-'
                || SQLERRM);
       END MY_F_SUB_EXISTS;
    Please ignore any syntax error if it is changed, I am more concern about its input parameter and the call to this function

    My question is
    While call you that
    select MY_F_SUB_EXISTS('[email protected]','SUB-F','EN') 
     from dual;
    I get this error
    ORA-06552: PL/SQL: Statement ignored
    ORA-06553: PLS-382: expression is of wrong type
    what I'm missing here?

    BOOLEAN cannot be used in SQL:

    SQL> create or replace function bla
      2  return boolean
      3  as
      4  begin
      5   return true;
      6  end;
      7  /
    
    Function created.
    
    SQL> select bla from dual;
    select bla from dual
           *
    ERROR at line 1:
    ORA-06552: PL/SQL: Statement ignored
    ORA-06553: PLS-382: expression is of wrong type
    

    Only in PL/SQL.

  • Sys_RefCursor - expression is of the wrong type

    Greetings,

    I'm having a problem when compiling the code, and I wonder if you can help me.


    ===============
    CREATE OR REPLACE PROCEDURE RA
    v_cursor sys_refcursor;
    BEGIN
    FOR I IN 1.3 LOOP

    query_str: = 'SELECT DISTINCT STAGE_NAME, SUN |
    i: ' _MEMBER_NAME OF EXT_STG WHERE DIM' |
    i: ' _MEMBER_NAME AS "A: %" ';

    V_cursor OPEN FOR query_str; - error here

    V_cursor CLOSE;
    END LOOP;
    END;
    ===============


    This Code gives me the following error: rError (43.23): PLS 00382: expression is of the wrong type

    I read askTom: http://asktom.oracle.com/pls/asktom/f?p=100:11:0:P11_QUESTION_ID:492620500346758810
    This code is supposed to work, so I don't understand this error.


    He also reffers that versions before 11g this code fails. However, my version is: PL/SQL Release 11.2.0.2.0 - Production


    Thanks for your help.

    >
    NVARCHAR2 (200)
    >

    Try VARCHAR2 (200)

    http://docs.Oracle.com/CD/B28359_01/AppDev.111/b28370/openfor_statement.htm

    documentation
    >
    syntax

    A string literal, a string variable or string expression that represents a select (without the final semicolon) several cursor_variable_name associated lines. It must be of type CHAR, VARCHAR2 or CLOB (not NCHAR or NVARCHAR2).
    >

    Published by: user6806750 on 09.12.2011 03:41

  • Save my pictures worked with adobe photoshop 9. keeps telling me unable to open, the wrong type of file and it says it's a "file 2" - How can I change this please

    How can I change the type of file it becomes an adobe raf or raw file, it worked with the camera but the pc is save them as files of type 2 and photoshop 9 does not open these.  I have a fuji s2 pro if it's any help, thank you.

    http://www.Adobe.com/support/downloads/product.jsp?product=106&platform=Windows&promoid=HTENB

    You can use the free DNG Converter from Adobe, download the file above.

    DNG is digital negitive and it's open in Camera Raw Editor.

    This converter supports more than 500 different types of camera.

    If someone sends you a raw file and your Raw editor does not support this type of camera, you use the converter.

    Once converted, you can open it.

    http://helpx.Adobe.com/Creative-Suite/KB/camera-raw-plug-supported-cameras.html

    The list above shows FinePix S2 Pro, RAF file type,

    A plug-in version Camera Raw minimum required 1.0

    http://helpx.Adobe.com/x-productkb/global/camera-raw-compatible-applications.html

    The list above shows Photoshop Elements 9 comes with the Camera Raw plug-in version ... 6.1

    Compatible with Camera Raw-plug-in, thanks to the version... 6.5

    http://helpx.Adobe.com/cfusion/search/index.cfm?loc=en_US&term=elements%209%20raw%20update

    The list above shows that there is an update to Camera Raw in Photoshop Elements 9... 6.3 or 6.5... 6.5 it is better.

    It also shows an update for first items 6.4.1 9 If you who also have.

    You can also get updates through the app.

    However you do not have these updates now since your comes with the version is 6.1 and the

    Plug in Camera Raw minimum required version is 1.0

    OK... so it shows your camera has not been defined to take RAW images or you downloaded the wrong file in Photoshop.

    Most cameras that take RAW images have a framework for Raw images only or adjustment to take RAW images and regular at the same time.

    Test your camera again files for RAF types and if you do not check your settings of the camera again.

    You can not save or convert a regular image as a type RAW or DNG file.

    http://forums.Adobe.com/index.jspa?promoid=JOPCT

    I am a member of the Adobe forums, help is very good, the link above will take you there.

    I hope that helps.

  • When system startup until the date and time are wrong

    When I boot up I have the wrong system time and date of that change that and everything works fine but when I stop computer and restart the same thing happening again any info would be appericated thanks

    When your time is not known after him turning off your computer, this is an indication that the battery on your motherboard must be replaced.  Open your case and look for a button on your motherboard battery and replace it.  Most newer computers use a CR2032 - the same that is used in the garage remotes and keyless entry for your car charms.

    HTH,
    JW

  • When you try to activate Windows Vista with the key that came with it, I get an error that the key is of the wrong type for activation.

    activation code

    I had a hard drive crash and installed the new hard drive. Installed my copy of vista that came with computer and when I tried to activate the software with the code provided with this windows says it's the wrong activation for this software.

    1. start your own, new thread in the following Microsoft Genuine Advantage forum and repost your MGA journal, and a clear description of your problem:

    http://social.Microsoft.com/forums/en-us/genuinevista/threads>

    2 Troubleshooting specialist will analyze the data and recommend an appropriate solution.

    Please run the Microsoft Genuine Diagnostics Tool then copy and paste the results into an answer here for further analysis:

    http://go.Microsoft.com/fwlink/?LinkId=52012>

    3. try the listed here appropriate phone number: phone numbers Microsoft Activation centers worldwide:

    http://www.Microsoft.com/licensing/existing-customers/activation-centers.aspx>

    UTC/GMT is 21:19 Saturday, may 12, 2012

  • Missing data in the LDM diagram type when boning relational mode

    I use OSDM v3.3.0.734.
    I created the relational model by importing the DDL script.
    Then I retroconcu to create the LDM.
    However I can't attribute data types in the schema of the LDM.
    If I right click-> view-> details yet it does not show me the data types.
    The only options I see when I click on 'Détails' are details, only names, attributes.
    It does not show me options PK/FK, types of data etc...

    Thank you.

    Hello

    you need to change the notation used--data types are not displayed in the Barker notation.

    Philippe

  • Uncompilable source code - wrong type java.util.Collections.sort sym

    Hello

    I'm doing an exercise. I need to set up my own behaviour SortedSet, based on an implementation of LinkedList. Basically I check if an item is not already present in the list and then I want to sort the list using Collections.sort (). This is my piece of code:
    public class MySortedSet<E> {
        
        LinkedList<E> list = new LinkedList<E>();
        
        public boolean add(E e) {
            if (!list.contains(e)) {
                list.add(e);
                Collections.sort(list); //this line throws exception
                return true;
            }
            return false;
        }
        
        public static void main(String[] args) {        
            MySortedSet<String> mss = new MySortedSet<String>();
            mss.add("First");
        }
    }
    Only, I get the following exception:
    Exception in thread "main" java.lang.RuntimeException: Uncompilable source code - Erroneous sym type: java.util.Collections.sort
         at chapter17.MySortedSet.add(MySortedSet.java:23)
         at chapter17.MySortedSet.main(MySortedSet.java:48)
    Java Result: 1
    ... that I do not actually understand. NetBeans, tells me: no suitable method found to sort (java.util.LinkedList < E >), the method of java.util.Collections. < T > sorting (java.util.List < T >) is not applicable, the infrerred type is not consistent with the declared boundaries, deducted: E, limits: java.lang.Comparable <? Super E >.

    Of this kind, I understand that my list object is not correctly stated on this point is the generic type. LinkedList generic type E, what is false. Can someone explain to me how do I correctly report LinkedList, or otherwise I do wrong. I'm not sure that understand this generic problem here.

    Thank you
    PR.

    Collections.sort can only sort comparable objects (or use a separate comparison). You would need to have a Comparable upper limit for E.

Maybe you are looking for