Imp problem on --- jobs

I have a 9i database exp file called test.dmp. I need to imp to 10.2 g database. I can import everything else but jobs. Following is the error message I got. I checked the 10.2 database, there is no jobs running on that database for that schema.
Any help is appraciated.
import done in US7ASCII character set and AL16UTF16 NCHAR character set
import server uses AL32UTF8 character set (possible charset conversion)
. importing APS's objects into APS
IMP-00017: following statement failed with ORACLE error 1:
"BEGIN SYS.DBMS_IJOB.SUBMIT(JOB=>2,LUSER=>'APS',PUSER=>'APS',CUSER=>'APS',"
"NEXT_DATE=>TO_DATE('2007-06-05:02:13:02','YYYY-MM-DD:HH24:MI:SS'),INTERVAL="
">'SYSDATE+30/1440 ',BROKEN=>FALSE,WHAT=>'APS.ACC_LOCK;',NLSENV=>'NLS_LANGUA"
"GE=''AMERICAN'' NLS_TERRITORY=''AMERICA'' NLS_CURRENCY=''$'' NLS_ISO_CURREN"
"CY=''AMERICA'' NLS_NUMERIC_CHARACTERS=''.,'' NLS_DATE_FORMAT=''DD-MON-RR'' "
"NLS_DATE_LANGUAGE=''AMERICAN'' NLS_SORT=''BINARY''',ENV=>'0102000200000000'"
"); END;"
IMP-00003: ORACLE error 1 encountered
ORA-00001: unique constraint (SYS.I_JOB_JOB) violated
ORA-06512: at "SYS.DBMS_IJOB", line 210
ORA-06512: at line 1

There is already a job number 2 on the destination database. The job number is independent of the user/owner of the job. You have three choices...
1) drop the existing job 2
2) copy and past the script provided in the import log, edit it to change the job number, clean up the text as necessary, and submit it yourself.
3) use a gui tool of some sort to create the job, all the information you need is provided in the dml dumped into the log.

