ASM like RAID 1 between two storages

In my production environment instances of Oracle are under the file system JFS2. Soon we will have to relocate space for these file or switch to ASM. Our preference is going to the ASM, but we do need some tests we are conducting.
Today, in a production environment, data from storage1 are replicated via AIX / HACMP for storage2.
Our tests with the ASM has to contemplate the use of a set of disks in storage1 and another set in storage2.
Below the details of the environment:
In AIX 5.3 TL8+
root@suorg06_BKP:/> lspv+
hdisk17 none None
hdisk18 none None
hdisk19 none None
hdisk16 none None
root@suorg06_BKP:/> fget_config -Av*
---dar0---
User array name = 'STCATORG01'
dac0 ACTIVE dac1 ACTIVE
Disk DAC LUN Logical Drive
hdisk17 dac0 15 ASMTST_02
hdisk16 dac0 14 ASMTST_01
---dar1---
User array name = 'STCATORG02'
dac4 ACTIVE dac5 ACTIVE
Disk DAC LUN Logical Drive
hdisk18 dac5 16 ASMTST_B01
hdisk19 dac5 17 ASMTST_B02
select+
*  lpad(name,15) as name,*
*  group_number,*
*  disk_number,*
*  mount_status,*
*  header_status,*
*  state,*
*  redundancy,*
*  lpad(path,15) as path,*
*  total_mb,*
*  free_mb,*
*  to_char(create_date,'dd/mm/yyyy') as create_date,*
*  to_char(mount_date,'dd/mm/yyyy') as mount_date*
from+
*  v$asm_disk*
order by+
*  disk_number;*
NAME GROUP_NUMBER DISK_NUMBER MOUNT_S HEADER_STATU STATE REDUNDA PATH TOTAL_MB FREE_MB
0 0 CLOSED CANDIDATE NORMAL UNKNOWN /dev/rhdisk16 30720 0
0 1 CLOSED CANDIDATE NORMAL UNKNOWN /dev/rhdisk17 30720 0
0 2 CLOSED CANDIDATE NORMAL UNKNOWN /dev/rhdisk18 30720 0
0 3 CLOSED CANDIDATE NORMAL UNKNOWN /dev/rhdisk19 30720 0
select+
*  v$asm_diskgroup.group_number,*
*  lpad(v$asm_diskgroup.name,20) as name,*
*  v$asm_diskgroup.sector_size,*
*  v$asm_diskgroup.block_size,*
*  v$asm_diskgroup.allocation_unit_size,*
*  v$asm_diskgroup.state,*
*  v$asm_diskgroup.type,*
*  v$asm_diskgroup.total_mb,*
*  v$asm_diskgroup.free_mb,*
*  v$asm_diskgroup.offline_disks,*
*  v$asm_diskgroup.unbalanced,*
*  v$asm_diskgroup.usable_file_mb*
from+
*  v$asm_diskgroup*
order by+
*  v$asm_diskgroup.group_number;*
no rows selected
SQL> CREATE DISKGROUP 'DB_DG_TESTE' NORMAL REDUNDANCY DISK '/dev/rhdisk16', '/dev/rhdisk18';+
Diskgroup created.
select+
*  lpad(name,15) as name,*
*  group_number,*
*  disk_number,*
*  mount_status,*
*  header_status,*
*  state,*
*  redundancy,*
*  lpad(path,15) as path,*
*  total_mb,*
*  free_mb,*
*  to_char(create_date,'dd/mm/yyyy') as create_date,*
*  to_char(mount_date,'dd/mm/yyyy') as mount_date*
from+
*  v$asm_disk*
order by+
*  disk_number;*
NAME GROUP_NUMBER DISK_NUMBER MOUNT_S HEADER_STATU STATE REDUNDA PATH TOTAL_MB FREE_MB CREATE_DAT MOUNT_DATE
DB_DG_TESTE_000 1 0 CACHED MEMBER NORMAL UNKNOWN /dev/rhdisk16 30720 30669 09/12/2008 09/12/2008
0 1 CLOSED CANDIDATE NORMAL UNKNOWN /dev/rhdisk17 30720 0 09/12/2008 09/12/2008
DB_DG_TESTE_000 1 1 CACHED MEMBER NORMAL UNKNOWN /dev/rhdisk18 30720 30669 09/12/2008 09/12/2008
0 3 CLOSED CANDIDATE NORMAL UNKNOWN /dev/rhdisk19 30720 0 09/12/2008 09/12/2008
select+
*  v$asm_diskgroup.group_number,*
*  lpad(v$asm_diskgroup.name,20) as name,*
*  v$asm_diskgroup.sector_size,*
*  v$asm_diskgroup.block_size,*
*  v$asm_diskgroup.allocation_unit_size,*
*  v$asm_diskgroup.state,*
*  v$asm_diskgroup.type,*
*  v$asm_diskgroup.total_mb,*
*  v$asm_diskgroup.free_mb,*
*  v$asm_diskgroup.offline_disks,*
*  v$asm_diskgroup.unbalanced,*
*  v$asm_diskgroup.usable_file_mb*
from+
*  v$asm_diskgroup*
order by+
*  v$asm_diskgroup.group_number;*
GROUP_NUMBER NAME SECTOR_SIZE BLOCK_SIZE ALLOCATION_UNIT_SIZE STATE TYPE TOTAL_MB FREE_MB OFFLINE_DISKS U USABLE_FILE_MB
1 DB_DG_TESTE 512 4096 1048576 MOUNTED NORMAL 61440 61338 0 N _30669_
SQL> ALTER DISKGROUP 'DB_DG_TESTE' ADD DISK '/dev/rhdisk17', '/dev/rhdisk19';+
select+
*  lpad(name,15) as name,*
*  group_number,*
*  disk_number,*
*  mount_status,*
*  header_status,*
*  state,*
*  redundancy,*
*  lpad(path,15) as path,*
*  total_mb,*
*  free_mb,*
*  to_char(create_date,'dd/mm/yyyy') as create_date,*
*  to_char(mount_date,'dd/mm/yyyy') as mount_date*
from+
*  v$asm_disk*
order by+
*  disk_number;*
NAME GROUP_NUMBER DISK_NUMBER MOUNT_S HEADER_STATU STATE REDUNDA PATH TOTAL_MB FREE_MB CREATE_DAT MOUNT_DATE
DB_DG_TESTE_000 1 0 CACHED MEMBER NORMAL UNKNOWN /dev/rhdisk16 30720 30681 09/12/2008 09/12/2008
DB_DG_TESTE_000 1 1 CACHED MEMBER NORMAL UNKNOWN /dev/rhdisk18 30720 30681 09/12/2008 09/12/2008
DB_DG_TESTE_000 1 2 CACHED MEMBER NORMAL UNKNOWN /dev/rhdisk17 30720 30682 09/12/2008 09/12/2008
DB_DG_TESTE_000 1 3 CACHED MEMBER NORMAL UNKNOWN /dev/rhdisk19 30720 30681 09/12/2008 09/12/2008
select+
*  v$asm_diskgroup.group_number,*
*  lpad(v$asm_diskgroup.name,20) as name,*
*  v$asm_diskgroup.sector_size,*
*  v$asm_diskgroup.block_size,*
*  v$asm_diskgroup.allocation_unit_size,*
*  v$asm_diskgroup.state,*
*  v$asm_diskgroup.type,*
*  v$asm_diskgroup.total_mb,*
*  v$asm_diskgroup.free_mb,*
*  v$asm_diskgroup.offline_disks,*
*  v$asm_diskgroup.unbalanced,*
*  v$asm_diskgroup.usable_file_mb*
from+
*  v$asm_diskgroup*
order by+
*  v$asm_diskgroup.group_number;*
GROUP_NUMBER NAME SECTOR_SIZE BLOCK_SIZE ALLOCATION_UNIT_SIZE STATE TYPE TOTAL_MB FREE_MB OFFLINE_DISKS U USABLE_FILE_MB
1 DB_DG_TESTE 512 4096 1048576 MOUNTED NORMAL 122880 122725 0 N 46002
At the end of the creation of diskgroup you can see the query that the space available for the diskgroup is 30669 MB, but after the addition of two other discs the size in MB available 46002.
It was not expected that the space available for use was approximately 50% of total discs?
How should I proceed with the creation of diskgroup to have it in the
mirror storage1 with storage2 without this great loss of space
Edited by: scarlosantos on Dec 9, 2008 4:39 PM

