Receiving ORA-01465: invalid hex number when using HEXTORAW

I'm trying to use hextoraw to convert a value in a CSV file read from an external table. Works on some systems and not on others. Is there a way that I can avoid this or program around this? Any ideas what the problem is? It fails with an “invalid hex value” .
This is for Oracle 10.2.0.4 Here is the code and the external table that I’m using.
select HEXTORAW(REPLACE(EnkryptedPassword,'0x')) FROM CUSTOMER1; <--- Failes or ORA-01465 (CSV file data below)
CREATE TABLE CUSTOMER1
UserID VARCHAR2(100 CHAR),
FirstName VARCHAR2(50 CHAR),
LastName VARCHAR2(50 CHAR),
Locked VARCHAR2(50 CHAR),
CustomerID VARCHAR2(100 CHAR),
Pwd VARCHAR2(100 CHAR),
EnkryptedPassword VARCHAR2(100 CHAR)
ORGANIZATION external
TYPE ORACLE_LOADER
DEFAULT DIRECTORY ARCHIVE
ACCESS PARAMETERS
RECORDS DELIMITED BY NEWLINE
FIELDS TERMINATED BY ","
MISSING FIELD VALUES ARE NULL
LOCATION ('PWDCONVERSION2')
REJECT LIMIT 1
COMMIT
Inside the PWDCONVERSION2 file:
[email protected],JOHN,SMITH,1,C_2M8C2F_CM_NC,C_2M8C2F_CM_NC,0x7C4141938A1F69944BFCA0BED5BB3FEA3CA92A7

Thank-you for the response. I believe I may have found the problem (probably).
On some systems the ACCESS PARAMETER for the external table "RECODRDS DELIMITED BY NEWLINE" will not work if there is some other character other than "\n". In windows it works fine. On some other systems it works finds as well. On Linux Distro I tend to run into problems. I tried this out for more than one line in the CSV. Then scaled back to just one line. It accepted one line but not more than one line. So I trying
RECORDS DELIMITED BY NEWLINE CHARACTERSET WE8MSWIN1252
Any ideas what would help recognize all types of newline characters?