Similar Messages

  • Problem creating job steps variants

    Hi Gurus!
    I have a problem with job steps creation.
    In my program I need to copy the exist job with some condition accords to job steps variants.
    But when I create the new job and it steps and variants in SM37, I can not see the variants names, only number.
    For example in template that I am copying it looks like that:
    No. Program name/command      Prog. type  Spool list   Parameters              User Lang.
    1              RMCVNEUA                  ABAP                        BW_TEMPLATE       aaa     EN
    But in job that I create it is:
    Program name/command      Prog. type   Spool list   Parameters               User  Lang.
    RMCVNEUA                          ABAP                           &0000000000271     ddd     EN
    How can I create steps with variant names instead of numbers/indexes?   BW_TEMPLATE instead of &0000000000271.
    My code:
    CALL FUNCTION 'JOB_OPEN'
        EXPORTING
          jobname          = lv_jobname
          sdlstrtdt        = lv_date
          sdlstrttm        = lv_time
        IMPORTING
          jobcount         = lv_jobcount
        EXCEPTIONS
          cant_create_job  = 1
          invalid_job_data = 2
          jobname_missing  = 3
          OTHERS           = 4.
    SUBMIT (ps_tbtcp-progname) VIA JOB pv_jobname NUMBER pv_jobcount
                                     USING SELECTION-SET ls_cat-variant
                                     AND RETURN.
    CALL FUNCTION 'JOB_CLOSE'
        EXPORTING
          jobcount                          = lv_jobcount
          jobname                           = lv_jobname
         direct_start                      = lv_imm_run
       EXCEPTIONS
         cant_start_immediate              = 1
         invalid_startdate                 = 2
         jobname_missing                   = 3
         job_close_failed                  = 4
         job_nosteps                       = 5
         job_notex                         = 6
         lock_failed                       = 7
         invalid_target                    = 8
         OTHERS                            = 9
    Edited by: Dani_K on Oct 27, 2010 4:35 PM

    No any suggestions?

  • Problem with job scheduling

    When I execute that job :
    VARIABLE nojob NUMBER;
    begin
    DBMS_JOB.SUBMIT(:nojob,'my_proc();', sysdate, 'sysdate + 15/24');
    end;
    the job is submitting successfully, but it can't run automatically. If I force it :
    begin
    DBMS_JOB.RUN(:nojob);
    end;
    I've the following error :
    ERROR at line 1:
    ORA-12011: execution of 1 Jobs failed
    ORA-06512: at "SYS.DBMS_IJOB", line 394
    ORA-06512: at "SYS.DBMS_JOB", line 267
    ORA-06512: at line 2
    Have you already seen that problem !
    And do you know how resolve it?
    Thanks.
    null

    Same Problem persists. I removed ':' from my code and tried again, No progress. Here is my code and error message again when I try to run the job manually by dbms_job.run(jobno).
    DECLARE
    jobno number;
    BEGIN
    DBMS_JOB.SUBMIT(jobno,
    'dbms_utility.analyze_schema(''JHTMW_TU_KAMAL'',''COMPUTE'');',
    SYSDATE, 'NEXT_DAY(TRUNC(SYSDATE), ''WEDNESDAY'') + 13/24');
    COMMIT;
    END;
    The error code is
    SQL> exec dbms_job.run(21);
    BEGIN dbms_job.run(21); END;
    ERROR at line 1:
    ORA-12011: execution of 1 jobs failed
    ORA-06512: at "SYS.DBMS_IJOB", line 394
    ORA-06512: at "SYS.DBMS_JOB", line 276
    ORA-06512: at line 1
    Michael
    My job processes are on. I have a value 2 set for job_queue_processes and the value 10 is set for job_queue_interval in my init.ora file.
    null

  • Problem scheduling job in userexit_save_document

    Hi,
    I'm struggling with this problem for a while now, and can't seem to find any logical reason why should SAP behave like this:
    In the user-exit include MV50AFZ1 (for SAPMV50A) I have a piece of code that  makes some checks, and then using internal structure XLIPS schedules a job with some delay in it - this allows me to make sure data is updated at the time my program is sumbmited (this program sends Idocs via EDI). Somehow, although I have all the possible checks and the program seems to reach this point only once per delivery saved (checked with a break user) <b>I always get 2 jobs per delivery</b>, and consequently two idocs!? I'm expecting a single job per delivery/run, and a step for each delivery line, but somehow it's not working....
    Here's my code in the form userexit_save_document:
    DATA: itab_data  LIKE xlips OCCURS 0,
            itab_b021  LIKE b021 OCCURS 0,
            itab_b009  LIKE b009 OCCURS 0,
            wa_b021 LIKE LINE OF itab_b021,
            wa_b009 LIKE LINE OF itab_b009,
            wa_data    LIKE LINE OF itab_data,
            l_jobname  TYPE tbtcjob-jobname,
            l_jobcount TYPE tbtcjob-jobcount,
            objky      TYPE nast-objky,
            start_time TYPE sy-uzeit,
            f_zwma,
            f_job_trig,
            number TYPE i value 1.
      DATA: wa_nast LIKE nast.
      CLEAR: f_zwma,
             f_job_trig,
             wa_nast,
             wa_data,
             wa_b021,
             wa_b009.
      IMPORT f_job_trig FROM MEMORY ID 'ZML_ZWMA'.
      IF f_job_trig IS INITIAL.
      itab_data[] = xlips[].
    *-- Preliminary check: no NAST record with processed ZWMA
      LOOP AT itab_data INTO wa_data.
        CONCATENATE wa_data-vbeln wa_data-posnr INTO objky.
        SELECT SINGLE *
               FROM nast
               INTO wa_nast
               WHERE objky = objky
               AND   kschl = 'ZWMA'
               AND ( vstat = '1'
                 OR  vstat = '2' ).
        IF sy-subrc = 0.
          f_zwma = 'X'.
          EXIT.
        ENDIF.
      ENDLOOP.
      IF f_zwma IS INITIAL.
    *-- Get conditions
        SELECT * FROM b021
                 INTO CORRESPONDING FIELDS OF TABLE itab_b021
                 WHERE kappl = 'V2'
                 AND   kschl = 'ZWMA'.
        SELECT * FROM b009
                 INTO CORRESPONDING FIELDS OF TABLE itab_b009
                  WHERE kappl = 'V2'
                  AND   kschl = 'ZWMA'.
        LOOP AT xlikp.
          READ TABLE itab_b021 INTO wa_b021
                               WITH KEY lfart = xlikp-lfart
                                        vstel = xlikp-vstel.
          IF sy-subrc NE 0.
            READ TABLE itab_b009 INTO wa_b009
                       WITH KEY lfart = xlikp-lfart.
            IF sy-subrc NE 0.
              f_zwma = 'X'.
              EXIT.
            ELSE.
              EXIT.
            ENDIF.
          ELSE.
            EXIT.
          ENDIF.
        ENDLOOP.
        IF f_zwma IS INITIAL.
    *-- Delete items not relevant for picking from selection
          CLEAR wa_data.
          LOOP AT itab_data INTO wa_data.
            SELECT SINGLE *
                   FROM tvlp
                   WHERE pstyv = wa_data-pstyv.
            IF sy-subrc = 0.
              IF tvlp-komrl NE 'X'.
                DELETE itab_data INDEX sy-tabix.
                CONTINUE.
              ENDIF.
            ENDIF.
            IF wa_data-lfimg = 0.
              DELETE itab_data INDEX sy-tabix.
              CONTINUE.
            ENDIF.
          ENDLOOP.
          IF NOT itab_data[] IS INITIAL.
            CLEAR: l_jobcount.
            MOVE: 'ZML_ZWMA' TO l_jobname.
            start_time = sy-uzeit + 10.      "delay the job running for 10 secs
    *-- Open Job
            CALL FUNCTION 'JOB_OPEN'
              EXPORTING
                jobname          = l_jobname
              IMPORTING
                jobcount         = l_jobcount
              EXCEPTIONS
                cant_create_job  = 01
                invalid_job_data = 02
                jobname_missing  = 03.
            LOOP AT itab_data INTO wa_data.
            SUBMIT zwm_ml_zwma_trigger user sy-uname
                                       VIA JOB l_jobname NUMBER  l_jobcount
                                       WITH p_lgnum = wa_data-lgnum
                                       WITH p_vbeln = wa_data-vbeln
                                       WITH p_posnr = wa_data-posnr
                                       AND RETURN.
            CLEAR wa_data.
            ENDLOOP.
              f_job_trig = 'X'.
              EXPORT f_job_trig TO MEMORY ID 'ZML_ZWMA'.
              CLEAR f_job_trig.
    *--  Close the job
            CALL FUNCTION 'JOB_CLOSE'
              EXPORTING
                jobcount             = l_jobcount
                jobname              = l_jobname
                sdlstrtdt            = sy-datum
                sdlstrttm            = start_time
                strtimmed            = 'X'
              EXCEPTIONS
                cant_start_immediate = 01
                invalid_startdate    = 02
                jobname_missing      = 03
                job_close_failed     = 04
                job_nosteps          = 05
                job_notex            = 06.
          ENDIF.
        ENDIF.
      ENDIF.
      ENDIF.
    Any ideas would be more than welcome !!!
    Helpfull answers will of course be rewarded!

    CALL FUNCTION 'JOB_OPEN'
              EXPORTING
                jobname          = l_jobname
              IMPORTING
                jobcount         = l_jobcount
              EXCEPTIONS
                cant_create_job  = 01
                invalid_job_data = 02
                jobname_missing  = 03.
    <b>
            LOOP AT itab_data INTO wa_data.</b>
    why r u LOOPING here in itab_data. I believe ITAB has 2 entries in it. thts y it is getting executed f 2 times.
    U can use
    READ itab_data into wa_data with some key/Index 1.
    If sy-subrc EQ 0.
            SUBMIT zwm_ml_zwma_trigger user sy-uname
                                       VIA JOB l_jobname NUMBER  l_jobcount
                                       WITH p_lgnum = wa_data-lgnum
                                       WITH p_vbeln = wa_data-vbeln
                                       WITH p_posnr = wa_data-posnr
                                       AND RETURN.
            CLEAR wa_data.
    ENDif.
            <b>ENDLOOP</b>.
              f_job_trig = 'X'.
              EXPORT f_job_trig TO MEMORY ID 'ZML_ZWMA'.
              CLEAR f_job_trig.
    *--  Close the job
            CALL FUNCTION 'JOB_CLOSE'
              EXPORTING
    Hope this will help
    Thanks
    Ashwani

  • Problem submitting jobs in OEM

    Hi,
    I've been trying to utilize backup manager inside the OEM, and finally, I am able to log into OEM, my preferred credentials are set properly to user oracle, my user has been given the logon as batch job privilage.
    I've also given my user Full Control to my Oracle Home directory. Prior, I only gave it read/write privilages, and it gave me the error "operating system resource shortage". Now, after Full Control, it tells me "Access is denied".
    What have I missed? Is there some addition permissions I need to assign? Please help. I feel like I'm almost there, but as a novice, am missing the last clues.
    Thanks in advance,
    Willis Chang
    Oracle 8.1.7
    Windows 2000 Professional

    Hi Rajkumar,
    I can definitely help you with that part. However, you may end up in the same boat as me. Or maybe you might be able to help me figure out my problem afterward.
    First, you are supposed to be using an NT (2000) account as your preferred credentials. I hope you already know that.
    Secondly, you need to assign that user to the Administrators group and the ORADBA group.
    Thirdly, in your problem, you need to go to Control Panel > Administrative Tools > Local Security Policy
    Then you navigate the following tree:
    Local Policies > User Rights Management > Logon as a batch job. Assign your user that right, and it should start working. Please post again so that I know if you were successful, as it might help me figure out my problem.
    Thanks,
    Willis

  • Problem with job RDDEXECL (STMS)

    Hi Coleagues
    The problems is that  job RDDEXECL(Execution of programs for post - import processing) is canceled during execution.
    with the error:
    *What happened?
        Error in ABAP application program.
        The current ABAP program "SAPLPRGN_UTILITIES" had to be terminated because one
         of the
        statements could not be executed.
        This is probably due to an error in the ABAP program.
        In program "SAPLSUPRN ", the following syntax error occurred
        in the Include "LSUPRNF3J " in line 117:
        "Different number of parameters in FORM and PERFORM (routine: AUTH_NEW_"
        "AUTH, number of formal parameters: 3, number of actual parameters: 2)."
        Author and last person to change the Include are:
        Author "SAP "
        Last changed by "SAP "*
    I have  performed  the checking of syntax for programs involved and checked if occur some change in this programs  recently.
    I not found nothing.
    My sap is ECC 5.0 on Unix with oracle .
    Could anyone let me know where is the issue please ?

    Hi Deepika
    The version of this report is the same in the all environments. In the others environments this report works without problems.
    More details about error:
    A Thu Jan  5 21:57:51 2012
    A  *** ERROR => Syntax error in program SAPLSUPRN                               
    A  *** ERROR => > Include LSUPRNF3J                                line 117
    A  *** ERROR => > Different number of parameters in FORM and PERFORM (routine: AUTH_NEW_AUTH, numb
    A  *** ERROR => > er of formal parameters: 3, number of actual parameters: 2).
    tks
    Edited by: Marcos A. Magalhães Jr on Jan 5, 2012 10:32 PM

  • Problem with job sceduling

    Hi experts,
    i have schedule a job, but it could not executed because the system was down.
    like i schedule my job at 1:00 PM, but system is shutdown at that time, so the job could not executed,
    so i want to execute the same job again on some event like at system start etc.
    how can i do this, please suggest
    regards,

    I believe that the link below will solve your problem ..
    http://help.sap.com/saphelp_nw70/helpdata/en/c4/3a7f87505211d189550000e829fbbd/frameset.htm
    For further reference you can use the book
    *Job scheduling for SAP by Sap press ... *
    Really good book ..
    If your issue is that you want the job to happen if not at the scheduled time then at startup you can simply schedule the job twice both at the particular time as well as on Startup ..
    Hope this helps ..
    Regards
    Manthan

  • Imp problem

    Hi Team
    I am facing very strange problem at the time of import
    pls. go through the error.
    IMP-00032: SQL statement exceeded buffer length
    IMP-00008: unrecognized statement in the export file:
    'Oracle_Database returns one entry for each database that is managed by Oracle
    Enterprise Manager. View entries are created using the databases that are known
    to the Enterprise Manager Management Repository. Note: A Real Application
    Cluster is presented...
    IMP-00032: SQL statement exceeded buffer length
    IMP-00008: unrecognized statement in the export file:
    'Oracle_DatabaseInstance contains one entry for each Oracle Instance that is
    centrally managed. A Real Application Cluster has one entry for each of the
    instances that manipulate it. Instances of Oracle_DatabaseInstance are created
    using the database ...
    IMP-00032: SQL statement exceeded buffer length
    IMP-00008: unrecognized statement in the export file:
    'An Oracle_DatabaseSystem represents the existence of an Oracle database
    environment as a manageable entity. Instances of Oracle_DatabaseSystem are
    used to navigate to the software characteristics of the database environment
    that are modeled within the...
    IMP-00032: SQL statement exceeded buffer length
    IMP-00008: unrecognized statement in the export file:
    'The AssociatedDBSystem association identifies the database system that was used
    to create the database.This association links an Oracle Database with
    thedatabase system elements that are related.'
    IMP-00032: SQL statement exceeded buffer length
    IMP-00008: unrecognized statement in the export file:
    'Oracle_DBInstanceStatistics contains statistics for a database instance. These
    are retrieved from the Oracle Managment Repository that is managing the
    database upon request from a managment client.'
    IMP-00032: SQL statement exceeded buffer length
    IMP-00008: unrecognized statement in the export file:
    'Oracle_DatabaseStatistics provides current information about the statistics for
    a database. Database statistics pertain to the database and have the same
    value regardless of the database instance that is used.'
    IMP-00032: SQL statement exceeded buffer length
    IMP-00008: unrecognized statement in the export file:
    'Oracle_CurrentDBInstanceStats is an association that relates a Oracle database
    instance to its current statistical information.'
    "BEGIN SYS.DBMS_SNAPSHOT_UTL.SYNC_UP_LOG('BUSINESSDATA','ACCSTAT'); END;"
    IMP-00003: ORACLE error 1435 encountered
    ORA-01435: user does not exist
    ORA-06512: at "SYS.DBMS_ISNAPSHOT", line 108
    ORA-06512: at "SYS.DBMS_SNAPSHOT_UTL", line 1666
    ORA-06512: at line 1
    IMP-00000: Import terminated unsuccessfully
    Regards,
    Vika

    IMP-0032 is your real error.
    The BUFFER size specified for the import is too small. Oracle is unable to interpret the contents of the dump file and what is actually data (content) is seen as if it is an SQL command.
    You should import with a larger BUFFER size. Set it to a few tens of MBs so that even data (i.e. multiple rows) is buffered properly.
    Hemant K Chitale

  • Problems running jobs in db 10gR2 from owb 10.1.0.4

    Hi all,
    we have a little problem, we can not run jobs through the deployment manager. The deployment is ok but instead of something running we get to see nothing at all. I already noticed some minor problems that could be solved by granting a few privileges and I am afraid there are a few more missing.
    The installation was a fresh 10.2.0.2 database in which a new runtime repository and schema was created. In the location we specified 10.2 as target database release.
    Is any tip available about where to check ?
    What log/trace could be usefull ?
    Who is running this combination for production ?
    thanks.
    Ronald.

    Thanks for the pointer, it did not help ...
    We opened a TAR and we were suggested changing to owf 2.6.3 instead of 2.6.4. This looks a bit weird to me since as fas as I remember 2.6.4 ( from the 10gR2 companion cd) was installed ... This seems to be working ok now.
    Ronald
    http://ronr.nl/unix-dba

  • Problems with jobs

    Hello, I never have had used jobs in oracle, I need create a job for my procedure, but now i have current problem:
    DECLARE
      X NUMBER;
    BEGIN
      SYS.DBMS_JOB.SUBMIT
      ( job       => X
       ,what      => 'BIS.PRC_FIN_ATUCREDNOTURNA(SYSDATE);'
       ,next_date => to_date('01/08/2011 10:27:20','dd/mm/yyyy hh24:mi:ss')
       ,interval  => 'SYSDATE+30/1440 '
       ,no_parse  => FALSE
      SYS.DBMS_OUTPUT.PUT_LINE('Job Number is: ' || to_char(x));
    COMMIT;
    END;
    Result: 09:57:53 Info: Job #1 could not be executed.  ORA-12011: a execute  job failed
    ORA-06512: em "SYS.DBMS_IJOB", line 406
    ORA-06512: em "SYS.DBMS_JOB", line 275
    ORA-06512: em line 1how you see, the job failed, I need execute the procedure 30 minutes in 30 minutes, what is the problem?
    how create a schedule? it is necessary?
    Thanks!
    Edited by: BluShadow on 01-Aug-2011 14:13
    added {noformat}{noformat} tags.  Please read {message:id=9360002} to learn to do this yourself.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    What's your database version?
    If it's 10g or above you should be using the newer DBMS_SCHEDULER package.
    First guess from me...
    Add, BEGIN and END to your "what" line...
       ,what      => 'BEGIN BIS.PRC_FIN_ATUCREDNOTURNA(SYSDATE); END;'

  • F150 and problem with job deleted

    Hi all,
    I have a problem with F150: we have made a dunning session,
    but the batch job was manually stopped and than deleted.
    Now I don't know how to delete the dunning run (all delete
    option are unabled), and if we execute another session the customer
    are blocked by this dunning run.
    Someone know how to delete it?
    Thanks in advance
    Alessio

    Hi,
    Can u check whether Dunning Notices - Delete Dunning run disabled?
    If no dunning notice has been printed - try to restart the session thru SM35.
    Regards,
    Sridevi
    <i>Assign points, if useful</i>

  • Imp problem, IMP-00010 header file error

    Hi all,
    I downloaded the global sample schema from http://www.oracle.com/technology/products/bi/olap/index.html. There is an dump file in sample and when I want to imp the file I got the error IMP-00010.
    I search the forum and understood that the problem might be the "http download" I made. But otn doesnt allow ftp download.
    Anyone has any suggestion?
    thanks
    yasemin

    The error code says this:
    IMP-00010 not a valid export file, header failed verification
    Cause: Either the file was not generated by Export or it was corrupted.
    Action: If the file was indeed generated by Export, report this an Import bug and submit the export file to Oracle Support Services.
    I want suggest you to use the latest version of "imp" that you can. Also I want suggest you to do the import in the server side with the server executables and not in a client station.

  • Exp/imp problem

    Hi,
    I am trying to export on my solaris machine. But the problem is, there is no space on the machine (as much big as the db). So can i export. Please advice
    Regards

    use mknod to zip the file simultaneously while taking the backup
    mknod pipe_name p
    gunzip <emma_new.dmp.gz >pipe_name &
    imp system/team4u file=pipe_name log=imp_emma_rows.log tables=MNTC_EVENT_TIMELINE_HIST fromuser=emma_new touser=emma_new rows=y
    mknod pipe_name p
    gzip <pipe_name >emma_new.dmp.gz &
    exp system/team4u file=pipe_name log=imp_emma_rows.log tables=MNTC_EVENT_TIMELINE_HIST fromuser=emma_new touser=emma_new rows=y
    or take export from remote machine where space is there

  • IMP Problem - Synonyms missing

    Sir,
    I am doing an IMPORT. Database - 9.2.0.1.0 OS:Windows 2000
    I create all the 9 users
    MHUBADMIN, MHUBUSER, MHUBARCHIVE, PPA, PPAUSER, SLIDE, SLIDEUSER, leads, wmc
    and assigned default tablespace and
    CONNECT,RESOURCE privilege to all users.
    Import is working fine. The PROBLEM is, there are some synonyms in SLIDE schema, that is not getting imported.
    I generated a import logfile by SHOW option.
    "CREATE SYNONYM "BINDING" FOR "SLIDE"."BINDING""
    "CREATE SYNONYM "BRANCH" FOR "SLIDE"."BRANCH""
    "CREATE SYNONYM "OBJECT" FOR "SLIDE"."OBJECT""
    "CREATE SYNONYM "PARENT_BINDING" FOR "SLIDE"."PARENT_BINDING""
    "CREATE SYNONYM "PROPERTIES" FOR "SLIDE"."PROPERTIES""
    "CREATE SYNONYM "VERSION_CONTENT" FOR "SLIDE"."VERSION_CONTENT""
    "CREATE SYNONYM "VERSION" FOR "SLIDE"."VERSION""
    "CREATE SYNONYM "URI" FOR "SLIDE"."URI""
    These object are available in show.log.
    But whilt importing it is missing.
    Please help me.
    regards
    Mathew

    Hi,
    >>Import is working fine. The PROBLEM is, there are some synonyms in SLIDE schema, that is not getting imported.
    Are you sure ? Is not possible create a synonym with same name as object.
    USER01@ORACLE10> create synonym test for user01.test;
    create synonym test for user01.test
    ERROR at line 1:
    ORA-01471: cannot create a synonym with same name as objectThen, In which user these synonyms were created ?
    Did you imported this user ? What imp full command did you type ?
    Cheers

  • 'Laserjet 1022n Windows Update' causing printing problems: print jobs don't stop printing

    Hello,
    a few days ago, I installed the Laserjet 1022n Windows Update on my Windows 7 64 bits and since then, I can't print a page normally: the page doesn't stop printing. I am using a network port with TCP/IP.
    I made several trials to solve this problem:
    - uninstall the printer driver and installing it again (I tried the last version on the HP site and an older one that worked perfectly before)
    - update the firmware of the printer to the last version on the HP site.
    When I pause the printer and start the print job, you see it arriving in the list. Resuming the printer, the print starts on the printer but you see that the job stays in the list, flashing again and again. The printer keeps printing the same page.
    I don't know what I can do to solve this problem. There is no mean of uninstalling the HP Laserjet 1022n software update because it doesn't appear in the list of installed programs (well on the list of the done updates by the way op windows updates).
    I have the same problem printing on the same printer from another Windows  7 PC (with the same windows update done)
    But I have no problem printing with my laptop on another network printers.
    Is there someone having the same problem and how to solve it ?
    Thanks for answering
    This question was solved.
    View Solution.

    I found the solution on this site : http://www.tomshardware.co.uk/forum/59912-29-1022n-printer-stop-printing
    You just have to uncheck the chekbox "Enable two-way communication" on the "Ports" tab of the printer properties and it works normally again !!!!