Maybe my phrasing was bad in the last post.
You can do the RAID on IDE 3 by creating the array with either SATA 1 or 2. To install the driver, you must bootup with your Windows CD and hit F6 when being prompt to install 3rd party Drivers for RAID/SCSI.
You should have the SATA driver Floppy disk with you and it is required to install the drivers.
After installing the drivers, exit Windows installation and reboot, during reboot press Ctrl F to enter the Promise RAID array menu and you are up to do the RAID. Please read through the Serial ATA Raid manual for more info.

Similar Messages

  • Stock transfer order between two storage locations in IS Retail

    Hi,
    I want to have a Stock transfer order between two storage locations in the plant.
    I have activated the "Activate Stock Transfer Between Storage Locations", now i can create a STO and have the "Issuing SLoc" tab.
    Having that i get an error message "Not possible to determine shipping data for material XXX" Message no. 06280.
    I am trying to have the shipping data in customizing for set stock transfer - "Define Shipping Data for Plants", but my site is not listed due to the use of IS Retail. Is there a way to configure it?
    Tnx
    Lior

    Hola.
    Voy a contestar tu pregunta en espanol. Debes crear al centro  emisor  como  deudor  en la transaccion WB02  y ampliar a la organizacion  de compra.
    Posterior, debes crear al centro  receptor como  acreedor en la transaccion  wb02.
    Cesar Moreno. Funcional MM Retail.

  • Transfer of stock between two storage locations within a plant in two steps

    Hi,
    We have a plant 6400 & we have two storage locations 6401 & 6402. Each storage location belongs to a department which are located at some distance from one another.
    The material to be moved from one storage location to another using a truck.
    For the above mentioned process can we have the following process
    (1) In first posting the material is issue from the storage location to a transit
    (2) In second posting the material from the transit is received into the storage location
    I am looking for a feature that is possible between two plants, can we have a similar feature available within a plant.
    Warm regards,
    Umesh

    Hi Umesh,
    It would be a business decision i suppose. If those 5 nos. are lost / damaged in transit & needs to be scrapped, then the ownership needs to be decided first. If it lies with the sender, then reverse the 5 nos. (MB1B mvt is 314) & then proceed with your scrapping or if it lies with the receiver then receive the 5 nos & then proceed with the scrapping.
    Posting in system is one aspect, but a clear business rule is the key factor. So discuss with your materials mgmt personnel to define the process flow.
    Hope the above helps.
    Regards,
    Vivek

  • Inspection lot for Mvt type 311 between two storage location only

    Hello all,
    I want to create an inspection lot only whenever my material transfer between two particulars storage locations. e.g if i have multiple storage locations, then i need an inspection lot to be created whenever my material transferred from say X S.Loc to Y S.loc only. For other transfers i don't need to create an inspection lot even from Y to X.
    For more clarity, suppose i have ten storage locations. i have also created one storage location for my Lab. So I want an inspection lot to be created only when my material transfer to my Lab storage location from any other storage location, not when i transfer from my LAB to any other S.Loc or between two S.Loc other than LAB.
    I have activated inspection type 08 but it does not have a restricition on S.Loc.
    So please suggest some solution for the same.

    Dear Amit
    In this case what you can do is make a copy of 311 movement type, say Z11. Deactivate QM for 311 and activate QM for Z11
    So whenever you want inspection lot to be created use Z11.
    You can activate and deactivate QM in QCCO > Quality inspection > Inspection lot creation > inspection for goods movement
    Regards
    Gajesh

  • Error during Stock movement between two storage type

    Dear Friends
    How do i move the stock from one storage type to other storage type within a warehouse?
    In the material master i have maintained a storage type indicator for automatic storage type determination.
    now when i create a TO for moving the stock from the orginal loaction to other location (NOT INTERIM) i am getting an error
    Error occurred during storage section search (1740 003)
    Message no. L3041
    Diagnosis
    No storage area search has been defined for this material and this storage type.
    Please assist
    Thanks

    Dear,
           Kindly specify the storage section indicator in Material Master - WM view.
    Regards,
    Sandip

  • Modal-like behaviour between two Jframes

    Let�s say my app has 2 JFrames. The main JFrame is already loaded and from it, there is a menuitem that loads and shows the 2nd JFrame. I�d like to know how can I disable the main JFrame until the users requests to do so, clicking on some button or alike on the 2n JFrame.
    I have tried to do .getContenPane().setEnabled(false) on the main JFrame before loading the 2n one, but it seems not wo work.
    I have also considered going across all components inside the main JFrame, using getContentPane().getComponents() an on the returing array, do a setEnabled(false). But this seems quite a dirty way to accomplish it.
    Any idea? JFrame does not offer a setModal() method? It�s kinda sick...
    (No , I don�t want to make the 2nd JFrame into a JDialog that I know offers the setModal() method)....

    I have tried to do .getContenPane().setEnabled(false) on the main JFrame
    before loading the 2n one, but it seems not wo work.seems to work OK in this
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    class Testing
      public void buildGUI()
        JButton btn = new JButton("Show Other Frame");
        JPanel p = new JPanel(new GridBagLayout());
        p.add(btn,new GridBagConstraints());
        final JFrame f1 = new JFrame("f1");
        f1.getContentPane().add(p);
        f1.setSize(200,200);
        f1.setLocationRelativeTo(null);
        f1.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        f1.setVisible(true);
        btn.addActionListener(new ActionListener(){
          public void actionPerformed(ActionEvent ae){
            final JFrame f2 = new JFrame("f2");
            f2.addWindowListener(new WindowAdapter(){
              public void windowClosing(WindowEvent we){
                f1.setEnabled(true);
            f2.setBounds(100,100,150,100);
            f2.setVisible(true);
            f1.setEnabled(false);
      public static void main(String[] args)
        SwingUtilities.invokeLater(new Runnable(){
          public void run(){
            new Testing().buildGUI();
    }

  • ASM vs RAID for 11gR2 RAC Environment

    Hi There!
    We are planning to install 11GR2 RAC with two nodes Cluster on LINUX in Our Environment.
    Operating System: OEL 5.4
    In our hardware we got two dell Servers with 16GB RAM on each plus On SAN side we have only 8 disk (173GB) left for RAC Cluster Setup. I am going to create to database (LIVE/UAT) on This Cluster Setup. Currently Our Production DB size is 6GB and I assume for coming 5 year it will not go beyond 100GB And I keep UAT size 15GB fix with No changes.So how you get the best ASM performance by using my all Resources.
    My question:
    1)     Which is best solution for ASM and RAID in our storage Environment?
    2)     How many Disk group I Create for Both Databases (UAT/LIVE)?
    3)     How many disks should I allocate in Each Disk Group with which RAID Option or if any suggesting for LUN, How do I create LUNS across the Disk which I got?
    4)     I know oracle recommended Two DISK Group DATA&FRA is there any other suggestion for CRS, REDO, and TEMP FILE?
    Thanks for your Assintance.
    Hemesh.

    My first question was : Which RAID Option(0,1,5,0+1) I choose with ASM ?Well, it doesnt matter for ASM. At least in your configuration with 8 disks.
    RAID0is not an option - forget about it. RAID1 (or combined with more than two disks and an overlayed RAID0 which makes an RAID 1+0) might be an option for write-intensive databases. RAID5 is more for read-intensive due to the RAID5-write-hole but offers "more" capacity at the cost of slower write speed.
    I recommended to stick with RAID1 (thus mirroring two disks) and exporting them to ASM rather than creating one big RAID1+0 over all of your disks and exporting the storage as one big chuck to ASM for manageability. If you want to add storage lateron your perfect in line with Oracles recommendations to have equal size LUNs in ASM with two mirrored disks. If you create on big RAID 1+0 and lateron add two disks you have a LUN of 600 GB size and one of 170 GB size...thats a big mismatch.
    But If i create TWO disk group then, is there good practice to offer them to both (UAT/LIVE) databases.?Normally there is a separation between UAT and P on storage and on server level. In your case it might be "ok" to place everything in the same disk group. This mainly depends on which database puts the most load on the disk subsystem.
    Ronny Egner
    My Blog: http://blog.ronnyegner-consulting.de

  • How to calculate hours between two dateTime node in BPEL.

    In my BPEL there's a requirement need calculate hours between two dateTime type..
    I tried 2 solutions, both of them failed:
    1. use xslt calculate duration(xml type, like PT12H) between two dateTime, and then use embedded java code to get the hours.. The problem is : I need to parse the xml duration format...(like this real one: -P80DT17H47M36S....), and to parse it in java , maybe have the same problem with solution 2..
    * [Subtracting 2 dateTime values into a duration using XPath 2.0|http://blogs.oracle.com/rammenon/2007/07/subtracting_2_datetime_values.html]
    2. use embed java code, but it seems we can't use some class in embedded java code:
    my code(input begin, end both dateTime in xml. output: diff, int in xml):
    1 System.out.println("\n\nTimeTestBegin");
    2 String begin=getVariableData("begin").toString();
    3 String end=getVariableData("end").toString();
    4 System.out.println(begin+"-----"+end);
    5 //Class c1=Class.forName("javax.xml.datatype.XMLGregorianCalendar");
    6 //Class c2=Class.forName("javax.xml.datatype.DatatypeFactory");
    7 //System.out.println(c1.getName());
    8 //System.out.println(c2.getName());
    9 javax.xml.datatype.XMLGregorianCalendar beginTime = javax.xml.datatype.DatatypeFactory.newInstance().newXMLGregorianCalendar(begin);
    10 javax.xml.datatype.XMLGregorianCalendar endTime = javax.xml.datatype.DatatypeFactory.newInstance().newXMLGregorianCalendar(end);
    11 long diff=beginTime.toGregorianCalendar().getTimeInMillis()-endTime.toGregorianCalendar().getTimeInMillis();
    12 setVariableData("diff",String.valueOf(diff/1000/3600));
    13 System.out.println("DIFF======"+diff/1000/3600);
    14 System.out.println("TimeTestEnd");
    it's said can't compile java class, but can't find the detail error, I think the problem is how to import java class to embedded java code activity(use full package name like above code don't work), when I remove line 9-13, no compile error..
    BTY: Jdeveloper is a IDE support java, but why the embedded java activity's edit window only have a simple "java code" editor, too simple that it can only edit you code snippet...
    3.There's another sulotion: extend BPEL xpath functions(add a new function), but in my project, modify BPEL server(soa server)'s config file is not allowed..
    Anyone know easy solution to my problem?
    Thanks.

    Hi, All,
    I found the cause. Sorry, it's my mistake..
    below line have a DatatypeConfigurationException:
    javax.xml.datatype.DatatypeFactory.newInstance()
    When I test my java code snippet, I coped the code snippet to one of my java class in eclipse, and put it in a method to check if there's compile error, but I didn't notice there's a "throws Exception"...
    the final java code snippet for test is :
    input: begin dateTime
    input: end dateTime
    output: diff int, how many hours in (begin-end)
    try{
    System.out.println("\n\nTimeTestBegin");
    String begin=getVariableData("begin").toString();
    String end=getVariableData("end").toString();
    System.out.println(begin+"-----"+end);
    javax.xml.datatype.XMLGregorianCalendar beginTime = javax.xml.datatype.DatatypeFactory.newInstance().newXMLGregorianCalendar(begin);
    javax.xml.datatype.XMLGregorianCalendar endTime = javax.xml.datatype.DatatypeFactory.newInstance().newXMLGregorianCalendar(end);
    long diff=beginTime.toGregorianCalendar().getTimeInMillis()-endTime.toGregorianCalendar().getTimeInMillis();
    setVariableData("diff",String.valueOf(diff/1000/3600));
    System.out.println("DIFF======"+diff/1000/3600);
    System.out.println("TimeTestEnd");
    }catch(Exception e){
    e.printStackTrace();
    }

  • Migration of orginals between two KPro storage systems

    Hi Friends
    I have created a document and checked in the originals into Storage category - SAP-SYSTEM (DMS_C1_ST-Default storage DMS (main files)).I have checked "Use KPro" configuration in "Define document type". Now, I need to migrate this originals into a fileshare system, which i have created as a new storage category(ZNEWDMS).How can I go about?
    I know there is program DMS_KPRO_CONVERT available. But this program migrates documents from DMS storage(Vault, Server, Archive) to KPro storage. My requirement is to migrate the originals between two KPro storages ie From DMS_C1_ST to ZNEWDMS.
    Could anybody help me on this?
    Regards
    S.Sivakumar

    Hi,
    I noticed this thread is a bit old, but I thought I would ask anyways.
    I have the following situation:
    Multiple SAP Instances, each with their own KPRO. A consolidation project to move towards a single SAP Instance. The multiple KPRO's stay as is.
    I am assuming the easiest wat to go about this is to ALE all the metadata of the various SAP instances to the new instance. Would the KPRO links remain intact?
    As part of the consolidation, Objects like materials and equipments have changed, e.g. Material 100 has changed to Material E100. For this I would assume a Bapi to update all the DIR's with the new Objects? This I am hoping would sever the old Object Link and create the new one?
    Any suggestions please.
    Thanks.
    Freddie.

  • Outbound Delivery created between two different Storage Bins

    Dear Guru ,
    Using WM can I create an SD Outbound Delivery between two different storage bins linked to the same storage location ?
    Thanks

    Hi,
    Between storage bins only transfer posting is possible as per my understanding.

  • Mirrored Storage between two servers

    Hello,
    Is it possible to create redundant storage using two Windows 2012 r2 servers?  I've been looking all over and any HA options always reference having external shared storage presented to the cluster (I assume NAS/SAN).  I am also assuming that said
    posts expect that whatever tech is being used for shared storage deals with keeping that data fault tolerant (e.g., mirrored SAN) and the Windows cluster need not be aware of that happening in the background.
    Due to lack of any storage hardware in my environment I was hoping there was a way to create a redundant file share/system between two Windows 2012 r2 servers at which point I could then create an iSCSI target to present a virtual drive to an application
    server cluster.  That way if one of the "storage servers" fails it won't take down the application running on the app server.  I looked into DFS however since the app locks its files those won't replicate across.
    I hope my question wasn't too convoluted.
    Thanks for any guidance! 

    Hi Bkboudreau,
    If I am not misunderstand your question, you are finding the method for iSCSI target servers synchronize iSCSI data.
    Replication of data between sites is very important in a multi-site cluster, and is accomplished in different ways by different hardware vendors. You can choose the hardware
    storage vendor solution when you want to synchronize data between two shared storage.
    You cannot use the feature in Windows Server 2008 called Distributed File System Replication (DFS-R) as your data replication method in a multi-site cluster. DFS-R only performs
    its data replication after a file is closed. This works well for files such as documents, presentations, or spreadsheets, but it will not work for files that are held open, such as databases or virtual machines. You must choose a replication option other than
    DFS-R.
    The related KB:
    Requirements and Recommendations for a Multi-Site Failover Cluster
    http://technet.microsoft.com/zh-cn/library/dd197575(v=ws.10).aspx
    The similar thread:
    how to sync the data between the two iSCSI target server
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/067ba543-369c-4d22-9f00-1f41d7aedc00/how-to-sync-the-data-between-the-two-iscsi-target-server?forum=winserverClustering
    Hope this helps.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • How do I place a fixed image and show it between two pages like the Global on Page 3 (LOE)?

    How do I place a fixed image and show it between two pages like the Global on Page 3 (LOE)?

    Ohoh, I do think so. It's the trick. Thanks
    BTW, How about including a widget within real time RSS feed?

  • Stock transfer between two WM managed storage locations

    Hi,
    I want to transfer some stock between two wm enabled storage loc (wm 120 and sl  0001 to another wm 200 and sl 0006) but
    not able to do so. Got to know that there are two components involved in this one IM and WM. I am new in WM so do not have much idea please provide me the right solutions.
    Thanks and Regards,
    Rahul
    Edited by: Rahul Shukla on Aug 23, 2010 12:30 PM

    Stock transfer w/o delivery:
    You can execute the goods movement in IM (one-step or two step) and after that you can process the TRs which are generated when posting GI/GR (hopefully your config is OK and TR is created automatically; else you have to maintain WM-IM interface). You can process the relevant TR from LB10 both in supplying plant (TO wiill be created from TR --> stock removal) and in receiving plant (TO will be created from TR --> putaway TO)
    Stock transfer with delivery:
    In supplying plant you have to pick the delivery (you have to create TO), you can do this e.g. via trx LT03, VL06O, VL02N (from "Subsequent functions" manu). In receiving plant you have to process the TR (from LB10) which is generated when GR is posted.
    (based on your WM-IM interface setting you may not get TR but immediate TO creation can be triggered, etc. If you are using inbound delivery as well you have to create putaway TO, etc.)
    Please specify your problem you are facing - in this case you may get specific answer.
    Edited by: Csaba Szommer on Aug 23, 2010 1:51 PM

  • How to to make Cluster between two server 2012 Datacenter with share storage and Hyper-V role then install Exchange 2013 on each server datacenter then make DAG between Exchange servers

    Dears,
    I have IBM Flex server with built in storage,  
    HOW to to make Cluster between two  server 2012 Datacenter with share storage and Hyper-V role then install Exchange 2013 on each server datacenter then make DAG between Exchange servers?
    If there any prerequisites of the Share storage types ?and any configuration guide to deploy Cluster between two Server 2012 datacenter ?

    Microsoft Failover Clusters require shared storage.  If you wish to create a failover cluster with local storage, you need to use third party software to mirror the disks and present it to the hosts (siog.com, datacore.com, starwind.com).  If you
    use third party software, you will need to follow their instructions for configuring the environment.
    Questions on how to configure Exchange environments are better asked in an Exchange forum.
    .:|:.:|:. tim

  • I would like the share an iTunes library between two different accounts on one Mac. How do I do this?

    iTunes no longer works properly (aka at all) while using one of the user accounts set up on my iMac. It does, however, work when logging in under another user account on the same iMac. (if any of you can help me solve this issue that would be perfect). If there is no solution can anyone help with my request to share an iTunes library between two different accounts on one Mac. How do I do this?

    jc_hering wrote:
    that works for anything he purchases after he creates the new account.  What about his current music that currently resides in my itunes library?  How can I get his current music out of my library into his new account/library??  Thanks..
    Copy it to his computer into his iTunes library and authorize his computer with the iTunes account used to purchase them..
    You cannot tranfser items from one iTunes account to another. Purchased items remain part of the iTunes account is was purchased with.
    iTunes account - used to purchase items
    iTunes library - where purchases (and CD RIPs) go on the computer

Maybe you are looking for