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

Similar Messages

  • 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

  • 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>

  • 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

  • Flash won't run on server but runs in test environment

    I created a flv file from a mov file inserted it into a htm
    page. In the test environment it work (testing from Dreamweaver). I
    load it on a 2003 windows server (checked the Mime Type already) in
    a subdirectory off the root and it doesn't work. Below is the
    script code from the html file for the script part
    What am I missing??
    Thanks
    GK

    Hi zooz8,
    might this help you:
    http://www.goldschmiede-blumberg.de/adobFlash01.php
    I used the defaults of your site.
    Sometimes helpful: rebuild your site or make the cache empty.
    Hans-G.

  • Access to internet in Test Environment

    Hi All,
    I would like to know how can we grant the internet access to all my DC which has been configured in VMware Platform in my test environment.
    Also would like to know prerequisite to configured it. 
    Scenario: I have one Domain and 3 DC with all (Windows Server 2008 r2) and they all are connected with static IP Address, now i need to provide a internet connection to my domain and through domain it can be shared to other dc , so that
    i can able to access internet in all my servers.
    Also, i don't have router so is it possible to achieve this scenario. 
    I will be glad if anyone can help me with the requirements and tools which are needed to accomplish above scenario.
    Please let me know if anything else required.
    Thanks
    Atul srivastava

    As you do not have a router, you can use RRAS to achieve that. The first thing is to make the traffic routed to internet.
    Ping and Tracert can be helpful. 
    The second part would be the DNS resolution. You can configure your internal DNS servers to have your ISP DNS servers as forwarders and make your domain-joined servers / computers point only to your internal DNS servers as primary and secondary DNS servers.
    This posting is provided AS IS with no warranties or guarantees , and confers no rights.
    Ahmed MALEK
    My Website Link
    My Linkedin Profile
    My MVP Profile

  • 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

  • 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

  • Report showing material whose SLED is soon.(Urgent)

    Dear all, Is there any report in std SAP which will show material whose Shelf life expiration date is reached or reaching within a month or two? If not which report can give this data? Regards, Shailendra

  • Using filewriters to write to an already opened file

    Hi, I have used a filewriter to write some message to a file in a loop. Will i be able to write the messages for the rest of the iterations, if after the first iteration , i open that file in a notepad and check out if the message is being written pr

  • BAPI Reservation and PR issue

    Hi, I have created a reservation and purchase requisition(PR) with reference to the reservation. In my program I am changing the quantity where in both the reservation and PR should be updated. I am using BAPI_RESERVATION_CHANGE and BAPI_PR_CHANGE fo

  • Command line wav file player

    Are there any command line wav file players i can use? I use licq and would like to enable sounds. My sound card works fine as it's an es1371 and already picked up by the kernel. I don't use oss or alsa.. so i'm hoping i can get a quick suggestion.

  • Tranposrt - Purchase Requisition Release Strategy with Classification

    Gurus! Tell me if I want to Transport the Purchase Requisition release strategy with classification. The Data in each charisteristics in each PR Strategy that I have set in Dev is not getting transported to Quality. Do I have to enter the data in cha