Maybe you are looking for

  • Does Time Machine use a differential/delta file compression when copying files ?

    Hello, I would like to use Time Machine to backup to a MacBook Air but that computer is using a Virtual Machines store in a single file of 50 GBytes. Once the initial backup will be done, does Time Machine will only copy the changes in this large fil

  • Exactly how do I get mp3s onto my N97

    I'm sure this is a real basic question, but Nokia's software is once again proving to be mind bogglingly difficult to use. Could someone give me some pointers, I'm sure it must be possible 1) I've tried installing Nokia music. I imported a directory

  • Push button signal to parallel port to trigger a process

    I just need to connect a push button to the parallel port to set it as a trigger signal for a process. When push button is pressed, labview executes a process. Kindly help me how to do this, the wiring please Regards Grugh Mike Success is Everything

  • Connect fios cable to pc.

    How do i connect fios cable to my pc and use the signal with Windows Media center. I have connected the fios cable directly to the back of my pc. (RF in) When I try to set up tv in Windows Media center it cannot find the tv signal. Is there another p

  • JDeveloper Unexpected Server error

    Hi, There is some problem in my JDeveloper 11.1.1.5.0. It is giving following exception and I do not know why. I also re-installed the JDeveloper but still getting the same problem. I also tried to ignore this but in vain. Please see this snap http:/