Test environment made by RMAN

Could you help me describe steps which are mandatory during preparing test environment based on full rman backup?
Test environment is on separate machine, but with the same OS, the same bit (x32) and Oracle version.

See Restoring a Database on a New Host

Similar Messages

  • RMAN  as part of testing environment

    Hello,
    I have quire simple task which I need to do with RMAN. I have one tablespace ( This tablespace is called "example" and Is attached to 11g1 ) which I'm using as target for workload balancing algorithm .
    I know how to create backup.
    RMAN > SQL 'ALTER TABLESPACE example OFFLINE';
    RMAN > BACKUP TABLESPACE example FORMAT 'fooo%y.bkp' TAG my_label
    RMAN > SQL 'ALTER TABLESPACE example ONLINE';
    I know how to recover/restore:
    RMAN > SQL 'ALTER TABLESPACE example OFFLINE';
    RMAN > RESTORE TABLESPACE example FROM TAG my_label;
    RMAN > RECOVER TABLESPACE example;
    RMAN > SQL 'ALTER TABLESPACE example ONLINE
    // Please note that I'm writing it from memory
    My problem is that I get error and have trouble to turn online tablespace when I change some data
    between backup and restore operations. I guess tablespace Is locked because there is no 100%
    of integration of data and new changes from transaction log should be inseted/skipped before launching
    tablespace.
    Error is in polish language:
    ORA-01113: plik 5 wymaga zastosowania przywracania noťnikˇw // ~ 5'th file requires data storege recovery..
    ORA-01110: plik danych 5: 'C:\xxx\ORADATA\ORCL\EXAMPLE01.DBF'
    How can I solve this problem?
    ps. When I use few times RECOVER / RESTORE i'm finally able to set Online tablespace, but I don't like
    it that I'm not sure what's going on there.
    Thank You,
    R.

    SQL> archive log list
    Database log mode              No Archive Mode
    Automatic archival             Disabled
    Archive destination            USE_DB_RECOVERY_FILE_DEST
    Oldest online log sequence     25
    Current log sequence           27
    RMAN> run
    2> {
    3> sql 'alter tablespace users offline';
    4> backup tablespace users format 'foo%y.bkp' tag my_lable;
    5> sql 'alter tablespace users online';
    6> }
    sql statement: alter tablespace users offline
    Starting backup at 24-OCT-09
    using channel ORA_DISK_1
    channel ORA_DISK_1: starting full datafile backup set
    channel ORA_DISK_1: specifying datafile(s) in backup set
    input datafile file number=00004 name=/u01/app/oracle/oradata/his/users01.dbf
    channel ORA_DISK_1: starting piece 1 at 24-OCT-09
    channel ORA_DISK_1: finished piece 1 at 24-OCT-09
    piece handle=/u01/app/oracle/product/11.1.0/db_1/dbs/foo%y.bkp tag=MY_LABLE comment=NONE
    channel ORA_DISK_1: backup set complete, elapsed time: 00:00:01
    Finished backup at 24-OCT-09
    Starting Control File and SPFILE Autobackup at 24-OCT-09
    piece handle=/u01/app/oracle/flash_recovery_area/HIS/autobackup/2009_10_24/o1_mf_s_701084425_5g519tvw_.bkp comment=NONE
    Finished Control File and SPFILE Autobackup at 24-OCT-09
    sql statement: alter tablespace users online
    RMAN> exit
    Recovery Manager complete.
    [oracle@localhost ~]$ sqlplus / as sysdba
    SQL*Plus: Release 11.1.0.6.0 - Production on Sat Oct 24 09:41:05 2009
    Copyright (c) 1982, 2007, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> conn scott/tiger
    Connected.
    SQL> create table t1 as select * from all_objects
      2  /
    Table created.
    SQL> exit
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    [oracle@localhost ~]$ rman target /
    Recovery Manager: Release 11.1.0.6.0 - Production on Sat Oct 24 09:41:43 2009
    Copyright (c) 1982, 2007, Oracle.  All rights reserved.
    connected to target database: HIS (DBID=3219691467)
    RMAN> run
    2> {
    3> sql 'alter tablespace users offline';
    4> restore tablespace users from tag my_lable;
    5> recover tablespace users;
    6> sql 'alter tablespace users online';
    7> }
    using target database control file instead of recovery catalog
    sql statement: alter tablespace users offline
    Starting restore at 24-OCT-09
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: SID=126 device type=DISK
    channel ORA_DISK_1: starting datafile backup set restore
    channel ORA_DISK_1: specifying datafile(s) to restore from backup set
    channel ORA_DISK_1: restoring datafile 00004 to /u01/app/oracle/oradata/his/users01.dbf
    channel ORA_DISK_1: reading from backup piece /u01/app/oracle/product/11.1.0/db_1/dbs/foo%y.bkp
    channel ORA_DISK_1: piece handle=/u01/app/oracle/product/11.1.0/db_1/dbs/foo%y.bkp tag=MY_LABLE
    channel ORA_DISK_1: restored backup piece 1
    channel ORA_DISK_1: restore complete, elapsed time: 00:00:01
    Finished restore at 24-OCT-09
    Starting recover at 24-OCT-09
    using channel ORA_DISK_1
    starting media recovery
    media recovery complete, elapsed time: 00:00:01
    Finished recover at 24-OCT-09Why the same error is not happening as you are having , reason is that i have current online redo log still not overwritten , if its overwritten by subsequent continuous log switch then i lost redo and will not able to provide sufficient redo.If my database archive log enabled then RMAN recovery apply redo from archivelog rather from online redo log file.
    Look now if redo log file is overwritten by subsequent log switch after backing up users tabelsapce
    RMAN> run
    2> {
    3> sql 'alter tablespace users offline';
    4> backup tablespace users format 'foo%y.bkp' tag my_lable;
    5> sql 'alter tablespace users online';
    6> }
    using target database control file instead of recovery catalog
    sql statement: alter tablespace users offline
    Starting backup at 24-OCT-09
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: SID=132 device type=DISK
    channel ORA_DISK_1: starting full datafile backup set
    channel ORA_DISK_1: specifying datafile(s) in backup set
    input datafile file number=00004 name=/u01/app/oracle/oradata/his/users01.dbf
    channel ORA_DISK_1: starting piece 1 at 24-OCT-09
    channel ORA_DISK_1: finished piece 1 at 24-OCT-09
    piece handle=/u01/app/oracle/product/11.1.0/db_1/dbs/foo%y.bkp tag=MY_LABLE comment=NONE
    channel ORA_DISK_1: backup set complete, elapsed time: 00:00:02
    Finished backup at 24-OCT-09
    Starting Control File and SPFILE Autobackup at 24-OCT-09
    piece handle=/u01/app/oracle/flash_recovery_area/HIS/autobackup/2009_10_24/o1_mf_s_701085363_5g5276v4_.bkp comment=NONE
    Finished Control File and SPFILE Autobackup at 24-OCT-09
    sql statement: alter tablespace users online
    RMAN> exit
    Recovery Manager complete.
    [oracle@localhost ~]$ sqlplus / as sysdba
    SQL*Plus: Release 11.1.0.6.0 - Production on Sat Oct 24 09:56:15 2009
    Copyright (c) 1982, 2007, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> alter system switch logfile
      2  /
    System altered.
    SQL> /
    System altered.
    SQL> /
    System altered.
    SQL> /
    System altered.
    SQL> /
    System altered.
    SQL> /
    System altered.
    SQL> /
    System altered.Now that redo is overwritten by subsequent continuous log switch , you don't have archivelog then you lost redo and cannot supply redo during recovery of users tablespace.
    SQL> exit
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    [oracle@localhost ~]$ rman target /
    Recovery Manager: Release 11.1.0.6.0 - Production on Sat Oct 24 09:56:38 2009
    Copyright (c) 1982, 2007, Oracle.  All rights reserved.
    connected to target database: HIS (DBID=3219691467)
    RMAN> run
    2> {
    3> sql 'alter tablespace users offline';
    4> restore tablespace users from tag my_lable;
    5> recover tablespace users;
    6> sql 'alter tablespace users online';
    7> }
    using target database control file instead of recovery catalog
    sql statement: alter tablespace users offline
    Starting restore at 24-OCT-09
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: SID=122 device type=DISK
    channel ORA_DISK_1: starting datafile backup set restore
    channel ORA_DISK_1: specifying datafile(s) to restore from backup set
    channel ORA_DISK_1: restoring datafile 00004 to /u01/app/oracle/oradata/his/users01.dbf
    channel ORA_DISK_1: reading from backup piece /u01/app/oracle/product/11.1.0/db_1/dbs/foo%y.bkp
    channel ORA_DISK_1: piece handle=/u01/app/oracle/product/11.1.0/db_1/dbs/foo%y.bkp tag=MY_LABLE
    channel ORA_DISK_1: restored backup piece 1
    channel ORA_DISK_1: restore complete, elapsed time: 00:00:01
    Finished restore at 24-OCT-09
    Starting recover at 24-OCT-09
    using channel ORA_DISK_1
    starting media recovery
    archived log for thread 1 with sequence 40 is already on disk as file /u01/app/oracle/oradata/his/redo01.log
    archived log for thread 1 with sequence 41 is already on disk as file /u01/app/oracle/oradata/his/redo02.log
    archived log for thread 1 with sequence 42 is already on disk as file /u01/app/oracle/oradata/his/redo03.log
    RMAN-08187: WARNING: media recovery until SCN 1276644 complete
    Finished recover at 24-OCT-09
    sql statement: alter tablespace users online
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03009: failure of sql command on default channel at 10/24/2009 09:57:58
    RMAN-11003: failure during parse/execution of SQL statement: alter tablespace users online
    ORA-01113: file 4 needs media recovery
    ORA-01110: data file 4: '/u01/app/oracle/oradata/his/users01.dbf'Khurram

  • Use of DataGuard in a testing environement

    Hi all,
    whenever an incident occurs on our production system, we import a dump from our production database into our test database to reproduce the incident and to find a solution for the issue.
    Taking a dump and import this into a test database takes several hours.
    Now I'm thinking about a solution using DataGuard to speed up this scenario. It is quiet important for us to solve production incidents as soon as possible (banking environement).
    So I think about the following:
    DB PROD => master
    DB TEST1 => standby
    When an incident occurs I want to
    - remove DB TEST1 from DataGuard and use this DB as an independent DB where we can reproduce the incident.
    - add a new stand by to DataGuard to have a test DB for the next incidents
    Does anyone use DataGuard in the same manner or does anyone can tell me if this would be a possible way?
    Many thanks in advance fpr your support.
    Andreas

    Its a thought, but its not the best use of Data Guard (in my humble opinion). When I think Data Guard I think:
    Recovery Plan
    Read-only services
    Minimize downtime
    You are looking for a quick way to refresh your test environment and I believe RMAN Duplicate might be a better answer. You can have everything setup in advance just like Data Guard.
    If you do decide to use Data Guard for this sooner or later you will probably trash your standby setup and have to use RMAN Duplicate to fix it.
    However if your database is really huge it might be a great idea to have the standby the way you say with a short delay on apply on the standby end.
    Best Regards
    mseberg

  • Best practice for the test environment  &  DBA plan Activities    Documents

    Dears,,
    In our company, we made sizing for hardware.
    we have Three environments ( Test/Development , Training , Production ).
    But, the test environment servers less than Production environment servers.
    My question is:
    How to make the best practice for the test environment?
    ( Is there any recommendations from Oracle related to this , any PDF files help me ............ )
    Also please , Can I have a detail document regarding the DBA plan activities?
    I appreciate your help and advise
    Thanks
    Edited by: user4520487 on Mar 3, 2009 11:08 PM

    Follow your build document for the same steps you used to build production.
    You should know where all your code is. You can use the deployment manager to export your configurations. Export customized files from MDS. Just follow the process again, and you will have a clean instance not containing production data.
    It only takes a lot of time if your client is lacking documentation or if you re not familiar with all the parts of the environment. What's 2-3 hours compared to all the issues you will run into if you copy databases or import/export schemas?
    -Kevin

  • Exchange Server 2010 SP3 test environment - email flow to/from internet

    Today I set up test environment for Exchange Server 2010 SP3 - domain controller running Windows Server 2008 R2 SP1, Exchange Server 2010 SP3 on Windows Server 2008 R2 SP1 and client computer running Windows 7 Pro SP1 x64 with Outlook Pro 2010 x64. These
    machines are VMs on vSphere 5.0 cluster made of 4 esxi 5.0 hosts.
    I have three years of experience in working with Exchange Server 2010 in my production environment but until recently I have not had enough resources to build a test environment. Does "testing" Exchange Server 2010 infrastructure have
    a real life purpose considering the fact that only internal email flow is possible since authoritative SMTP accepted domain is not hosted anywhere thus not visible to outside world. This limited email flow combined with absence of possibility to test
    ActiveSync, Outlook Anywhere, OWA from WAN, . . . really hurt and make Exchange Server rare technology that can not be tested completely before introducing something new into the production. Services that are not possible to test from the outside world are
    useless and whole point of Exchange-like technologies is availability from anywhere and from whatever device.

    I set up Internet Send Connector (by default this type of send connector uses DNS MX records to route email automatically). Having sent an email to my gmail account I did not receive it and in transport logs I saw that mx record was found successfully
    but there is the following line:
    2014-08-05T20:39:51.942Z,Internet Connector,08D17F000FE36010,1,,2a00:1450:4013:c01::1b:25,*,,"Failed to connect. Error Code: 10051, Error Message: A socket operation was attempted to an unreachable network 2a00:1450:4013:c01::1b:25"
    I tried also to send an email to my production email address (we have Symantec Messaging Gateway which is used as a smart host (antispam,antimalware,content filter appliance)) but then error is:
    2014-08-05T20:50:08.395Z,Internet Connector,08D17F000FE36019,1,,91.238.7.10:25,*,,"Failed to connect. Error Code: 10061, Error Message: No connection could be made because the target machine actively refused it 91.238.7.10:25"
    Telnet from test exchange to 91.238.7.10 on port 25 also is not working.

  • Service Reference is blocking a deployment on the test environment

    Hello friends,
    I made a change in a BPM process and build and deployed on the Development PO envirenment was succesfull and I could check it into the NWDI. When I want to import/deploy the changes into the test environment I get the below error:
    I found the service reference and delete it and made another service reference with another ID and I still get this error. It was not a new service reference and it was already deployed on the test.
    The system is already restarted but without any success.
    Do you have any idea how I can delete this old object that is blocking the deployment?
    Thank you in advanced,
    Kind regards,
    John
    com.sap.esi.esp.lib.mm.config.exceptions.ObjectNotExistsException:
    There are no WSDLs stored for Service Reference:
    {http://www.sap.com}bpm_order.com~bpm_order~BPMcomponent_22121756-ac7d-4671-ab9b-d7d0e286a40c_XI
    [EXCEPTION]
    com.sap.esi.esp.service.server.deploy.ActionException:
    com.sap.esi.esp.lib.mm.config.exceptions.ObjectNotExistsException: There are no
    WSDLs stored for Service Reference:
    {http://www.sap.com}bpm_order.com~bpm_order~BPMcomponent_22121756-ac7d-4671-ab9b-d7d0e286a40c_XI
    at
    com.sap.esi.esp.service.server.deploy.sca.actions.XIReferenceDataRemover.perform(XIReferenceDataRemover.java:35)
    at
    com.sap.esi.esp.service.server.deploy.CompositeAction.perform(CompositeAction.java:46)
    at
    com.sap.esi.esp.service.server.deploy.CompositeAction.perform(CompositeAction.java:46)
    at
    com.sap.esi.esp.service.server.deploy.ActionsManipulator.performAction(ActionsManipulator.java:29)
    at
    com.sap.esi.esp.service.server.deploy.sca.SmartConfigPlugin.deployEventActionWithRollbackSupport(SmartConfigPlugin.java:49)
    at
    com.sap.esi.esp.service.server.deploy.sca.SmartConfigPlugin.executeEvent(SmartConfigPlugin.java:95)
    at
    com.sap.engine.services.sca.deploy.ApplicationUpdate.perform(ApplicationUpdate.java:195)
    at
    com.sap.engine.services.sca.deploy.SCACompositeContainer.invoke(SCACompositeContainer.java:297)
    at
    com.sun.proxy.$Proxy33.makeUpdate(Unknown Source)
    at
    com.sap.engine.services.deploy.server.utils.container.ContainerWrapper.makeUpdate(ContainerWrapper.java:409)
    at
    com.sap.engine.services.deploy.server.application.UpdateTransaction.makeComponents(UpdateTransaction.java:478)
    at
    com.sap.engine.services.deploy.server.application.DeployUtilTransaction.commonBegin(DeployUtilTransaction.java:183)
    at
    com.sap.engine.services.deploy.server.application.UpdateTransaction.begin(UpdateTransaction.java:234)
    at
    com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesOnOneServer(ApplicationTransaction.java:421)
    at
    com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhases(ApplicationTransaction.java:473)
    at
    com.sap.engine.services.deploy.server.DeployServiceImpl.makeGlobalTransaction(DeployServiceImpl.java:1836)
    at
    com.sap.engine.services.deploy.server.DeployServiceImpl.update(DeployServiceImpl.java:582)
    at
    com.sap.engine.services.deploy.server.DeployServiceImpl.update(DeployServiceImpl.java:487)
    at
    com.sap.engine.services.dc.gd.impl.ApplicationDeployer.update(ApplicationDeployer.java:74)
    at
    com.sap.engine.services.dc.gd.impl.InitialApplicationDeployer.performDeployment(InitialApplicationDeployer.java:141)
    at
    com.sap.engine.services.dc.gd.impl.InitialGenericDeliveryImpl.deploy(InitialGenericDeliveryImpl.java:57)
    at
    com.sap.engine.services.dc.cm.deploy.impl.OnlineDeployProcessor.performDelivery(OnlineDeployProcessor.java:213)
    at
    com.sap.engine.services.dc.cm.deploy.impl.BulkOnlineDeployProcessor.deploy(BulkOnlineDeployProcessor.java:67)
    at
    com.sap.engine.services.dc.cm.deploy.impl.AbstractDeployProcessor$DeployProcessorHelper.visit(AbstractDeployProcessor.java:282)
    at
    com.sap.engine.services.dc.cm.deploy.impl.DeploymentItemImpl.accept(DeploymentItemImpl.java:84)
    at
    com.sap.engine.services.dc.cm.deploy.impl.AbstractDeployProcessor.deploy(AbstractDeployProcessor.java:100)
    at
    com.sap.engine.services.dc.cm.deploy.impl.DeployThread.run(DeployThread.java:39)
    at
    com.sap.engine.core.thread.execution.Executable.run(Executable.java:122)
    at
    com.sap.engine.core.thread.execution.Executable.run(Executable.java:101)
    at
    com.sap.engine.core.thread.execution.CentralExecutor$SingleThread.run(CentralExecutor.java:328)
    Caused
    by: com.sap.esi.esp.lib.mm.config.exceptions.ObjectNotExistsException: There are
    no WSDLs stored for Service Reference:
    {http://www.sap.com}bpm_order.com~bpm_order~BPMcomponent_22121756-ac7d-4671-ab9b-d7d0e286a40c_XI
    at
    com.sap.esi.esp.service.server.storage.WSDLStorageImpl.getServiceReferenceWSDLS(WSDLStorageImpl.java:297)
    at
    com.sap.esi.esp.service.server.deploy.sca.actions.XIReferenceDataRemover.perform(XIReferenceDataRemover.java:28)
    29 more

    In your NWDS, go to Window-->Show View-->Others-->Undeploy View.
    Search for your BPM DC, double-click on it and then click on the Black Ball on the table in the right hand side.
    This will undeploy all the BPM Components from the test server.
    Now, go to your BPM project, delete the exiting WSDL, create a new one and then deploy.
    This should work fine.

  • Duplicate database from prod environment to test environment.

    hi,
    Am trying to Duplicate the database from Production RAC Envrionment to Test RAC Environment.
    Am following the metakink Document: How To Restore Rman Backups On A Different Node When The Directory Structures Are Different [ID 419137.1]
    When am restoring the backup from prod in Test environment am getting the following error.
    ORA-19870: error reading backup piece /rman2/stage/backup_of_PROD_21047_07_04_2011_1
    ORA-19504: failed to create file "+DG1"
    ORA-17502: ksfdcre:4 Failed to create file +DG1
    ORA-15055: unable to connect to ASM instance
    ORA-00020: maximum number of processes () exceeded
    ORA-15055: unable to connect to ASM instance
    ORA-00020: maximum number of processes () exceeded
    Please help me out in this.
    with regards
    A.Aravind

    Pl post details of OS and database versions on the source and target.
    RMAN Duplicate Failing With ORA-19870 ORA-19504 ORA-15012 ORA-17502 ORA-15080 (Doc ID 417074.1)
    Srini

  • Correct idea to scale out testing environment and test service pack2 installation

    Hi
    I have a sharepoint 2010 farm it has one sharepoint server, one database server
    In one server  below services are running
    Central administration service
    SharePoint Server Search 
    User Profile Service 
    Microsoft SharePoint Foundation Web Application
    so i want to scale out this form  to
    1 application server
    1 web front end server
    1 Search server (index server)
    1 databse server
    here how i scale out to this form
    1)here how i move  sharepoint  server search service to new  index server and
    2) here how i move  Microsoft SharePoint Foundation Web Application to new webfront end server
    and in this single server  some web appllications are running also how i move these to new wf server
    i want to do like this  because i want to test service pack 2 installation, now  sharepoint version is : service pack1
    my actual production environment has
    2 application servers
    2 webfront end servers
    2 index servers
    1 databae server
    so this correct idea to scale out testing environment and test service pack2 installation
    adil

    Hi Adil,
    The link below describes how to scale SharePoint Web Front-End with only web applications and the search query server  out of one SharePoint server with all roles running.
    http://sharepointsolutions.com/sharepoint-help/blog/2011/02/how-to-scale-out-a-sharepoint-2010-farm-from-two-tier-to-three-tier-by-adding-a-dedicated-application-server/
    Now you have two SharePoint server with:
    Tier 1 – SharePoint Server dedicated as a Web Front-End (WFE) with only the web application(s) and the search query service running on it
    Tier 2 – SharePoint Server dedicated as an Application Server with all of the other service applications running on it, but no web applications or query service
    Tier 3 – SQL Server for the databases
    Then you would scale out WFE server with web applications from tier1. Now please install a new SharePoint server and join it to the existing farm and deploy it as Web Front Server. Enable the relevant services on Web Front servers per the topology picture
    below, and stop the services running on the old server.
    http://technet.microsoft.com/en-us/library/cc263044(v=office.14).aspx
    Regards
    Rebecca Tu
    TechNet Community Support

  • Workbook won't open after import into test environment - Function Related

    Hi Experts,
    We have a disco report that uses a custom database function. The function has been registered and is valid in the development environment and the report works fine.
    We have exported the business area, report and relevant functions from the development environment and imported them into the test environment (Using diso admin import/export tool) in the following order:
    1. Functions
    2. Business Area
    3. Workbook
    There were no errors during the import with the exception of a failed grant which was my logon and does not exist in the target environment.
    When I attempt to open the workbook in the test environment I receive the following error message: Item dependancy"" not found in the EUL. Attempt to open workbook failed.
    At first I though that this was a folder developer key issue because I did have to change the id of a folder that this report uses however I have re-synced the ID's by ensuring the eul id's were different and I have decompiled the workbook using the d51wkdmp tool and I have confirmed that the workbook is looking at the correct items.
    I noticed that the workbook had three function references so in the development environment I deleted the fields that used the functions and re-imported the workbook, guess what it worked OK meaning that the folder ID's etc... are ok and all in sync.
    I attempted to create a new workbook in the test environment that used the imported function. When I did I got an error message saying that there was too many parameters for the function, exactly the same process works in the development environment and the calculation creates ok. I checked the function definition in discover administrator (test environment) and the function is correct, parameters present and validates OK exactly the same as the dev environment however when I try to use it discoverer plus falls over!!!!
    Any ideas/pointers, at the moment I can't see how this can be anything except a bug in the import utility as the function is OK in Development and doesnt work in Test, we have used the standard export/import tools.
    Thanks
    Keith

    Hi Rod,
    This error is occuring with functions that only have 2 or 3 parameters. My standard install processes do use the refresh option.
    I have been following this up with Oracle Support and they have managed to replicate the bug in there environment. It has something to do with optional parameters, when you change all the parameters to required it works ok however I have other functions that have optional parameters that do work ok so it is clearly not just the presence of optional parameters that is causing the problem.
    This is the first time (and probably the last) that I have tried to do disco migration using the admin import tool I have always used the command line interface to automate installs in the past, as I havn't run into this before I would imagine the bug is not present in the command line tool.
    I will post an update when I hear back from Oracle Development on a fix.
    Keith

  • In app purchase is not working in testing environment in sandbox for the past 5 days. Please anyone know about this issue.

    in app purchase is not working in testing environment in sandbox for the past 5 days. Please anyone know about this issue.
    What i did
      1 . Added three products more to the existing in-app
      2 . Tested with sanbox
    i am getting the error "cannot connect to itunes store" with error code "0" when trying to purchase product in sandbox.
    Is sandbox is down?Please help guys..

    Apple's sandbox has been down practically all month. You can check the status here:
    http://sandbox.itunes.apple.com

  • Issue with External Form Repost in Testing Environment

    Please help!
    We are attempting to add an Eloqua repost to our webform on https://www.2checkout.com/signup. We are a payment processor and therefore, our customer admin area, of which this page is a part, must maintain various compliance standards. With this in mind, we are testing the repost in our test environment, which sits on https://va.test.2checkout.com. I've double-checked and our eloqua tracking scripts are picking up these pages.
    When we run the repost, the line of code to get the GUID - 
    elqQ.push(['elqGetCustomerGUID']);
    is erroring. I've attached a screenshot.
    For reference, we're using the code illustrated in Thomas Reyto's Topliner's post: http://topliners.eloqua.com/community/do_it/blog/2012/04/17/how-to-repost-an-externally-hosted-form-to-eloqua.
    Any assistance in determining the issue would be most appreciated! As mentioned, we really want to get this working in the test environment before we push it live, as it could break our sign up process otherwise.
    Thank you Topliners!

    Jennifer Comisford the JavaScript snippet to include elqcfg.min.js on your page?  The waituntilCustomerGuidIsRetrieved function is defined in the elqcfg.min.js tracking script.  From the error it looks like your page has not loaded the file correctly.
    <script type="text/javascript">
        var _elqQ = _elqQ || [];
        _elqQ.push(['elqSetSiteId', '#########']);
        _elqQ.push(['elqTrackPageView']);
        (function () {
            function async_load() {
                var s = document.createElement('script'); s.type = 'text/javascript'; s.async = true;
                s.src = '//img.en25.com/i/elqCfg.min.js';
                var x = document.getElementsByTagName('script')[0]; x.parentNode.insertBefore(s, x);
            if (window.addEventListener) window.addEventListener('DOMContentLoaded', async_load, false);
            else if (window.attachEvent) window.attachEvent('onload', async_load);
    </script>

  • SSRS 2012 Subscription Error in Test Environment

    Hi All,
    I was trying to set-up Email Subscription for SSRS in my Test Environment using "Reporting Services Configuration Manager" and after providing SMTP server details. I was getting error "Failed to sent Email to [email protected]"
    What could be the reason?
    I tried pining SMTP IP address from the Machine where SSRS installed and I was able to ping SMTP Server using CMD ping command.
    Thanks Shiven:) If Answer is Helpful, Please Vote

    Hi All,
    I found the issue. The IP address of Machine, where SSRS server installed, was not included in to the SMTP relay and that's why I was getting error "Failed
    to sent Email to [email protected]".
    Once my network team, added IP address, it started working fine.
    Another thing I noticed, due to some reason SQL Server Agent was stopped and was not running and one
    of my colleagues was trying to create new subscription and was getting error 'The SQL Agent service is not running. This operation requires the SQL Agent service. (rsSchedulerNotResponding)'.
    Once I started SQL Server Agent, My colleague was able to create new subscription. 
    Thanks Shiven:) If Answer is Helpful, Please Vote

  • Office Web Apps Integration in a Test Environment

    I am trying to test Office Web Apps in an Exchange 2013 test environment and therefore have setup my farm for HTTP only.  I have set the WAC Discovery End Point on the Exchange server and I can browse to the XML successfully however when I preview files
    they are still being displayed using Web-Ready Document Viewer.  I have checked the Event Log and found event ids 140 and 141.  
    Event 141 lists the following error - There was a failure connecting to or otherwise retrieving Data from the Wac Discovery Service. We will fall back to stellent. Successfully retrieved configuration data from http://server01/hosting/discovery, but
    retrieved discovery xml does not contain an external https net zone node.
    Do I need to configure HTTPS with a certificate in order to get this working in a test environment or should it work with HTTP?
    Thanks

    Hi Luke,
    Based on my research, I found some people solved this issue via resarting MBX server and CAS server on Exchange 2013 server.
    Similar thread for your reference:
    Exchange 2013 and Office Web Apps Server Integration
    http://social.technet.microsoft.com/Forums/en-US/927a84db-cf54-4546-8b94-374c64eaac2d/exchange-2013-and-office-web-apps-server-integration?forum=exchangesvrgeneral
    Please also double check whether there is anything missing during the integration. Offical articles for your reference:
    Deploy Office Web Apps Server
    http://technet.microsoft.com/en-us/library/jj219455(v=office.15).aspx
    Office Web Apps Server Integration
    http://technet.microsoft.com/library/2591b1be-92c4-4192-9f5e-e4e6b319170a
    Hope it is helpful
    Thanks
    Mavis
    Mavis Huang
    TechNet Community Support

  • Best Practice - Hardware requirements for exchange test environment

    Hi Experts,
    I'm new to exchange and I want to have a test environment for learning, testing ,batches and updates.
    In our environment we have co-existence 2010 and 2013 and I need to have a close scenario on my test environment.
    I was thinking of having an isolated (not domain joined) high end workstation laptop with (quad core i7, 32GB RAM, 1T SSD) to implement the environment on it, but the management refused and replied "do it on one of the free servers within the live production
    environment at the Data Center"... !
    I'm afraid of doing so not to corrupt the production environment with any mistake by my configuration "I'm not that exchange expert who could revert back if something wrong happened".
    Is there a documented Microsoft recommendation on how to do it and where to do so to be able to send it to them ??
    OR/ Could someone help with the best practice on where to have my test environment and how to set it up??
    Many Thanks
    Mohamed Ibrahim

    I think this may be useful:
    It's their official test lab set up guide.
    http://social.technet.microsoft.com/wiki/contents/articles/15392.test-lab-guide-install-exchange-server-2013.aspx
    Also, your spec should be fine as long as you run the VMs within their means.

  • Runtime error in F-48( Test environment error in SAPLGLT0 program )

    Hi Expert,
    i am getting the run time error while run the F-48 tcode in program "SAPLGLT0" and include "LGLT0FER"
    if i do the Extended program check of SAPLGLT0 program i am getting
    Test environment error like : The namespace of the program SAPLGLT0 has the setting "C" and cannot be tested A pssible cause for this is that an SAP program is being checked in a customer System
    How to correct that ? is any sap note available ?
    Thanks and Regards,
    GR

    Hi,
    Please check the following notes
    Note 1242773 - Getting short dump when doing GR for combined requisitions
    Note 1047059 - Run time error in migo/Goods receipt
    Regards,
    Jigar

Maybe you are looking for

  • Change FI document items created from MIRO

    Hi All I'm creating invoices with MIRO transaction. I want to change some document items of FI document related to one invoice, assigning the vendor number of header invoice to the field bseg-lifnr created in FI document. I have tried with BTEs, subs

  • Default Location for Applications?

    Can someone tell me where the Applications folder is supposed to go in OS X Tiger? Is it just supposed to be in the top directory (Macintosh HD)? While I was working in an FTP application, I tried to drag and drop something to my desktop and it took

  • Simple Acrobat Form Question

    I just purchased the Adobe Acrobat Standard software. This is going to be a really simple answer: I am creating a PDF document in which I need my associates to be able to fill in their name, phone number, etc. on the form and save a copy using Adobe

  • How do I import bookmarks and passcodes on my new computer

    '''bold text'''

  • Help needed with Mac Mini please

    I have just noticed the start up "dong" has stopped working and I believe this could indicate some problems somewhere, but how (without going to a "genius bar", would I go about finding out the problems? I know it has a faulty cd/dvd drive as it no l