Problem exporting/Importing alerts

Hi all,
We have alerts that calls the same plan, each alert passed a different parameter to the plan.
When trying to migrate from one environment to another (using icommand).
When exporting the alerts using Icommand, the internal plan id appears in the xml file.
As a result, import of alerts fails since when importing the plans they are issued new internal ids).
We tried using mode=preserveid on import, but it does not help since the plans do not contain ids.
Any ideas how to solve this ?
Thanks in advance,
Alon

Hi,
I tried to reproduce the problem but found that the Icommand export of alert refers to the plan by name.
What exactly is the error you were getting.
Created a plan and an alert that runs the plan, exported both, then deleted both and imported them which worked
Thanks

Similar Messages

  • Problem Exporting / Importing print forms with program RSTXSCRP

    Hi!
    there is problem Exporting / Importing print forms with program RSTXSCRP.
    when I transfer print form from one SAP system to other, logo image and some text is missing... what could be the reason?
    Maybe there is other way to transfer print forms between SAP systems without using program RSTXSCRP?
    Will reward,
    Mindaugas

    Hi,
    when you transfer print forms from one sap system to another, logos are not transfered automatically. these are actually .bmp files which need to be existing in every client. then only when you run your print program logo can be seen in your print output. hence logos need to be created explicitly in every client where you want to run your print program.
    thanks,
    sksingh

  • Problems Export/Import on Windows x64 with SQL2005 x64

    Hi All:
    After successful export with R3Load of a ECC5.00 (Kernel 6.40 Patch level 171) when we import the data into SQL2005 SP1 and after successful import into the target database, we have some inconsistencies in several DYNPROS, we got errors like this when we run several transactions:
    BZW Error 2 during compression/decompression ( UNPAC)
    AB0 Run-time error "DYNPRO_SYNTAX_ERROR" occurred
    and in the trace files we found:
    Fri Feb 23 16:12:35 2007
    ***LOG BZW=> error 2          on compression/decompression using UNPACK     [dbdynp#1 @ 842] [dbdynp  0842 ]
    ERROR => Involved dynpro: SAPMF02D                                 - 0101
    dbdynp.c     842]
    ERROR => DY-SRC_READ BUFFER: any error 4 [dgdynp.c     1225]
    It seems the DYNPROSOURCE table contains bad entries, but the export/import procedure was successful, we also execute "Tools for MS SQL" successfully.
    Any help will be greatly appreciated...!!!
    Regards,
    Federico

    Hi Federico
    Seems there is some problem in kernals.I would suggest a solution :Solution: Copy <putdir>\exe to $(DIR_EXE_ROOT)\$(OS_UNICODE)\NTAMD64
    and repeat phase.    
    Let me know if it works.
    Also check the numbers in instance problem,it should not be more than 20 for windows.
    Reward points

  • Problems exporting / importing symbols across modules

    I have a situation where i have to export a function from one module and call it from the other. In linux you typically do an EXPORT_SYMBOL(sym) to make it visible to the kernel. In solaris as long as function is not static the symbol is visible to the rest of the kernel namespace.
    But my driver that calls the function from the other module fails to load cribbing "/kernel/drv/sparcv9/betaDrv: undefined symbol"
    Here in my code the alphaDrv module has a function "export_from_alpha" which is called by betaDrv module.
    OS is Solaris9 (64bit kernel) on SPARC
    Code for alphaDrv:
    #include <sys/modctl.h>
    #include <sys/conf.h>
    #include <sys/devops.h>
    #include <sys/cmn_err.h>
    #include <sys/ddi.h>
    #include <sys/sunddi.h>
    #include <sys/stat.h>
    #include <sys/stack.h>
    #include <sys/frame.h>
    #include <sys/kobj.h>
    #include <sys/ksynch.h>
    #include <sys/copyops.h>
    #include <sys/disp.h>
    dev_info_t *g_dip;
    /* Function exported from alphaDrv to be called from betaDrv */
    char *export_from_alpha(void)
      cmn_err(CE_CONT, "Houston, receiving you loud and clear !!");
      return "Hello World !";
    static int alpha_open(dev_t *devp, int flag, int otyp, cred_t *credp)
      return 0;
    static int alpha_close(dev_t dev, int flag, int otyp, cred_t *credp)
      return 0;
    static int alpha_read_write(dev_t dev, struct uio *uiop, cred_t *credp)
      return 0;
    static int alpha_info(dev_info_t *dip, ddi_info_cmd_t infocmd, void *arg, void **result)
      int rc = DDI_FAILURE;
      cmn_err(CE_CONT, "EntryPoint(ALPHA) - alpha_info");
      switch(infocmd)
      case DDI_INFO_DEVT2DEVINFO:
        *result = g_dip;
        rc = DDI_SUCCESS;
      case DDI_INFO_DEVT2INSTANCE:
        *result = (void *)getminor((dev_t)arg);
        rc = DDI_SUCCESS;
        break;
      default:
        *result = NULL;
        break;
      return rc;
    static int alpha_attach(dev_info_t *dip, ddi_attach_cmd_t cmd)
      int inst = ddi_get_instance(dip);
      cmn_err(CE_CONT, "EntryPoint(ALPHA) - alpha_attach");
      switch(cmd)
      case DDI_ATTACH:
        if(ddi_create_minor_node(dip, "ALPHA1", S_IFCHR, inst, DDI_PSEUDO, 0))
          return DDI_FAILURE;
        g_dip = (void *)dip;
        break;
      case DDI_RESUME:
        break;
      default:
        return (DDI_FAILURE);
      return (DDI_SUCCESS);
    static int alpha_detach(dev_info_t *dip, ddi_detach_cmd_t cmd)
      int inst = ddi_get_instance(dip);
      cmn_err(CE_CONT, "EntryPoint(ALPHA) - alpha_detach");
      switch(cmd)
        case DDI_DETACH:
          ddi_remove_minor_node(dip, NULL);
          break;
        default:
          return (DDI_FAILURE);
      return (DDI_SUCCESS);
    /* Driver specific implementations */
    static struct cb_ops alpha_cb_ops = {
      alpha_open,
      alpha_close,
      nodev,
      nodev,
      nodev,
      alpha_read_write,
      alpha_read_write,
      nodev,
      nodev,
      nodev,
      nodev,
      nochpoll,
      ddi_prop_op,
      (struct streamtab *)NULL,
      D_MP | D_64BIT,
      CB_REV,
      nodev,
      nodev
    static struct dev_ops alpha_dev_ops = {
      DEVO_REV,
      0,
      alpha_info,
      nulldev,
      nulldev,
      alpha_attach,
      alpha_detach,
      nodev,
      &alpha_cb_ops,
      (struct bus_ops *)NULL,
      nulldev
    static struct modldrv alpha_modldrv = {
      &mod_driverops,
      "ALPHA Driver",
      &alpha_dev_ops
    static struct modlinkage alpha_modlinkage = {
      MODREV_1,
      (void *)&alpha_modldrv,
      NULL
    int _init(void)
      int rc;
      cmn_err(CE_CONT, "EntryPoint(ALPHA) - _init");
      rc = mod_install(&alpha_modlinkage);
      if(rc)
        cmn_err(CE_CONT, "Failed to install driver(ALPHA) - %d", rc);
      return rc;
    int _info(struct modinfo *modInfop)
      int rc;
      cmn_err(CE_CONT, "\n\n\nEntryPoint(ALPHA) - _info");
      rc = mod_info(&alpha_modlinkage, modInfop);
      if(!rc)
        cmn_err(CE_CONT, "Failed to get driver info(ALPHA) - %d", rc);
      return rc;
    int _fini(void)
      return(mod_remove(&alpha_modlinkage));
    }Code for betaDrv:
    #include <sys/modctl.h>
    #include <sys/conf.h>
    #include <sys/devops.h>
    #include <sys/cmn_err.h>
    #include <sys/ddi.h>
    #include <sys/sunddi.h>
    #include <sys/stat.h>
    #include <sys/stack.h>
    #include <sys/frame.h>
    #include <sys/kobj.h>
    #include <sys/ksynch.h>
    #include <sys/copyops.h>
    #include <sys/disp.h>
    dev_info_t *g_dip;
    /* Extern declartion for the function imported from alphaDrv */
    char *export_from_alpha(void);
    static int beta_open(dev_t *devp, int flag, int otyp, cred_t *credp)
      return 0;
    static int beta_close(dev_t dev, int flag, int otyp, cred_t *credp)
      return 0;
    static int beta_read_write(dev_t dev, struct uio *uiop, cred_t *credp)
      return 0;
    static int beta_info(dev_info_t *dip, ddi_info_cmd_t infocmd, void *arg, void **result)
      int rc = DDI_FAILURE;
      cmn_err(CE_CONT, "EntryPoint(BETA) - beta_info");
      switch(infocmd)
      case DDI_INFO_DEVT2DEVINFO:
        *result = g_dip;
        rc = DDI_SUCCESS;
      case DDI_INFO_DEVT2INSTANCE:
        *result = (void *)getminor((dev_t)arg);
        rc = DDI_SUCCESS;
        break;
      default:
        *result = NULL;
        break;
      return rc;
    static int beta_attach(dev_info_t *dip, ddi_attach_cmd_t cmd)
      int inst = ddi_get_instance(dip);
      cmn_err(CE_CONT, "EntryPoint(BETA) - beta_attach");
      switch(cmd)
      case DDI_ATTACH:
        if(ddi_create_minor_node(dip, "BETA1", S_IFCHR, inst, DDI_PSEUDO, 0))
          return DDI_FAILURE;
        g_dip = (void *)dip;
        break;
      case DDI_RESUME:
        break;
      default:
        return (DDI_FAILURE);
      return (DDI_SUCCESS);
    static int beta_detach(dev_info_t *dip, ddi_detach_cmd_t cmd)
      int inst = ddi_get_instance(dip);
      cmn_err(CE_CONT, "EntryPoint(BETA) - beta_detach");
      switch(cmd)
        case DDI_DETACH:
          ddi_remove_minor_node(dip, NULL);
          break;
        default:
          return (DDI_FAILURE);
      return (DDI_SUCCESS);
    /* Driver specific implementations */
    static struct cb_ops beta_cb_ops = {
      beta_open,
      beta_close,
      nodev,
      nodev,
      nodev,
      beta_read_write,
      beta_read_write,
      nodev,
      nodev,
      nodev,
      nodev,
      nochpoll,
      ddi_prop_op,
      (struct streamtab *)NULL,
      D_MP | D_64BIT,
      CB_REV,
      nodev,
      nodev
    static struct dev_ops beta_dev_ops = {
      DEVO_REV,
      0,
      beta_info,
      nulldev,
      nulldev,
      beta_attach,
      beta_detach,
      nodev,
      &beta_cb_ops,
      (struct bus_ops *)NULL,
      nulldev
    static struct modldrv beta_modldrv = {
      &mod_driverops,
      "BETA Driver",
      &beta_dev_ops
    static struct modlinkage beta_modlinkage = {
      MODREV_1,
      (void *)&beta_modldrv,
      NULL
    int _init(void)
      int rc;
      cmn_err(CE_CONT, "EntryPoint(BETA) - _init");
      rc = mod_install(&beta_modlinkage);
      if(rc)
        cmn_err(CE_CONT, "Failed to install driver(BETA) - %d", rc);
      /* Calling function exported from alpha */
      cmn_err(CE_CONT, "Houston, we have a problem !! --> %s", export_from_alpha());
      return rc;
    int _info(struct modinfo *modInfop)
      int rc;
      cmn_err(CE_CONT, "\n\n\nEntryPoint(BETA) - _info");
      rc = mod_info(&beta_modlinkage, modInfop);
      if(!rc)
        cmn_err(CE_CONT, "Failed to get driver info(BETA) - %d", rc);
      return rc;
    int _fini(void)
      return(mod_remove(&beta_modlinkage));
    }This is what i do:
    # rem_drv alphaDrv
    # rem_drv betaDrv
    # rm -f /kernel/drv/sparcv9/alphaDrv
    # rm -f /kernel/drv/sparcv9/betaDrv
    # /opt/SUNWspro/bin/cc -xarch=v9 -D_KERNEL -DDEBUG -D__64BIT__ -c alpha.c
    # /usr/ccs/bin/ld -r -o alphaDrv alpha.o
    # /opt/SUNWspro/bin/cc -xarch=v9 -D_KERNEL -DDEBUG -D__64BIT__ -c beta.c
    # /usr/ccs/bin/ld -r -o betaDrv beta.o
    # cp alphaDrv /kernel/drv/sparcv9
    # cp betaDrv /kernel/drv/sparcv9
    # add_drv alphaDrv
    # add_drv betaDrv
    devfsadm: driver failed to attach: betaDrv
    Warning: Driver (betaDrv) successfully added to system but failed to attach
    This is the outout from /var/adm/messages:
    Oct 17 15:34:25 test_machine1 EntryPoint(ALPHA) - _info
    Oct 17 15:34:25 test_machine1 alphaDrv: [ID 938910 kern.notice] EntryPoint(ALPHA) - alpha_detach
    Oct 17 15:34:40 test_machine1 alphaDrv: [ID 394848 kern.notice]
    Oct 17 15:34:40 test_machine1 EntryPoint(ALPHA) - _info
    Oct 17 15:34:40 test_machine1 alphaDrv: [ID 756530 kern.notice] EntryPoint(ALPHA) - _init
    Oct 17 15:34:40 test_machine1 alphaDrv: [ID 999966 kern.notice] EntryPoint(ALPHA) - alpha_attach
    Oct 17 15:34:41 test_machine1 krtld: [ID 819705 kern.notice] /kernel/drv/sparcv9/betaDrv: undefined symbol
    Oct 17 15:34:41 test_machine1 krtld: [ID 826211 kern.notice] 'export_from_alpha'
    Oct 17 15:34:41 test_machine1 krtld: [ID 472681 kern.notice] WARNING: mod_load: cannot load module 'betaDrv'
    Thanks for the help

    Hello.
    I use "misc modules" to handle data transfer between modules.
    "Misc modules" can provide shared memory between modules which can be used to store function pointers.
    Martin

  • SQL Developer 2.1: Problem exporting and importing unit tests

    Hi,
    I have created several unit tests on functions that are within packages. I wanted to export these from one unit test repository into another repository on a different database. The export and import work fine, but when running the tests on the imported version, there are lots of ORA-06550 errors. When debugging this, the function name is missing in the call, i.e. it is attempting <SCHEMA>.<PACKAGE> (parameters) instead of <SCHEMA>.<PACKAGE>.<FUNCTION> (parameters).
    Looking in the unit test repository itself, it appears that the OBJECT_CALL column in the UT_TEST table is null - if I populate this with the name of the function, then everything works fine. Therefore, this seems to be a bug with export and import, and it is not including this in the XML. The same problem happens whether I export a single unit test or a suite of tests. Can you please confirm whether this is a bug or whether I am doing something wrong?
    Thanks,
    Pierre.

    Hi Pierre,
    Thanks for pointing this out. Unfortunately, it is a bug on our side and you have found the (ugly) "work-around".
    Bug 9236694 - 2.1: OTN: UT_TEST.OBJECT_CALL COLUMN NOT EXPORTED/IMPORTED
    Brian Jeffries
    SQL Developer Team

  • Problem with EXPORT IMPORT PROCESS in ApEx 3.1

    Hi all:
    I'm having a problem with the EXPORT IMPORT PROCESS in ApEx 3.1
    When I export an application, and try to import it again. I get this error message
    ORA-20001: GET_BLOCK Error. ORA-20001: Execution of the statement was unsuccessful. ORA-06550: line 16, column 28: PLS-00103: Encountered the symbol &amp;quot;牃慥整㈰㈯⼴〲㐰〠㨷㐵㈺′䵐&amp;quot; when expecting one of the following: ( - + case mod new not null &amp;lt;an identifier&amp;gt; &amp;lt;a double-quoted delimited-identifier&amp;gt; &amp;lt;a bind variable&amp;gt; avg count current exists max min prior sql stddev sum variance execute forall merge time timestamp in
    As a workaround, I check the exported file and found this
    wwv_flow_api.create_flow
    p_documentation_banner=> '牃慥整⠤㈰㈯⼴〲㠰〠㨷㠵㈺′äµ
    And when I replace with this
    p_documentation_banner=> ' ',
    I can import the application without the error.
    somebody knows why I have to do this??
    Thank you all.
    Nicolas.

    Hi,
    This issue seems to have been around for a while:
    Re: Error importing file
    I've had similar issues and made manual changes to the file to get it to install correctly. In my case, I got:
    ORA-20001: GET_BLOCK Error. ORA-20001: Execution of the statement was unsuccessful.<br>ORA-02047: cannot join the distributed transaction in progress<br>begin execute immediate 'alter session set nls_numeric_characters='''||wwv_flow_api.g_nls_numeric_chars||'''';end;There are several suggestions, if you follow that thread, about character sets or reviewing some of the line breaks within pl/sql code within your processes etc. Not sure what would work for you.

  • Problems in export / import repository

    Hi there,
    I'm trying to export/import a repository.
    The first trouble is: I export the topology, but when I import it nothing is imported (no error messages).
    I resorted to manually reconfiguring the topology
    The second and worse trouble is: I exported the project and the models, then I imported the project (successfully)
    but when I tried and import the models I got some error messages related to missing data (referential integrity)
    Any help is warmly appreciated
    Regards
    Andrew Florit

    I've got the same problem "I export the topology, but when I import it nothing is imported (no error messages)."
    What could be the solution?
    Thanx

  • Problem with the Export/Import Utility when importing a .portal file

    Hi there !
    I got the following error when trying to import a .portal file to a desktop by using the Export/Import Utility.
    <13-11-2009 12:13:26 PM CLST> <Error> <netuix> <BEA-423487> <Import: did not add navigable [2203] as it would cause an illegal dependency.>
    The error is shown several times, starting from the number [2203] until [2285].
    It causes that i can't see some pages of my portal... it's like they dont exist.
    I Hope you can help me fix it, because i have not found any information about it.
    Best regards
    P.D.: I am using the BEA Weblogic 10.0.1 version.
    Edited by: user12231353 on 16-nov-2009 12:38

    I upgraded to cs6 and imported all the images together, I made them 3 frames per and exported them. The problem is slightly improved but still there. I'm still getting flicker.
    Check it out: http://www.youtube.com/watch?v=g_yZjskzTLs
    Black screen version from yesterday if you want to look at it: http://www.youtube.com/watch?v=NCcAEO8YU6Y
    The problem has to be with my settings. when I upgraded it deleted all my prefrences and settings. There was no dslr preset either so I had to redo it all from  scratch to the best of my ability. Here is a complete rundown of my settings:
    I shoot with a canon dslr 60D in 24fps and upload all my stuff in 1080p. Please advice.

  • Problem with export / import

    Hi everybody, I am having a problem with an import. I am doing an export with a value in an user exit:
    EXPORT V_NLQNR = V_NLQNR TO MEMORY ID 'QUANTL'
    And after I call import in another program:
    IMPORT V_NLQNR = V_NLQNR FROM MEMORY ID 'QUANTL'.
    But when I check the sy-subrc I am getting 4, so I don't get anything.
    Does anybody why?? Is there a problem if I call the export from an user exit??
    Thanks in advance.

    Hello,
    I think you have the right idea.
    As a suggestion I would name my variables to make it clear which data is being
    exported/imported. I would also use different names on the left and right side of the = sign. 
    Here is a working example from programs that I use:
    In the first program
       EXPORT intercodata FROM g_data_exp TO MEMORY ID 'INTERCOWOS'.
         where g_data_exp is declared as a global variable
    In the second program
       IMPORT  intercodata TO g_data_imp FROM MEMORY ID 'INTERCOWOS'.
         where g_data_imp is declared as a global variable
    The syntax that you use ( p1 = dobj1 )  should work as well, just make sure that the variable v_nlqnr to the right of the equal sign has a value before the export.
    Regards
    Greg Kern

  • Problem exporting then importing application

    I created a simple htmldb application with a report page, and an insert/update/delete form. I exported it to a file, deleted the application and re-imported. Now it doesn't work properly. To be more specific, I had to recreate the authentication scheme which wasn't a big deal but now I can't see any of the controls when the application runs. I don't know much about htmldb but it looks like certain template things are gone. Why can't the application be re-imported to a working state?? Should I have done it differently?

    Nick,
    You are most likely running into one of the problems described in this thread:
    Re: Problem with importing HTML DB applications
    Sergio

  • Problem with import-export

    My problem is when I made a flash CS3 export, while i import
    it in flash the problem appear: that there are few objects do not
    convert type of "508 compliance" and i don't see the button on
    flash.
    help me...

    Why you need not export/import everything from topology? I guess you need to export and then import only the dataservers right? This is what I did.
    1. Exported only DS (Data server) to a file.
    2. Imported it using the following cmd from dos prompt.
    startcmd.bat OdiImportObject -FILE_NAME="D:\CONN_ABC.xml" -WORK_REP_NAME=WORKREPB -IMPORT_MODE=SYNONYM_INSERT_UPDATE
    3. It imported successfully this Data Server. But the problem i faced id it's not associating logical schema with the Context.

  • Page export/import problem

    Hi,
    I am getting a problem when i try to export and import a
    portal page from one schema to other. I have two schemas
    installed in the same database. I am able to export and import a
    user defined oracle portal page from schema1 to schema2. The
    problem is page is not importing portlets in that page. The page
    contains some oracle provided portlets and some user defined
    portlets. Oracle defined portlets are getting imported
    successfully. But user defined portlets are not. Can any body
    tell me what could be the problem.
    The environment i am using is:
    Oracle9iAd v1.0.2.2
    Oracle9iAS portal v3.0.9
    JPDK v3.0.9.0.1
    Rgds,
    Hari.

    Hi,
    what method are you using to export/import pages?
    If you are using COPY method than you should not have problems
    with portlets on the page as long as new user have privileges for
    a new page. I copied pages with user defined pl/sql portlets and
    all of them working fine.
    Let me know if you need more help.

  • 2 midi export-import problems...from l8 to l8!

    1. l8 always exports/imports midi regions as their own tracks. the preference for "export single regions as type 0 files" is different from how it worked in l7 (1 track with several separate regions exported/imported as 1 track). when exporting an entire sequence to midi, this preference now makes no difference whatsoever. annoying.
    2. markers with text (lyrics, for instance) don't survive the import/export process. hardly surprising, i suppose. the markers themselves are there, but not their names, or the info contained in them. instead, you get a marker that looks like html/xml? it apparently references an rtf file, and shows font/color info. the actual marker start/end time values are correct, however.
    grrrr
    can anyone confirm, or know of a workaround?
    Message was edited by: kelldammit

    Are there any free alternatives to Emaichemy to handle importing from Thunderbird to OS X Lion Mail?
    I'm also having a problem importing from Thunderbird, but in my case the folders are importing but I'm only getting one message per folder. This was reported in another forum for an older OS X version (apparently Apple never fixed the problem), and the solution there was to use a utility called Eudora Mailbox Cleaner. Unfortunately, this utility does not run under Lion.
    What I'm really trying to do is get local mail folders migrated from Zimbra Desktop to Mac Mail. There was no direct way to do this, because Mac Mail doesn't support Zimbra Deskop, and ZD can't export to an mbox file (it exports to eml format). However, Mac Mail "supports" importing directly from Thunderbird, and Thunderbird can import eml files using an add-on called ImportExportTools, so I installed Thunderbird, installed the add-on, imported the exported data from ZD, and that successfully brought my local mail folders into Thunderbird. So far so good. Unfortunately, when I tried to import from Mac Mail directly from Thunderbird, it imported all the folders, but just one message from each folder.
    I also tried using the Thunderbird ImportExportTools add-on to export the folders, thinking it would generate mbox format. I was able to import that data using the "import from mbox" option in Mac Mail, but I got the same result -- all my folders came in with a single in message in each.
    Any other suggestions? This is a one-time thing, I don't want to spend money on an application if I don't have to.

  • Export/Import problem please help

    Hi All,
    I have a strange problem in Export/Import.. I don't know ,where to fix..
    I'm trying to Export/Import dmp file in new Schema.
    when i'm exporting the tables, it is writing with storage options(Which causing me the problem, I don't have a enough space in the tablespace and i can't increase any more)
    I don't want the table data, i want only table structure without storage option.
    So,i'm looking export syntax without storage options to the table(like inital extents,increment,max extents like that)
    I'm writing like this
    exp system/manager@connectstring file=exp.dmp log=exp.log owner=sys rows=N statistics=none indexes=n compress=N
    Any idea ?
    Thanks
    James.

    Why are you exporting at all? You say you want to place this info into another schema (on the same instance? or an instance on the same network?) Just run this script:
    alter tablespace mytablespace
    default storage (initial 256K next 256K);
    set heading off pages 0 echo off termout off
    spool a.sql
    select 'create table newschema.'||table_name||' tablespace mytablespace as select * from '||table_name||' where 1=2;'
    from all_tables
    where owner='OLDSCHEMA';
    spool off
    @a.sql
    If the new schema is on a different instance or server, you will have to create a db link first.

  • WIll I have duplicate problems when I Export / Import Project?

    This is my first try at Exporting / Importing a Project to benefit from having Aperture on the road on a MacBook.
    I run a secondary instance of Aperture on my MacBook with a managed library. I used it last week to rate, and adjust 40 images from a shoot while on the road. Those images are in Project ABC. My objective is to not lose all the adjustment work done while away now that I wish to re-locate these images to my primary instance of Aperture which runs on an iMac. I won't need them any longer on the MacBook.
    I've exported Project ABC, and it's now sitting on the desktop of the iMac ready for import into Aperture where the library is also managed.
    Between the shoot and today, however, I had uploaded the same images from my CF card to the iMac's Aperture library into Project XYZ. No work has been performed on any of them, but the image names are identical to those in Project ABC waiting to be imported.
    My plan is to import Project ABC, and, assuming everything comes over in good shape, to delete the unadjusted masters/versions in Project XYZ one by one.
    Question 1: When image GEN_1234.nef with all its adjustments, etc., contained in Project ABC, is imported, will Aperture have a problem that GEN_1234.nef (unadjusted) already is in the library in Project XYZ?
    Question 2: I've checked the MacBook after exporting, and Project ABC looks as though nothing ever happened. Does this sound right? I'd expected the Masters to be gone, but "M" toggles between the master and the adjusted version.
    Thanks.
    Terry

    Problem #2 is not a problem. We have been able to somewhat install Oracle when those warnings appear. The client install works fine with those warning messages in the terminal window. NOTE: They are just warnings...

Maybe you are looking for

  • Unable to create sub site after setting up site subscription in Sharepoint Foundation 2013

    Hi, All, I have set up sit subscription in to the sharepoint. I have a Site collection which is assign to specific tenant group. I have assign sevral custom features to the tenant group. What happening now is, when I am creating a sub site, it throws

  • How do I correct File Sharing problems between 2 Lion installs?

    I have having a strange problem with file sharing between 2 mac's that have Lion Installed. One is a MacPro with a clean install of Lion and the other is a MacBook that was upgraded with Lion. Both systems have file sharing enabled (just public folde

  • Nullpointer when initializing viewobject

    Hello I have a class with a method "fetchData" that is fetching data from an Oracle database (duh). I use the statement: ViewObject vo = applicationModule.findViewObject("ViewObject1"); (applicationModule is declared and initialized higher in the cod

  • Will there ever be patches for Flash 8?

    I just wondered if Adobe intends to issue patches for Flash 8 instead of just Flashplayer. I reported bugs over a year ago that were taken up as existing and have not heard a word since. Does anyone know what is happening? Brian

  • Hp1200 laser printer installing new cartridge

    When installing a new prnter cartridge, there is a silver ribbon with a small plastic tag hanging off the left side. When I followed the install instructions, my printer printed only the right side of the page. Was I supposed to do something special