EP & XI on same server and same instance

Dear Experts,
Can i use SAP EP and XI server on same host,SID and same instance number.
I read old messages on SDN but need perfect answer.
Regards,
Vishal Borisa.

vishalborisa wrote:
Dear Experts,
>
>
> Can i use SAP EP and XI server on same host,SID and same instance number.
>
> I read old messages on SDN but need perfect answer.
>
> Regards,
> Vishal Borisa.
Its not possible to install 2 system with same SID and instance number on same host because of port conflicts etc.
Thanks
Sunny

Similar Messages

  • Rman duplication of database to the same server and same disk group

    Hi,
    We have multiple databases - rmsprd1 and oidprd1 on asm disk groups - ASMDG_DAT01 and ASMDG_FRA01 on a server.
    Both these databases are single instance asm based databases.
    I am trying to do a rman duplication from rmsprd1 to rmsprd2 in the same server. I intend to use the same asm disk groups - ASMDG_DAT01 and ASMDG_FRA01.
    Is this possible ?
    Currently I have the following structure
    +ASMDG_DAT01/RMSPRD1/DATAFILE
    +ASMDG_DAT01/RMSPRD1/CHANGETRACKING/
    +ASMDG_DAT01/RMSPRD1/CONTROLFILE/
    +ASMDG_DAT01/RMSPRD1/DATAFILE/
    +ASMDG_DAT01/RMSPRD1/ONLINELOG/
    +ASMDG_DAT01/RMSPRD1/PARAMETERFILE/
    +ASMDG_DAT01/RMSPRD1/TEMPFILE/
    +ASMDG_FRA01/RMSPRD1/AUTOBACKUP/
    +ASMDG_FRA01/RMSPRD1/BACKUPSET/
    +ASMDG_FRA01/RMSPRD1/CONTROLFILE/
    +ASMDG_FRA01/RMSPRD1/DATAFILE/
    +ASMDG_FRA01/RMSPRD1/ONLINELOG/
    Will I be able to create something like
    +ASMDG_DAT01/RMSPRD2/DATAFILE
    +ASMDG_DAT01/RMSPRD2/CHANGETRACKING/
    +ASMDG_DAT01/RMSPRD2/CONTROLFILE/
    +ASMDG_DAT01/RMSPRD2/DATAFILE/
    +ASMDG_DAT01/RMSPRD2/ONLINELOG/
    +ASMDG_DAT01/RMSPRD2/PARAMETERFILE/
    +ASMDG_DAT01/RMSPRD2/TEMPFILE/
    +ASMDG_FRA01/RMSPRD2/AUTOBACKUP/
    +ASMDG_FRA01/RMSPRD2/BACKUPSET/
    +ASMDG_FRA01/RMSPRD2/CONTROLFILE/
    +ASMDG_FRA01/RMSPRD2/DATAFILE/
    +ASMDG_FRA01/RMSPRD2/ONLINELOG/
    I know that I can create a different asm disk group for the rman duplication but this is proving to be a hassle.
    Thanks
    Sandeep

    Hi,
    I have found the answer working with Oracle via a service request. Admittedly there was no direct oracle documentation for doing this and hence documenting the steps here.
    No legalities, formalities involved please.
    Here are the steps - rmsprd1 is the source, rmsprd2 is the target, +ASM is the asm instance supporting both rmsprd1 and rmsprd2. The intention is to put both the source and destination in the same server. The backupset backup in location /dbaadm/sandeep_rman_refresh will be used for the duplication.
    1) Take rman backupset backup of the source database - rmsprd1
    rman_take_backup.ksh ( Take backup of source - rmsprd1 using rman ). The contents of the rman_take_backup.sh script are given below :
    rm /dbaadm/sandeep_rman_refresh/*
    export NLS_DATE_FORMAT='YYYY-MM-DD:HH24:MI:SS'
    rman target / <<EOF
    run
    allocate channel d1 device type disk format '/dbaadm/sandeep_rman_refresh/%U';
    allocate channel d2 device type disk format '/dbaadm/sandeep_rman_refresh/%U';
    allocate channel d3 device type disk format '/dbaadm/sandeep_rman_refresh/%U';
    allocate channel d4 device type disk format '/dbaadm/sandeep_rman_refresh/%U';
    allocate channel d5 device type disk format '/dbaadm/sandeep_rman_refresh/%U';
    allocate channel d6 device type disk format '/dbaadm/sandeep_rman_refresh/%U';
    CONFIGURE CONTROLFILE AUTOBACKUP ON;
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '/dbaadm/sandeep_rman_refresh/%F';
    backup as backupset database plus archivelog tag 'clonebackupset';
    EOF
    2) Make the directories for destination database ( rmsprd2 )
    /opt/oracle/admin> mkdir -p rmsprd2/adump rmsprd2/dpdump rmsprd2/pfile rmsprd2/scripts
    3) Create pfile from rmsprd1 spfile. copy/rename the pfile to make a pfile for rmsprd2.
    4) Edit listener.ora in ASM ORACLE_HOME and edit tnsnames.ora in DB ORACLE_HOME
    listener.ora
    LISTENER_RMSPRD2 =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1522))
    (ADDRESS = (PROTOCOL = TCP)(HOST = kirkjerpdb01.kirklands.com)(PORT = 1522))
    SID_LIST_LISTENER_RMSPRD2 =
    (SID_LIST =
    (SID_DESC =
    ( ORACLE_HOME = /opt/oracle/product/11.2.0/db_1 )
    ( SID_NAME = rmsprd2 )
    ADR_BASE_LISTENER_RMSPRD2 = /opt/oracle
    ENABLE_GLOBAL_DYNAMIC_ENDPOINT_LISTENER_RMSPRD2=ON # Section added by Sandeep
    SUBSCRIBE_FOR_NODE_DOWN_EVENT_LISTENER_RMSPRD2=OFF
    ADMIN_RESTRICTIONS_LISTENER_RMSPRD2=ON
    tnsnames.ora ( http://francispaulraj.wordpress.com/ora-12528-tnslistener-all-appropriate-instances-are-blocking-new-connections/ )
    RMSPRD2 =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = kirkjerpdb01.kirklands.com)(PORT = 1522))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = rmsprd2)
    (UR = A)
    5) Build a passwordfile ( I just copied and renamed it )
    6) Edit /etc/oratab to add database entry for rmsprd2
    7) Set the environment for rmsprd2
    . oraenv
    rmsprd2
    8) Startup nomount of rmsprd2
    sqlplus / as sysdba
    startup nomount pfile=/opt/oracle/admin/rmsprd2/pfile/initrmsprd2.ora
    9) Create spfile from pfile='/opt/oracle/admin/rmsprd2/pfile/initrmsprd2.ora';
    10) shutdown and startup rmsprd2 with spfile
    SQL> shutdown abort;
    ORACLE instance shut down.
    SQL> startup nomount;
    ORACLE instance started.
    Total System Global Area 1068937216 bytes
    Fixed Size 2213632 bytes
    Variable Size 788531456 bytes
    Database Buffers 268435456 bytes
    Redo Buffers 9756672 bytes
    11) We are now ready for duplication from rmsprd1 ( source ) to rmsprd2 ( destination ) both using +ASM standalone asm instance. set the environment to rmsprd1and fire away.
    Please note that the duplicate script is only connecting to auxilary database ( rmsprd2 ) and using the backup location for the duplication.
    I used a unix shell script -rman_duplicate_from_backup.ksh. The contents are given below :
    $ORACLE_HOME/bin/rman auxiliary sys/prd123@rmsprd2 log=rman_duplicate_from_backup.log << EOF
    run
    allocate auxiliary channel d1 device type disk;
    allocate auxiliary channel d2 device type disk;
    allocate auxiliary channel d3 device type disk;
    allocate auxiliary channel d4 device type disk;
    allocate auxiliary channel d5 device type disk;
    allocate auxiliary channel d6 device type disk;
    DUPLICATE DATABASE TO rmsprd2
    BACKUP LOCATION '/dbaadm/sandeep_rman_refresh';
    EOF
    12) Voila - the rmsprd1 to rmsprd2 is done.....
    Hope this helps somebody else wanting to do the same excercize. Have Fun.....
    regards
    Sandeep

  • Face time fades out and then tries to reconnect on new ipad retina display on WiFi.  Iphone 4s has no problem with face time from exact same location and same contact.  WiFi signal strong on both devices.  What gives?

    Face time fades out and then retries to connect (new Ipad Retina Display) on WiFi. Iphone 4s has no problem with face time from same location and same contact.  What gives?

    rdallas001 wrote:
    Is the router to small?
    Not necessarily, if you are using Facetime all the data goes through your WiFi router, your cable/DSL modem, your ISP and the internet to Apple's Facetime servers and then, in reverse, down to the Facetime recipient. If your ISP connection is too slow or there is excessive traffic on the internet you can have Facetime problems.
    Most WiFi routers can handle this unless others in the house are also using WiFi at the same time. The problem may be your ISP connection or congestion on the internet, etc.

  • I'm using same icloud and same apple ID on two iphones. Now i get calls from same number on both iphones at the same time. How to turn off that?

    I'm using same icloud and same apple ID on two iphones. Now i get calls from same number on both iphones at the same time. How to turn off that?

    Apple ID's are not device specific, so when you changed it on the iPad 2 it changed it on the iPhone 4 as well, since it's the same account still. What you need to do is create a second Apple ID (so you'll have two accounts, one for iPhone 4 and a seperate one for iPad 2).
    To create a new Apple ID on your iPad 2:
    1) Go into Settings > Store.
    2) If you are already signed in, tap your Apple ID on the screen and you will be given a few options, one of which is to sign out of your account.
    3) After you sign out, now click the "Sign in" button.
    4) Tap "Create New Apple ID" and follow the instructions on-screen.

  • Can I connect two apple tv on same network and same apple ID at a time ?

    Can I connect two apple tv on same network and same apple ID at a time ?

    Welcome to the  Discussion Forums.
    Yes you can do all that without needing to keep plugging things in and out. You will still need to manually turn on the receiver and turn down the volume from the tv though.

  • I have some trouble with Safari!  Everytime i google something, I expect safari to open the link i click in the same window and same tab - as it did before - but now it always opens a new tab! I'm getting really tired of that! So please help me!

    I have some trouble with Safari! 
    Everytime i google something, I expect safari to open the link i click in the same window and same tab - as it did before - but now it always opens a new tab! I'm getting really tired of that! So please help me! I want safari to open the google search link in the same window and tab! How to fix that?
    Please help me!!!
    Thank you!

    From the Safari menu bar, select
    Safari ▹ Preferences ▹ Extensions
    Turn all extensions OFF and test. If the problem is resolved, turn extensions back ON and then disable them one or a few at a time until you find the culprit.

  • How can 2 diff prices for 2 GRs of same material and same Qty be ??

    Hi Guys
    When i am doing 2 Goods Receipts (GR) for same material and same Qty with different Batch characteristic, the material price (in the Quantity tab of MIGO screen) is getting changed. Two different prices are coming to the two different GRs. How this can be ??
    Actually it has to pick the std. material price from material master as "S" is the price control .
    May anyone tell how is the Batch characteristic configured to an automatic split valuation (Valuation type) and thus a new price is copied to the field in the GR screen. (MSEG-DMBTR)
    Kindly Rush asnwers !!
    MaruthiRam

    Hi Ram,
    Please check wheather the split valuation is activated  or not for this material.
    if it is activated,
    go to mm03.
    select accouintg view, enter the valuation type ; in your case  BATCH1.
    then you can see the value of this batch material.
    again go to mm03,
    enter second batch in the valuation type.
    you can see the batch2 material value.
    regards
    srinivas

  • Error to select data field of same length and same type.

    Hi,
    I have to select data from VBRK , VBRP and then from table CE4UCA1_ACCT based on the condition
    AKTBO   IN SO_AKTBO           AND
    PAOBJNR = LT_VBRK_VBRP-POSNR  AND
    PASUBNR IN SO_RKBNR           AND
    PRCTR   IN SO_PRCTR.
    So while coding it gave a syntax error saying that PAOBJNR & POSNR need to be of same length. To solve this I chagned the decalaration of POSNR from "POSNR TYPE POSNR" to "POSNR TYPE RKEOBJNR" and this corrected the error.
    Now I have to select data from KONV table based of the condition :-
    Get data from KONV table.
      select knumv
             kposn
             stunr
             kwert
         into table lt_konv
         from konv
         for all entries in LT_VBRK_VBRP
         where knumv = LT_VBRK_VBRP-knumv and
               kposn = LT_VBRK_VBRP-posnr and
               stunr = '950'.
    Here again it is throwing syntax error that LT_VBRK_VBRP-posnr should be of same type and same length. So please guide me how to solve this type of situation.
    Thank You,
    SB.

    Hi,
    select knumv
    kposn
    stunr
    kwert
    into table lt_konv
    from konv
    for all entries in LT_VBRK_VBRP
    where knumv = LT_VBRK_VBRP-knumv and
    ***--- Change to
    *kposn = LT_VBRK_VBRP-kopos and*
    stunr = '950'. For 4.6c system
    OR
    Pass VBAK-KNUMV to KONV-KNUMV
    VBAP-POSNR to KONV-KPOSN
    Edited by: Raj on Jun 17, 2008 2:27 AM

  • Making the frame same size and same location as the field.

    In my report, some frames only contain one field. To save space, I need to make those frames same size (same width, same height), and same location as the field. It means the size and location of those frames should exactly match their fields.
    But, for those frames which only consist of one field, when I use the mouse to adjust their sizes and location to match their fields, Object Navigator will show that their fields moved outside of them. Is there anyway to solve this problem?

    Hello 1011308
    Hi in your case check out the lock object option into report builder.
    After Putting filed into parent fame , if u off the lock option , then field can go outside.
    just check onces.
    Thanks
    Harsh shah

  • Difference between application server and central instance

    Hi everyone,
    whats the difference between application server and central instance and message server. where it will be installed. and how?
    Regards
    Basis Fresher

    Hi,
    just want to clarify that is is not correct that only one enqueue process can be configured on the CI.
    Please see the documentation within transaction RZ11 for the parameter Parameter : rdisp/wp_no_enq
    Short description : number of enqueue work processes
    Parameter description :
    You can use this parameter to define the number of enqueue work processes for the instance.
    Ensure that a value >0 is only set on the central instance that provides the enqueue server (instance rdisp/enqname ). One enqueue work process on the central instance is normally sufficient (rdisp/wp_no_enq = 1); only in very large systems can a higher value be useful.
    Kind Regards
    Thomas Alt

  • How do I install two instances on the same Server and avoid a conflict?

    Hi,
    I have one Server and I want to install two instances of SQL Server on it.
    1. Will be a default instance.
    2. Will be a named instance.
    The Server has an IP address of 192.168.0.10 and the default instance will be using port 1433.
    I want them to share the same address, but be listening on different ports.
    Do I,
    1. Go into TCP/IP of the named instance and set the port numbers for all the IP's to a port number, e.g. 1976?
    2. Delete the 0 from the dynamic ports sections?
    3. Create an open port rule in the Windows Firewall to allow access to the Server?   
    Thanks

    Hi,
    Please see following Microsoft link
    Configure SQL Server to listen on Specific port
    Configure Windows firewall to allow SQL Server access
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it.
    My TechNet Wiki Articles

  • Create dev and test instances of Apex on the same server and database

    I have a dev and prod instances of Apex on different servers. I want a test instance on the same server as the dev instance.
    I am using workspace export/import so all instance workspaces have the same workspace id. The application ID is the same on each instance, in the same workspace. This allows pages to be exported/imported in the differenct instances.
    My question is (I am sure it is obvious) can I have more than one instances of Apex on the same database (dev and test) and have each instance have identical Workspace IDs, etc.
    Sam

    Hi Sam,
    But you can have more than one database on the same server.
    What we do is create a separate database for each APEX versions we are supporting (we still have a customer using APEX 2.0).
    All the databases are accessed with the same APACHE config. All you have to do is change the DAD and have a separate dad for each database (i.e. each APEX versions).
    ex : /pls/apex_dev /pls/apex_test
    This way , I can run different APEX versions on the same server.
    Francis.
    http://insum-apex.blogspot.com/

  • WIll multiple instances on same server use same SA by default?

    I have a SQL server on which I've created a second instance using Windows authentication. I never created an SA account or password during installation of the new second instance.
    In Security > Logins, I see SA. Is this the same account as the one in the other instance. I don't know the other instance's password, so if I change it in the new instance will it be changed in the previously existing instance as well?
    Thanks,
    Scott

    Hi,
    SA account will be created as a part of the SQL install and we don't get to specify a passowrd while installation when windows authentication is chosen. This is the reason why the SA is disabled if you check in the mgmt studio after SQL installation. Try
    logging in using the admin account that you have provided for the SQL server instance during the Sql install, This will allow you to enable the SA account and you can change the password.
    This won't let you to login using SA acount unless you have changed you authenticaion mode to  MIXED @ Security tab on Server properties. Restart of the instance is required to bring this change into effect. Now you can login using SQL authentication
    specifying the SA account and password.
    No SA accounts on different instances of SQL server are same. They are unique per instance and changing the password on one SA account for an instance doesn't have any affect on the others.
    Hope this helps,
    Many Thanks
    BHanu

  • Creation of Multiple Activities for same Employee,same day and same time

    Hi Experts,
    In CRM 2007 I am creating an Activity(e.g Customer Visit) for a particular day for a particular employee. I am selecting the Option "Whole Day".
    When again I am creating another Activity same day and for same employee the ideally system should not allow me to create further activities as I have already scheduled for the whole day but its is allowing me to create as many activities i want irrespective of Time frame.
    I want to block overlappped activities created for  same emloyee same time.
    Can you please suggest me with your ideas inorder to achieve same???
    Regards
    Arup

    Hello,
    If there is no standard solution you can implement the BADI : CRM_ORDERADM_H_BADI
    Here you can see when a new activity is created, and then maybe you can cancel the creation or even replace the new activity by the existing one.
    Regards,
    Benoî

  • Changed sequence settings to match source footage but only half footage now matches even though they're from the same camera and same aspect ratio

    My source footage is 1920 X 1080 from a canon 60D. I changed my sequence settings to Digital SLR 1920 X 1080 to match. On the program window I have it set at "Fit". Only about a quarter of my footage now fits the program screen and looks to be the matching aspect ratio. The rest of the footage when on "fit" fills a tiny portion of the viewing window so it appears they don't match the sequence settings. I don't understand why this is happening because this footage is from the same camera, shot the same day, and have the same aspect ratios.
    Can anyone tell me why this is happening and how I can fix it??

    First of all, the setting that you mention is on Fit is the Zoom Level of the Program Monitor. It controls only how the sequence is shown in that monitor; it has nothing to do with how any sources are handled in the sequence.
    Please provide the following information:
    Exact version of Premiere Pro
    Exact version of operating system
    Graphics card and driver
    Also, please post a screenshot showing the following
    Project panel with the Video Info column visible
    the Timeline visible
    one of the problematic clips selected and the Effect Controls panel visible, with the Motion section twirled open.

Maybe you are looking for

  • Sending variables via the e-mail report

    I don't have an LMS, so I'm sending via e-mail some courses to my coworkers and getting their answers via the e-mail report, one of the problems with this is that I cannot  validate name, last name, user's e-mail, and business unit automatically. Onc

  • Oracle PL/SQL Web service - dynamic parameters... possible?

    Oracle 11.2.0.3 - newbie on web services! Currently we have a pl/sql web service taking in 2 static parameters and returning a varchar2 response. I was asked today if it's possible for a web service to take in a dynamic set of parameters and return a

  • Make download button show all download instead of only a few downloads.

    Just updated from version 25. Is there a way to make it show all download instead of showing only a few downloads when I click it the download button? Also, is there a way to make it automatically opens the show all download when I download a picture

  • How to cancel changes in Panels that does not contains a "Cancel button"

    Hi, I'm new to Mac, and noted that some dialogs does not contains a "Cancel" Button. Is there some "keyboard combination" that can be used to revert any change made? My main concern is about "Preferences Panels" which can suffer a really mess with un

  • Organizing My Music By Tracks

    I'm having trouble getting my CD's that I import on itunes to stay in order from 1 to however many tracks are on a CD. It will have like five or ten in a row and then another cd from the same artist will be in-between the rest of the albulm. PLEASE H