Similar Messages

  • Uploading a file into DB error occured: ORA-01465: invalid hex number

    While uploading a file into the DB, It is promting an error: "ORA-01465: invalid hex number"
    how to convert a binary data to hex format in this case.

    Hello again,
    Ok, to upload into the database through APEX, using the file browser, you need to do the following:
    1. Create the file browser item on your page.
    2. Create a page process that is executed on the SUBMIT button.
    The code should be something like this:
    IF ( :P1_FILE_NAME is not null ) THEN
      INSERT INTO oehr_file_subject(id,NAME, SUBJECT, BLOB_CONTENT, MIME_TYPE)
      SELECT ID,:P1_FILE_NAME,:P1_SUBJECT,blob_content,mime_type
         FROM APEX_APPLICATION_FILES
       WHERE name = :P1_FILE_NAME;
      DELETE from APEX_APPLICATION_FILES WHERE name = :P1_FILE_NAME;
    END IF;{size:14}Files uploaded through the file browser are inserted into APEX_APPLICATION_FILES and need to be copied into your file.
    Be sure to include a column in your table for the filename in {color:green}FILENAME.EXT{color} format so that the system will know how to handle the file when you try to download.
    {size}
    {size:14}
    Don.
    You can reward this reply by marking it as either Helpful or Correct :)
    {size}

  • ORA-01465:invalid hex number

    Hi,
    Insert into ur3users
    select user_id, pass_mgmnt.decrypt_pass(password), user_name from users ;
    ur3users.user _id (number 38,0)
    ur3user.user_name (varchar 100 byte)
    ur3users._password (varchar 100 byte)
    users.user _id (number 38,0)
    user.user_name (varchar 250 byte)
    users._password (varchar 250 byte)
    When I run the above query I get the following error:
    Error report:
    SQL Error: ORA-01465: invalid hex number
    01465. 00000 - "invalid hex number"
    When I run the select statement as stand alone, I have no issues.
    Possible causes and solutions?

    Hi,
    The problem probably lies in the function DECRYPT_PASS.
    Can you post the code behind it or is it sensible material?
    Some sample data would help as well.

  • ORA-01465: invalid hex number on form field having values like $0-$10k...

    Hi
    I have a form item (SPEND) of select list having values like
    $0 - $10k
    $10k - $50k
    $50k - $100k
    $100k - $250k
    $250k+
    For the new record, when I hit "SAVE” buttons it inserts the new records to the table with values ($0-$10k...)
    BUT when i edited the same record, and then try to "Apply Changes” getting following error message
    ORA-01465: invalid hex number
    Again when I change the value to null it simply allows the record to UPDATE.
    Again I changed the item to a text field i am getting same error when I try with charter (ABc...). BUT it allows to the number (123..)
    Column attribute is SPEND VARCHAR2 (15 BYTE)
    ie - when I try to update the SPEND field with the values ($0 - $10k,$10k - $50k,$50k - $100k,$100k - $250k,$250k+) I am getting above error message.
    ORA-01465: invalid hex number
    Environment:
    Oracle Apex- 4.1
    DB-11g
    Thanks,
    Amu
    Edited by: Amuly on Jul 16, 2012 5:00 PM

    Use utl_raw.cast_to_raw() function when you convert HEX value into RAW(), e.g.:
    SQL> create table ztest (ff raw(1000));
    Table created
    SQL> insert into ztest (ff) values
      2  (utl_raw.cast_to_raw('596F75207765726520646973636F6E6E65637465642066 726 F 6D207468652041494D207365727669996365207768656E20796F752073696
      3  76E656420696E2066726F6D20616E6F74686572206C6F636174'));
    1 row inserted

  • ORA-22275 Invalid lob locator when using CLOB from a view

    Hi,
    I am having problems when passing a CLOB from a "Union all" view to a function. I get an ORA-22275 error when trying to construct an XmlType from the CLOB and
    the CLOB originates from a view. If the CLOB originates from a table, eveyting works fine. Here is the code, that reproduces the problem
    CREATE TABLE testclob
        (field1                         CLOB)
    -- insert some data
    insert into testclob values ('<a/>');
    -- Define a clob view over some tables
    create or replace view v_testclob
    (field1)
    as
    select field1 from testclob
    union all
    select field1 from testclob; -- in reallity I use different tables
    -- Creat a functions that proceses the CLOB
    CREATE OR REPLACE
    function MyFunction(v_myClob clob) return VARCHAR2
    IS
       myXML XMLTYPE;
    BEGIN
      select xmltype(v_myClob) into myxml from dual; -- the view crashes ** HERE **
      -- code ommited
      return 'some data';
    END;
    -- Try to use the function:
    -- Selecting from a table works OK
    select myfunction(field1) from testclob;
    -- Selecting from the view crashes
    select myfunction(field1) from v_testclob;
    Error: ORA-22275: invalid LOB locator specified ORA-22275: invalid LOB locator specified ORA-06512: at "D_TEST.MYFUNCTION", line 6
    -- I using the following version:
    select * from v$version;
    -- Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production      
    -- PL/SQL Release 9.2.0.1.0 - Production                           
    -- CORE     9.2.0.1.0     Production                                       
    -- TNS for 32-bit Windows: Version 9.2.0.1.0 - Production          
    -- NLSRTL Version 9.2.0.1.0 - Production The only workaround I have found is to use substr
      select xmltype(dbms_lob.substr(v_myClob)) into myxml from dual; -- workaround.. but this mght trucnate my data.
    What am I doing wrong?
    Matej

    You need to apply the latest patchset for your version of the database on your version of the operating system:
    SQL> CREATE TABLE testclob
      2      (field1                         CLOB)
      3
    SQL> /
    Table created.
    SQL>
    SQL> -- insert some data
    SQL> insert into testclob values ('<Data>Testing</Data>')
      2  /
    1 row created.
    SQL>
    SQL> -- Define a clob view over some tables
    SQL>
    SQL> create or replace view v_testclob
      2  (field1)
      3  as
      4  select field1 from testclob
      5  union all
      6  select field1 from testclob
      7  /
    View created.
    SQL>
    SQL> -- Creat a functions that proceses the CLOB
    SQL>
    SQL> CREATE OR REPLACE
      2  function MyFunction(v_myClob clob) return VARCHAR2
      3  IS
      4     myXML XMLTYPE;
      5  BEGIN
      6
      7    select xmltype(v_myClob) into myxml from dual; -- the view crashes ** HERE **
      8    -- code ommited
      9    return 'some data';
    10  END;
    11
    12  /
    Function created.
    SQL> -- Try to use the function:
    SQL> -- Selecting from a table works OK
    SQL> select myfunction(field1) from testclob;
    MYFUNCTION(FIELD1)
    some data
    SQL>
    SQL>
    SQL> -- Selecting from the view crashes
    SQL> select myfunction(field1) from v_testclob;
    MYFUNCTION(FIELD1)
    some data
    some data
    SQL> disconnect
    Disconnected from Oracle9i Enterprise Edition Release 9.2.0.7.0 - Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.7.0 - Production
    SQL>

  • Invalid Serial Number when using Customization Wizard to install Acrobat 8

    Hello. I'm trying to install Adobe Acrobat 8 Professional using the Customization Wizard to create a transform. The serial number is for the volume license product, and I put this number in the space provided in the Wizard. Whenever I remotely deploy the msi file and the user opens the program, I get the following error: "You have entered an invalid serial number. Please reinstall Adobe Acrobat 8 Professional and enter in a valid serial number when asked." The program then closes. This does not happen when I install from the CD.
    Each of the workstations is a Gateway E-4500S running Windows XP SP2. Adobe Acrobat 7 Professional is uninstalled prior to installation of Acrobat 8, and Acrobat 8 exists alongside Adobe Reader 8.1.1. No other Adobe products are installed apart from Flash Player.
    The following are the contents of the setup.ini file:
    [Startup]
    RequireOS=Windows 2000;Windows XP
    RequireMSI=3.0
    RequireIE=6.0.2600.0
    CmdLine=/sall /rs
    [Product]
    msi=AcroPro.msi
    Languages=1033;1031;1036
    1033=English (United States)
    1031=German (Germany)
    1036=French (France)
    CmdLine=TRANSFORMS="AcroPro.mst"
    [Windows 2000]
    PlatformID=2
    MajorVersion=5
    ServicePackMajor=4
    [Windows XP]
    PlatformID=2
    MajorVersion=5
    MinorVersion=1
    ServicePackMajor=2
    [MSI Updater]
    Path=WindowsInstaller-KB893803-v2-x86.exe
    I've tried editing the setup.ini file to indicate the full path to the mst file, to no avail. Pretty much at the end of my rope right now. Any suggestions? I'll be happy to provide further information.

    Chris Benton - 4:40am Jan 29, 08 PST (#2 of 2)
    Correct. The CD installation goes without a hitch. I'm using Attachmate WinInstall to try to deploy the software remotely. It worked fine for Adobe Reader 8.1.1, but it's been a bear for Acrobat 8. I'd be okay with a straight CD installation if it didn't involve fifty machines.

  • ORA-01017: invalid username/password when using TNS Alias

    Friends,
    I am experiencing this strange issue in 11G R2. When I use tnsalias and connect using sqlplus username/password@TNS it shows ORA-01017: invalid username/password . But the same works with ORACLE_SID. See below.
    -bash-3.00$ uname -a
    SunOS ibs-ash-sr147 5.10 Generic_144489-06 i86pc i386 i86pc
    -bash-3.00$ env | grep ORACLE
    ORACLE_SID=DB1
    ORACLE_BASE=/project/oracle/orabase
    ORACLE_HOME=/project/oracle/orabase/product/11.2.0/dbhome_1
    -bash-3.00$ tnsping DB
    TNS Ping Utility for Solaris: Version 11.2.0.1.0 - Production on 17-JUN-2011 12:23:12
    Copyright (c) 1997, 2009, Oracle.  All rights reserved.
    Used parameter files:
    /project/oracle/orabase/product/11.2.0/dbhome_1/network/admin/sqlnet.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = crs-scan)(PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = DB)))
    OK (0 msec)
    -bash-3.00$ sqlplus IRES_USER@DB
    SQL*Plus: Release 11.2.0.1.0 Production on Fri Jun 17 12:30:22 2011
    Copyright (c) 1982, 2009, Oracle.  All rights reserved.
    Enter password:
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, Real Application Clusters, Automatic Storage Management, OLAP,
    Data Mining and Real Application Testing options
    SQL> show parameter sec_case_sensitive_logon
    NAME                                 TYPE        VALUE
    sec_case_sensitive_logon             boolean     TRUE
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, Real Application Clusters, Automatic Storage Management, OLAP,
    Data Mining and Real Application Testing options
    -bash-3.00$ sqlplus IRES_USER/U9$bvs#ir@DB
    SQL*Plus: Release 11.2.0.1.0 Production on Fri Jun 17 12:34:30 2011
    Copyright (c) 1982, 2009, Oracle.  All rights reserved.
    ERROR:
    ORA-01017: invalid username/password; logon denied
    Enter user-name: ^CMy understanding is that both connections use a TNS alias, but second is not working. Any help is appreciated.
    Thanks in Advance,
    SSN
    Edited by: SSNair on Jun 17, 2011 5:43 AM

    SSNair wrote:
    Friends,
    I am experiencing this strange issue in 11G R2. When I use tnsalias and connect using sqlplus username/password@TNS it shows ORA-01017: invalid username/password . But the same works with ORACLE_SID. See below.
    -bash-3.00$ uname -a
    SunOS ibs-ash-sr147 5.10 Generic_144489-06 i86pc i386 i86pc
    -bash-3.00$ env | grep ORACLE
    ORACLE_SID=DB1
    ORACLE_BASE=/project/oracle/orabase
    ORACLE_HOME=/project/oracle/orabase/product/11.2.0/dbhome_1
    -bash-3.00$ tnsping DB
    TNS Ping Utility for Solaris: Version 11.2.0.1.0 - Production on 17-JUN-2011 12:23:12
    Copyright (c) 1997, 2009, Oracle.  All rights reserved.
    Used parameter files:
    /project/oracle/orabase/product/11.2.0/dbhome_1/network/admin/sqlnet.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = crs-scan)(PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = DB)))
    OK (0 msec)
    -bash-3.00$ sqlplus IRES_USER@DB
    SQL*Plus: Release 11.2.0.1.0 Production on Fri Jun 17 12:30:22 2011
    Copyright (c) 1982, 2009, Oracle.  All rights reserved.
    Enter password:
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, Real Application Clusters, Automatic Storage Management, OLAP,
    Data Mining and Real Application Testing options
    SQL> show parameter sec_case_sensitive_logon
    NAME                                 TYPE        VALUE
    sec_case_sensitive_logon             boolean     TRUE
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, Real Application Clusters, Automatic Storage Management, OLAP,
    Data Mining and Real Application Testing options
    -bash-3.00$ sqlplus IRES_USER/U9$bvs#ir@DB
    SQL*Plus: Release 11.2.0.1.0 Production on Fri Jun 17 12:34:30 2011
    Copyright (c) 1982, 2009, Oracle.  All rights reserved.
    ERROR:
    ORA-01017: invalid username/password; logon denied
    Enter user-name: ^CMy understanding is that both connections use a TNS alias, but second is not working. Any help is appreciated.
    Thanks in Advance,
    SSN
    Edited by: SSNair on Jun 17, 2011 5:43 AMHere's your problem:
    -bash-3.00$ sqlplus IRES_USER/U9$bvs#ir@DBBecaue of the dollar-sign, The shell is trying to expand the environment variable $bvs#ir@DB
    Of course you have no environment variable by that name so what gets passed to sqlplus is not "IRES_USER/U9$bvs#ir@DB", but rather "IRES_USER/U9"
    In your first test, you didn't pass the password on the command line, so the shell didn't get a chance to intercept it.
    You can have a similar issue if you have a '@' in your password
    oracle> sqlplus scott/P@ssword@orclTns will catch that first "@" as the delimiter to the tns string, and come up with something that cant' be resolved.
    Edited by: EdStevensTN on Jun 17, 2011 8:59 AM

  • How to save image into blob:java.sql.SQLException: ORA-01465:nvalid hex

    hi all,
    I am trying to save an image (blob) into oracle. When i try this i am getting following error.
                      java.sql.SQLException: ORA-01465: invalid hex number
                             BLOB blob = BLOB.createTemporary(con , false, BLOB.DURATION_SESSION);
                       String dir = "C:\\opt\\temp";
                       File binaryFile = new File(dir+"/"+filename);
                                FileInputStream instream = new FileInputStream(binaryFile);
                          OutputStream outstream = blob.setBinaryStream(1L);
                          int size = blob.getBufferSize();
                          byte[] buffer = new byte[size];
                          int length = -1;
                          while ((length = instream.read(buffer)) != -1)
                            outstream.write(buffer, 0, length);
                          instream.close();
                          outstream.close();
                                  System.out.println("blob:>>>>>>"+blob);
                    String sqlText =
                              "INSERT INTO test_fileupload (filename, blobfile) " +
                              "   VALUES('" + filename + "','" + outstream  + "')";
                          st.executeUpdate(sqlText);
                          con.commit();In the above Insert statement i tried with "blob" insted of "outstream" still same but when i try with the string "3s34se"
    it is inserting into database..
    I am new to blob can any one explain me why is like that.
    Thanq in adv.
    Edited by: Ajayuppalapati on Nov 21, 2008 4:40 PM

    ORA-01465: invalid hex number
    [http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&f=3&t=012434]
    [http://forums.sun.com/thread.jspa?threadID=261091&forumID=31]

  • I am trying to install premier elements 11 that I purchased back in 2012 on a new machine with 8.1. I get "invalid serial number" when I enter the serial number I received with the original activation e-mail when I purchased the product, thanks!

    I am trying to install premier elements 11 that I purchased back in 2012 on a new machine with 8.1. I get "invalid serial number" when I enter the serial number I received with the original activation e-mail when I purchased the product, thanks!

    Error "The serial number is not valid for this product" | Creative Suite

  • Invalid hex number

    Greetings PL/SQL Greats!
    Can someone please tell me why I am getting "ORA-0464-Invalid hext number" error?
    What is weird is after I executed my stored proc with one file, I get the file copied successfully from db to folder.
    A second try succeeded as well.
    After that, any other attempts to copy from db to folder resulted to error above.
    I am having difficulty wrapping my head around this error.
    Any help is greatly appreciated.
    <pre><code>create or replace PROCEDURE Getblob(pfname VARCHAR2, display_name IN VARCHAR2)
    IS
    vblob BLOB;
    vstart NUMBER := 1;
    bytelen NUMBER := 32000;
    len NUMBER;
    my_vr RAW(32000);
    x NUMBER;
    v_name VARCHAR2(100);
    lv_str_len NUMBER;
    l_output utl_file.file_type;
    BEGIN
    -- define output directory
    --lv_str_len := Length(pfname);
    --v_name := display_name||upper(substr(pfname,lv_str_len-3,lv_str_len));
    v_name := display_name;
    l_output := utl_file.Fopen('/m705/gfile', v_name, 'w', 32760);
    -- get length of blob
    SELECT dbms_lob.Getlength(GFILE_BLOB_VALUE)
    INTO len
    FROM GFILE
    WHERE file_name = pfname;
    -- dbms_output.put_line('Length: '||len);
    -- save blob length
    x := len;
    -- select blob into variable
    SELECT GFILE_BLOB_VALUE
    INTO vblob
    FROM GBFILE
    WHERE file_name = pfname;
    -- if small enough for a single write
    IF len < 32760 THEN
    -- dbms_output.put_line('Single write ');
    utl_file.Put_raw(l_output, vblob);
    utl_file.Fflush(l_output);
    ELSE -- write in pieces
    -- dbms_output.put_line('multi write '||vstart);
    vstart := 1;
    WHILE vstart < len LOOP
    dbms_lob.READ(vblob, bytelen, vstart, my_vr);
    utl_file.Put_raw(l_output, my_vr);
    utl_file.Fflush(l_output);
    -- set the start position for the next cut
    vstart := vstart + bytelen;
    -- set the end position if less than 32000 bytes
    x := x - bytelen;
    IF x < 32000 THEN
    bytelen := x;
    END IF;
    END LOOP;
    END IF;
    dbms_output.Put_line('End');
    utl_file.Fclose(l_output);
    EXCEPTION
    WHEN OTHERS THEN
    dbms_output.Put_line('ERROR');
    END getblob;</code></pre>
    Edited by: sonny on Nov 11, 2011 8:59 AM

    I don't know what to tell you.
    Other than to ask you to please tell me what you saw in the code that convinced you otherwise.
    The one thing I would like to add was that after I executed the code twice, as indicated above, the users asked me if it was possible to grab all the files instead of grabbing the one file at a time as the code shows, I created a different stored proc that has rowid in the WHERE clause.
    I ran the code and it got pretty much every file from the db.
    Problem was that for some reason, it was changing the files to .txt file.
    I decided to go back to using the code I posted above and that's when I started getting the invalid hex number error.
    Does this make more sense?
    Somehow, it seems to me, the code with the ROWID is still somewhere is interferring with this stored proc.
    This purely a guess.

  • ORA-20091: Invalid Application ID when importing APEX 4.0 Application

    Hi Folks
    Anyone got a suggestion on this one?
    Scenario:
    1. Perform an APEX 4.0 Export of application ID 10132 from one workspace
    2. Import the application into another APEX 4.0 workspace and change the application ID whilst doing so.
    3a. During the import process, override the application ID to one that exists in the workspace being imported into.
    In APEX 3.2 you got a warning that you were overwriting an existing app
    In APEX 3.2 this would then complete the exercise with your new app replacing the previous one with the same ID
    In APEX 4.0 I received ORA-20091: Invalid Application ID
    3b. Delete the pre-existing application (e.g. app_id 999) completely in the workspace we intend to import into
    Following successful deletion of the application (app_id 999) attempt to import the application export file from the other workspace
    During the import, use the UI to change the application id from 10132 to 999.
    Still receive the ORA-20091: Invalid Application ID error despite APP ID 999 having been deleted
    4. I got this to work by allowing APEX to simply assign a new application ID
    My problem is that, whilst this was not a problem when importing to our UAT environment, our DEV and Production environments share the same APP ID (10132) this is so that when upgrading the production application, users saved Interactive reports are preserved. This was fine in APEX 3.2 but is, as yet, untested by us in 4.0.
    As things stand at the moment, we have APEX 4.0 in DEV and UAT but this would appear to be a block for us in terms of upgrading production to 4.0.
    Any thoughts, comments and suggestions welcome.
    Many thanks
    Kind regards
    Simon Gadd

    We ran into a similar problem. My initial tests showed the following to be a work around.
    Assumption: You want to end up with the same ID as the original so you don't have to give a new link to everyone.
    1. Before copying the app (lets say it's 333) from 3.2 (3.1 in our case) export it and then import it back, still in 3.x with a different app ID, i.e. 99333.
    2. In ApEx 4: Import the app 99333 and install it with app ID 333 (the original app ID). After this process, I was able to make necessary changes to the app on ApEx 4, export it, and then import it again, still as ID 333.
    I know this sounds very round-about, and I can't explain why it worked, but it worked.
    Disclaimer: I certainly may have missed something that would still make it break. This was the result of a few different test scenarios done in a limited time.
    So, it's probably best to wait for 4.0.1 if you can.
    By the way, I tried creating a brand new app. in ApEx 4, export it and then import it as itself, and I still got the same error. Like I said, I don't know why it worked, but when I imported an older app with one ID into ApEx 4 with a new ID, I was able to export it and then import it again with that same new ID.
    Have a great weekend,
    Gregory

  • Invalid serial number, when reinstalling Adobe Acrobat on same machine.

    Invalid serial number, when reinstalling Adobe Acrobat on same machine.

    And what machine? what version of Acrobat? From what sources do you install? You need to be a lot more specific...
    Mylenium

  • Invalid serial number when activate Creative Suit 6

    I got error
    Invalid serial number
    when activate Creative Suit 6
    Please help

    You need to contact Adobe Support either by chat or via phone when you have serial number and activation issues.
    Here are some links to help make contact:
    http://www.adobe.com/support/chat/ivrchat.html
    http://www.adobe.com/support/download-install/supportinfo/

  • MacBook Pro i5 with retina will not recognize WD Passport even though I successfully used it to transfer programs and files from my older MacBook ten days ago. It receives power from the USB, but when using Time Machine I receive the message that there is

    MacBook Pro i5 with retina will not recognize WD Passport even though I successfully used it to transfer programs and files from my older MacBook ten days ago. It receives power from the USB, but when using Time Machine I receive the message that there is not an external device connected.

    If the modem is also a router, either use the modem in bridge and run pppoe client on the TC.. that is assuming ADSL or similar eg vdsl. If it is cable service.. and the modem is a router, then bridge the TC.. go to internet page and select connect by ethernet and below that set connection sharing to bridge.
    Please tell us more about the modem if the above gives you issues.

  • Invalid Serial Number when installing Acrobat 9 on new PC

    Invalid Serial Number when installing Acrobat 9 on new PC

    I wonder if this is related to the previous version issue with Acrobat 8 that displayed the same or similar error?
    Here is the text from a very old document for Acrobat 8 KB if you want to try it but I don't know if it will work
    Error: "You have entered an invalid serial number..." when you try to launch Acrobat 8 Standard on a Dell computer
    Issue
    When you try to launch Adobe Acrobat 8 Standard on a Dell computer, the program returns the error message, "You have entered an invalid serial number. Please re-install Adobe Acrobat 8 Standard and enter a valid serial number when asked."
    Solution
    Check the alm_config_files folder for a duplicate AdobeConfig.xml file.
    Navigate to the following folder:
    C:\Program Files\Adobe\Acrobat 8.0\Acrobat\alm_config_files
    The following two files should appear in this folder:
    AdobeConfig.xml
    AdobeConfig.xml.aiwbf
    Delete the AdobeConfig.xml file.
    Rename the AdobeConfig.xml.aiwbf to AdobeConfig.xml by deleting the "aiwbf" suffix.
    Launch Acrobat 8 Standard.
    Additional Information
    On some Dell computers, a duplicate AdobeConfig.xml file is created when Acrobat 8 Standard is installed. The AdobeConfig.xml file without the "aiwbf" suffix is written for a volume-license version. The correct AdobeConfig.xml file is given the suffix. When a retail version of Acrobat tries to read the volume-license AdobeConfig.xml file, Acrobat returns the error.

Maybe you are looking for