AM Activation/Passivation Problem

Dear All,
Jdeveloper 11.1.1.5.0 + ADF faces + ADF BC
I have a procedure in database that just inserts the data in a table but doesnot commits..
Below is the procedure
Procedure p_insert_emp_test
Is
Begin
Insert Into emp_r (Emp_Id,f_Name,l_Name,Dept_Id) Values(1234,'santosh','vaza',1);
End p_insert_emp_test;Now i have a client method in AM that invokes this procedure and executes the viewobject, as below
    public Connection getCurrentConnection() {
        Statement st = null;
        try {
            st = getDBTransaction().createStatement(0);
            return st.getConnection();
        } catch (SQLException s) {
            s.printStackTrace();
            return null;
        } finally {
            if (st != null)
                try {
                    st.close();
                } catch (Exception s2) {
    public void callInsert(){
        CallableStatement cs = null;
        String stmt = "test_pkg1.p_insert_emp_test()";
        try{
            cs =
            getCurrentConnection().prepareCall("begin " + stmt + "; end;");
            cs.execute();
        }catch(SQLException e){
            throw new JboException(e);
        }finally {
            try {
                cs.close();
            } catch (SQLException ex) {
        getEmpRView1().executeQuery();
     * Container's getter for EmpRView1.
     * @return EmpRView1
    public ViewObjectImpl getEmpRView1() {
        return (ViewObjectImpl)findViewObject("EmpRView1");
    }Now i have a Page that has this method added as button and a af:table that is binded to this VO.
Every Operation is default with no customization.
Now i have 2 views in above scenario :
1. Now i uncheck 'Enable Application Module Pooling' and run my application.
After clicking insertProc button the data is not showed in table
2. Now i check 'Enable Application Module Pooling' and run my application.(Default)
After clicking insertProc button the data is showed in table
I want to test the appln with AM pooling set to false, But this causes Problem. I have a similar scenario as above and want my apln to run with around 100 users consurrently accessing my appln.
Please guys tell me what is mistake in above given approach and give me necesary suggestions.
Regards,
Edited by: Santosh Vaza on Aug 17, 2012 11:16 AM

Hi,
Thanks Frank for your valuable reply,
Even with AM pooling there is no guarantee you get the same AM back (and even the database session could be another one) so that the best way out of this is to commit changes you apply via PL/SQL.
    <AppModuleConfig DeployPlatform="LOCAL" jbo.project="pkgla.LA_Model" name="SyVwPlApplicationDet_AMLocal" ApplicationName="loanapplnmaster.SyVwPlApplicationDet_AM">
         <AM-Pooling jbo.ampool.initpoolsize="35" jbo.recyclethreshold="100" jbo.ampool.maxavailablesize="100"/>
         <Database jbo.locking.mode="optimistic"/>
         <Security AppModuleJndiName="loanapplnmaster.SyVwPlApplicationDet_AM"/>
         <Custom JDBCDataSource="jdbc/ILPADS"/>
      </AppModuleConfig>*<AM-Pooling jbo.ampool.initpoolsize="35" jbo.recyclethreshold="100" jbo.ampool.maxavailablesize="100"/>*
Even after i do above change in configuration in AM, I assume i could get same AM back for that particular user .. ? Assuming under the load of <= 100 ... ?
Pls reply..
Regards,
Edited by: Santosh Vaza on Aug 17, 2012 12:10 PM

Similar Messages

  • Active passive UTM cluster

    Hi all,
    I got myself a nice problem
    I have two ESXi 5.5 host, each server runs a guest Sophos UTM9, these are used as gateway/firewall in active/passive mode. Each server has one physical NIC for this LAN traffic. Connected on a dvSwitch.
    They active/passive is working fine, when one goes down the other takes over and vice versa. But, I noticed that one of my ESXi servers had some problems. It has DNS issues and couldn't ping the Gateway. I did check all settings and all turns out to be fine. Strange thing was that after a reboot I can ping the gateway for a minute or two and after these minutes the gateway becomes unavailable on one ESXi server. On the other ESXi server there are no problems and the gateway is responding. Checking for differences between the two ESXi server gave no result, checking the UTM gateway and again nothing to detect.
    Then it struck me , after the reboot the second (passive) UTM Gateway comes online in 1 or 2 minutes and on that moment problems start. The problems are on the ESXi server with the passive UTM.
    I suspect that the ESXi servers sees the (passive) UTM gateway on the servers internal network card and instead of sending the traffic over the switch to the ESXi server with the active UTM it keeps the traffic local resulting in PING and DNS failures.
    It seems to me that this is a active/passive problem and I have to tell the ESXi host with the passive gateway to forward the traffic to the other server, for incoming and outgoing traffic. I been thinking of LACP configuration, getting the dvSwitch ports of the two physical server seen as one. But, untill now I'm not getting the desired result. Can anyone help me on getting this active/passive gateway cluster working?

    Hi,
    You talk about windows cluster, is this the correct structure that you want.
    If you are looking to a Oracle Database active - passive structure. Lets say Oracle Dataguard than the primary database is operational on server 1 and de standby is in recover mode (passive) on server 2. For more info on Dataguard "http://docs.oracle.com/cd/E11882_01/server.112/e25608/toc.htm"
    Cheers,
    Jos van den Oord
    Blog : http://joordsblog.vandenoord.eu/
    Company : http://www.transfer-solutions.com/
    "Don't believe it, test it!"

  • Passivation problem when jbo.doconnectionpooling=true

    Using jdev 10.1.3.4 with jsf/adf bc. We frequently see the row currency error due to the fact that our ps_txn table 'fills up' very quickly. When the rows in ps_txn are deleted manually or via the bc4j sql script the row currency problem goes away. We've scheduled the bc4j sql script to run once daily, when there are no users on the system. However, this doesn't seem to be enough to keep the number of rows in ps_txn to a minimum.
    As I understand it after reading the documentation and various threads in this forum, that sql script is really designed to clean out rows in ps_txn that are not cleaned up automatically by the bc4j mechanism due to something like an unexpected app server shutdown and things like that.
    According to the documentation - "Under normal circumstances, the ADF state management facility provides automatic cleanup of the passivation snapshot records. When a passivation record is saved to the database on behalf of a session cookie, as described above, this passivation record gets a new, unique snapshot ID. The passivation record with the previous snapshot ID used by that same session cookie is
    deleted as part of the same transaction. In this way, assuming no server failures, there will only ever be a single passivation snapshot record per active end-user session."
    Our app module is configured using jbo.doconnectionpooling=true. For testing purposes, I've created a two page application. The 'first' page simply has a button which navigates to a second page in which a table of data is displayed via a read only view object. I've found that by simply navigating back and forth between these two pages, a new row is written to the ps_txn each time i navigate between the two pages in the same session. I'm positive that i'm the only user on the system during testing, so I know that these rows that are being added to ps_txn cannot be the result of another user using the system at the same time as me. I've found that after just several minutes of bouncing around in the application as many as a hundred rows can be inserted into the ps_txn table. This is with just one user in the application. Obviously, with multiple users in the application at the same time, the ps_txn table is filling up way too fast as it seems that the 'built in' adf mechanism which is supposed to perform automatic cleanup isn't working properly. Therefore, we frequently encounter the row currency exception because of the number of rows in ps_txn.
    I mentioned that our app module is configured with the jbo.doconnectionpooling property set to 'true'. This is because our priority is to keep the number of connections to a minimum. However, for testing purposes, I set that property to false to see the behavior. With that property set to false, bouncing back and forth between the two pages mentioned above doesn't ever result in a row being written to the ps_txn table.
    Does anyone have any ideas as to why the ps_txn table is filling up so fast in the above scenario when jbo.doconnectionpooling=true? The automatic cleanup mechanism of the adf framework does not seem to be functioning properly. Thanks for any help on this.
    Edited by: user8881206 on May 6, 2010 6:41 AM

    I wanted to update this thread with some more findings. I still need help in figuring out why the passivation/activation mechanism is not deleting records from ps_txn in the same user session.
    I followed Didier's advice (Passivation table ps_txn not being cleaned up and tested the activation/passivation in the business component browser. This seemed to work fine, as I could see that a row was written/passivated to ps_txn when I selected Save Transaction State and when I selected Restore Transaction State from the menu that row was deleted from ps_txn.
    I've also overridden the activateState and passivateState methods in the app module to see if they were invoked as I ran my application:
    protected void activateState(Element element) {
    System.out.println("activate state called");
    super.activateState(element);
    protected void passivateState(Document document, Element element) {
    System.out.println("passivate state called");
    super.passivateState(document, element);
    When I run the application, I can see that both these methods are being invoked, but the passivated row(s) are not being deleted from ps_txn for my user session. The passivation continues to write new rows to ps_txn for my session without deleting any of the other rows from the same session. This is resulting in this table filling up way too fast and ultimately causiing the row currency issue. Anyone have any ideas of what's causing multiple rows to be written to ps_txn for the same user session? Thanks for any help.

  • Active - Passive Cluster

    Hey, I have to manage an active passive cluster on SLES10 SP4. Oracle 10.2.0.4
    All oracle binaries are on a DRBD Device on mountpoint /oradata.
    This mountpoint includes the binaries and all datafiles.
    I havent installed these systems. At one stage on node died and got reinstalled by a systemadministrator.
    After a switch from the running node to the standby node, the cluster is not starting.
    Jan 3 14:36:01 a logger: Cluster Ready Services waiting on dependencies. Diagnostics in /tmp/crsctl.6114.
    Jan 3 14:36:14 a logger: Waiting for Oracle CSS service to be available before starting
    Jan 3 14:36:14 a logger: ASM instance +ASM. Wait 2.
    After issung $ORACLE_HOME/bin/localconfig add the cluster is starting, the asm instance is coming up, and also the database instance is starting.
    Shortly after that the db instance dies. Alertlog is showing something like recursive sql error.
    Looks like writing to the datafiles is not working.
    In asmcmd the diskgroups are showing DISMOUNTED (show MOUNTED before)
    so what to do ?
    a) Why is it necessary to issue "localconfig add" to make the cluster starting ?
    b) What could be a reason for not being able to write to the database ?
    c) How would you guys install an active/passive cluster ?
    c1) Install OS on both nodes
    c2) Install oracle binaries
    c2.1) on both nodes in the local files system and do the mapping to the drbd afterwards?
    c2.2) only on one node and just switch the mountpoint ?
    Chris

    Hi,
    first of all please clarify, if you have Oracle clusterware installed, or just the local configuration for local ASM.
    There is a big difference between the 2, and also using DRBD has nothing to do with Oracle clusterware (and is not supported by Oracle).
    a.) Localconfig may be necessary for a local ASM installation in 10.2. Main reason is, that the CSS service configuraton includes the hostname (which changed if you switched nodes). Hence may not be able to start ASM. With localconfig you are fixing this issue.
    Very important: It is not a good idea to run this is a cluster configuration, since it will break things (a lot of things).
    b.) If the ASM diskgroup got dismouned, then the database cannot write. Hence your problem. Why the diskgroup dismounted, you should find in the ASM alert.log
    c.) I would go for RAC One Node. Which has this all preconfigured. So it makes life easier. Search for "RAC One Node" on OTN for more information. At least I would take a manual cluster, and do mirroring by ASM, and not DRBD....
    c1.) Yes install Oracle cluster (or Grid infrastucture in 11.2) on both nodes. Like a RAC.
    c2) Install database software on both nodes locally.
    c2.1) No. No DRDB.
    c2.2) Both nodes. Same installation.
    Regards
    Sebastian

  • Active-Passive Failover cluster in Windows Server 2008 R2

    Hi,
    As per the client requirements, I build an active-passive Oracle 11g R2 database cluster in Windows Server 2008 R2.
    (Used Microsoft cluster as Client don't have Fail Safe licence)
    As per the configuration, I follow the below mentioned steps:
    a)OS vendor configured Active-Passive Windows Cluster
    b)Installed Oracle 11g R2 on both the nodes with same ORACLE_HOME name
    c)Create Listener and configured it with cluster IP in Node1
    d)Create Database from Node1. Physical files location are all in Storage
    e)Create Oracle Service with the same name in the 2nd node and copy all the files like spfile,tnsnames.ora,listener.ora,password file to Node2
    f)Configure Listener with the same Oracle SID.
    g)Test database failover from Node2 with Listener registration
    h)Open the Windows Failover Manager to configure the Oracle Database and Listener Service in the Cluster Group
    Now I am facing problem by moving Cluster Group movement. Whenever trying to moving the group, Listerner service is not getting up by Cluster Manager as quorum is not included in the group and that quorum disk is not moving in the failover node with the Oracle Cluster Group. As per my understanding Quorum having information of Cluster IP which has been configured with Listener.
    But when I am shutdown one node, then in the other node all the resources successfully moving and cluster able to online all the resources. I guess at that time Quorum is also moving and thus cluster can able to make Listener online.
    Please suggest how to resolve this issue. Means how can I make Listener up instead having any dependencies with Quorum in the fail over node?
    Thanks a lot for your help.

    hello
    I was going through your post and i am also doing the same thing here at our organisation for Oracle 10g R2
    Can you pls send me any docs u r having for configuration of Oracle in windows clusters .
    And, can you pls elaborate on this point
    e)Create Oracle Service with the same name in the 2nd node and copy all the files like spfile,tnsnames.ora,listener.ora,password file to Node2.
    Pls send me the details at [email protected] or you can contact me at 08054641476.
    Thanks in advance.

  • Hyperion Essbase 11.1.2 active/passive Clustering

    Hello,
    Has anyone successfully clustered Essbase 11.1.2 in an active/passive configuration? If yes, I have a few questions as I do not believe that the documentation is very clear on a few critical areas. I have already installed and configured Essbase on the first server and set the cluster name to EssbaseCluster-1 (I also shared out the essbaseserver1 directory so the second essbase server can access it). I also went and installed and configured Essbase on the second server (during the configuration, I configured to be a member of EssbaseCluster-1. I am not sure if I am supposed to put the share location in the full arborpath location (I did not)). When configuring the opmn.xml file the documentation states the following (from http://download.oracle.com/docs/cd/E17236_01/epm.1112/epm_install.pdf pg 172):
    Setting Up Active-Passive Essbase Clusters
    If you set up an active-passive Essbase cluster using EPM System Configurator, you must perform
    additional steps to set up Essbase failover on both nodes of the cluster.
    ä To complete the setup of the Essbase active-passive cluster:
    1 Update MIDDLEWARE_HOME/user_projects/epmsystem1/config/OPMN/opmn/
    opmn.xml to specify the OPMN service failover network topology. In the <notificationserver
    interface> section, add the <topology> section. For example:
    <notification-server interface="any">
    <ipaddr remote="*hostName*" />
    <port local="*portNumber*" remote="*portNumber*" />
    <ssl enabled="true" wallet-file="\Oracle\Middleware\user_projects
    \epmsystem1\config\OPMN\opmn\wallet"/>
    <topology>
    <nodes list="*nodeName1:nodePort1,nodeName2:nodePort2*"/>
    </topology>
    </notification-server>
    2 In the same section of the file, update hostName to match the nodeName for this machine.
    Oracle recommends using a fully qualified name. "
    So, with these instructions, I put the following into my own opmn.xml file on both of the essbase servers. (epmapp1 and epmdata1 are my two essbase servers, they are running on the default port 1423)
    <notification-server interface="any">
    <ipaddr remote="epmapp1"/>
    <port local="*1423*" remote="*1423*"/>
    <ssl enabled="false" wallet-file="E:\Oracle\Middleware\user_projects\epmsystem1\config\OPMN\opmn\wallet"/>
         <topology>
         <nodes list="*epmapp1:1423,epmdata1:1423*"/>
         </topology>
    </notification-server>
    When I go to start the essbase cluster through the opmnctl startproc command, I recieve the following. Anyone know what I am missing?
    C:\Users\Administrator>echo %ORACLE_INSTANCE%
    E:\Oracle\Middleware\user_projects\epmsystem1
    C:\Users\Administrator>opmnctl startproc ias-component=EssbaseCluster-1
    opmnctl startproc: starting opmn managed processes...
    ===============================================================================
    opmn id=epmapp1:1423
    no processes or applications matched this request
    C:\Users\Administrator>
    Edited by: 789316 on Nov 4, 2010 12:00 PM

    Have you been able to resolve this issue?.. I am also facing the same problem..
    Thanks
    Bala

  • Active/passive policies

    My Organization want me build two node cluster Active/passive windows server 2012,sql server2012 multiple instances 
    node1=active,node2=passive
    i have created cluster ,installed sql server....but the problem is for automatic failover.
    1)do i need to select both the nodes on advances policies under resources and also preferred owners?
    2) post and pre migration steps for migrating standalone instances databases (2008) to sql cluster(2012)
    please help me

    SQL Server needs to be installed on both the nodes as cluster instance, meaning on first node you should install new SQL Server cluster instance and on second node you need to run Add node and add the second node to this SQL cluster instance, hope this was
    already done.
    In cluster manager, from SQL Server cluster resource properties, you should have both the nodes  ticked for "possible owners", but having "preferred owners" selected is optional, which basically tells, which is the preferred node
    where SQL instance should run when both nodes are online.
    There are various ways to move databases from one instance(SQL 2008) to higher version(SQl 2012) like Backup databases on SQL 2008, copy backup file to SQL 2012 server and  then restore them on SQL 2012 Or Detach databases on SQL 2008, copy the detached
    .mdf, .ndf  and .ldf files to SQL 2012 and attach them there Or to reduce the amount of downtime during the migration process, you can setup logshipping between SQL 2008 and SQL 2012 and during cutover, break logshipping and restore latest log backups
    with recovery.
    Upgrade a Database Using Detach and Attach - http://msdn.microsoft.com/en-us/library/ms189625.aspx
    Copy Databases with Backup and Restore - http://msdn.microsoft.com/en-IN/library/ms190436(v=sql.110).aspx
    Minimizing DB Migration Downtime Using Log Shipping - http://blogs.msdn.com/b/sqlgardner/archive/2011/09/16/minimizing-db-migration-downtime-using-log-shipping.aspx
    Keerthi Deep | Blog SQLServerF1 |
    Facebook

  • [b]Managing Active/Passive Cluster.[/b]

    Hi,
    We are having active passive cluster
    environment and we are running webMethods on
    it.
    The problem we are having is whenever we do
    any changes we need to do a failover and then
    do the same task on the passive one as well.
    Can anybody help how to make this thing
    automatic so that we deploy any package/fixes
    on webmethods and should get replicated on
    the passive one.
    Thanks,
    Amit.

    If you are manipulating data-files, that do not affect the Application (in this case webmethods) then simply use the cluster console, which allows you to perform updates on multiple hosts at the same time.
    Alternatively if you are making changes to the application itself then, does the application management software ( I am not that familier with webmethods) not allow you to distribute changes across an application domain, ie. using the application tools and not the underlying cluster framework.

  • ASA 5550 V05 Active/passive one stop work

    Hello,
    I have a client, that got 2x ASA 5550 V05 and they were configured to act as active/passive but some months ago they had problems with them, so they remove them from the network.
    Recently, I went there, and saw that one of the firewall (the one that was as passive) is not working, when I connect via console and reboot it I don't even see nothing, the boot starts, but suddenly, nothing shows up.
    The things is that the client wants to get back to use the ASAs, so is there any way to fix that?
    As an alternative we were thinking in acquire another ASA, to configure the two as active/passive again, the ASA that its working is:
    ASA 5550 V05 ; Cisco Adaptive Security Appliance Software Version 7.2(4) ; Device Manager Version 5.2(4) ; 8 Ports GB ( 4+4) ; asa724-k8.bin
    My question is, I need an exactly the same model ASA?
    I was thinking in put one ASA5555-2SSD120-K9. That would work?
    Or should I try anything else? I don't have many skills with ASA specially troubleshooting it.
    Thanks in advance

    Hi Diogo,
    The issue related to failed firewall could be related to a hardware issue, you may get some outputs from console session when the ASA is booting up. Try to boot up the firewall again, if this doesn´t work then you should open a TAC case so they can help you replacing the firewall(the ASA needs to be under an active contract).
    Regarding ASA model and failover, both firewalls must be the same model(hardware).
    See the below requirements for failover to work:
    http://www.cisco.com/c/en/us/support/docs/security/pix-500-series-security-appliances/77809-pixfailover.html#req
    Regards,
    Harvey.
    Please rate if this is correct answer.

  • Install of Data Services as active/passive behind F5 load balancers

    I currently have two RedHat 5.5 x86_64 hosts, SAP_DS1 and SAP_DS2, and 1 database, Oracle RAC 11g and 1 F5 LTM load balancer sitting in front of the two hosts. The F5 load balancer VIP is set up as active/passive (fail-over) for the two hosts.
    Will I need 2 local databases 1 central database or can I accomplish this with one local database?
    Please advise on the recommended method for installing BOBJ DATA SERVICES XI 3.2 on two Linux hosts in an active/passive design.
    Thanks

    You might have better luck asking this question in the (somewhat misnamed) [Data Integration and Data Quality Management|Data Services and Data Quality; forum:
    This forum is dedicated to topics related to SAP BusinessObjects Data Services (Data Integrator, Data Quality Management, Text Data Processing), SAP BusinessObjects Information Steward (Metadata Management, Data Insight), SAP BusinessObjects Rapid Marts and SAP BusinessObjects Data Federator.
    (emphasis added)
    Regards,
    Sean
    P.S. to moderators: can you create a sticky post to this effect?

  • How to Configure Active-Passive oracle cluster in Windows 2008 R2 64bit Server.

    How to Configure Active-Passive oracle cluster in Windows 2008 R2 64bit Server With Oracle 11g R2.
    How many database will play in this role.
    Best,

    hello
    I was going through your post and i am also doing the same thing here at our organisation for Oracle 10g R2
    Can you pls send me any docs u r having for configuration of Oracle in windows clusters .
    And, can you pls elaborate on this point
    e)Create Oracle Service with the same name in the 2nd node and copy all the files like spfile,tnsnames.ora,listener.ora,password file to Node2.
    Pls send me the details at [email protected] or you can contact me at 08054641476.
    Thanks in advance.

  • Can you Setup a Active Passive DFS namespace in the same site

    Hi,
    I would like to use DFS for profile replication. I know MS doesn't recommend it, but was wondering if you could setup DFS namespace in an Active/ passive contests in the same AD site. I think or what I can understand of DFS is that if the Fileserver is in
    the same site it would select it randomly and you cant specify which server is the primary.
    Basically what I want is to have users only access File server 1, but if this file server 1 goes down to be redirected to file server 2.
    Thanks,
    Shaun

    You could have a read-only Replica but that really doesn't help you in terms of the automatic redirection thing.  You could also set up a 2-node replication group and disable the referral for the folder(s) on one node like below:
    However the "failover" would be manually Enabling, which I doubt fits the bill. 
    Otherwise, I'm not aware of any configuration of DFSR that allows you to do what you're talking about (maybe someone else will correct me.)  HOWEVER, I suspect a design that fits your use case may be to create a DFS namespace that runs
    on a file server cluster.  That way if Node1 goes down, the cluster fails over,  and the data continues to be available on Node2 when accessed via DFS.
    If interested, there are a couple ways to approach DFS in combination with a cluster. 
    Configuration1:  The cluster is configured to host the namespace as well as the folder targets (where the actual data is).  CAVEAT - The cluster can only be configured as a standalone cluster.
    Configuration2:  Create a domain DFS namespace that resides on other servers. 
    \\domain\DFSRoot for example.  Then point each of the leaves/folder targets to clustered shares. So you'd create a subfolder called "Profiles" that points to the clustered share that houses the profiles.
    Just an idea.  Hope this helps.

  • Error with concurrent users- Activation Passivation Bind variable ?

    I have a programmatic view object based on procedure call that returns a ref cursor.
    Application Module has a function that exposes get Method for this View object using client interface.
    Everything works good until many users call the same Method ,for many concurrent users i got the below error intermittently :
    JBO-27122: SQL error during statement preparation.
    Attempt to set a parameter name that does not occur in the SQL: bussId
    For 1 or 2 users this works perfectly fine.
    bussId is a bind variable defined at View object of type Array.
    I understand this should be because of activation/passivation as many users calling same function comes to picture.
    To solve this I overloaded activateState/passivateState in View implementation for the bind var.
    But i don't see those methods getting invoked ever.
    I also enabled connection pool/AM pool and kept the default pool values high enough for concurrent users.
    Nothing works .
    Appreciate any help in this regard.
    -Sam

    Hi,
    See
    http://antonis-antoniou.blogspot.com/2012/02/ensuring-that-your-adf-application-is.html

  • Non-domain user authentication against SSAS on Active/Passive Cluster

    Hello,
    We have an Active/Passive SQL Server setup (DB1 & DB2 Servers) connected to a cluster for SQL & SSAS.  I have a web server not on the same domain that I am trying to authenticate with SSAS.  This works OK if I set the website to impersonate
    myUser and I add local account myUser as an Admin on SSAS for the active server (DB1).  But when this fails over to DB2 then it fails to authenticate.  SSAS won't allow us to add myUser as an admin for local accounts on both DB1 & DB2 as it errors
    adding the second one.  Could anyone advise how such a scenario should be approached?
    We have tried creating a domain user too which DB1 & DB2 can of course both share but I don't think the web server can impersonate this with being not part of the domain.
    Thanks.

    Hi Jcorker,
    According to your description, you need to access the SQL Serve Analysis Services database which is configured as cluster for SQL & SSAS from another domain, right?
    In SSAS we can use the solution below achieve the requirement.
    1.Create new domain account and impersonate the web site with that.
    2.Create local user account on the analysis service with same exact username/password as like domain account created in the previous step.
    However, you cannot create a local account with the same name on both servers. I have tested it on my local environemnt, we can create the same local account with the same name on both servers. In your scenario, if DB1 and DB2 on different server, you can
    create a local account with the same name on both servers. Please post the detail errors, so that we can make further analysis.
    Besides, SSAS only allows users of the same domain or trusted domains and it does not allow users from any domain except from these two. You can configure the trust relationship between the domains.
    http://technet.microsoft.com/en-us/library/cc961481.aspx
    Regards,
    Charlie Liao
    If you have any feedback on our support, please click
    here.
    Charlie Liao
    TechNet Community Support

  • How to : Active/Passive and Active/Active Enterprise manager R3 (10.2.0.3)

    Soon I will implement the above named version of EMR3 on a AIX 5.3.3 platform. I have a couple of questions about active/passive and active/active implementations. These are the questions I have:
    Basic install:
    Implementing 10.2.0.2 and upgrading to 10.2.0.3 works fine on host 1234 (already done that).
    Does anyone have experience with an implementation on host 1234', in other words, a virtual host (different IP-numbers on the same ethernet adapter)?
    Active/passive
    Lets assume that the implementation on server 1234' works fine, how can I realise a cold failover situation? On AIX you can move/transport the volume group to the failover server, activate the volume group, mount your filesystems and the application is running again. This is the theory but ....
    Active/Active
    If this 'basic' install is done, can someone briefly tell me how to migrate the OMS repository to a RAC implementation? Is this possible or do I need to setup the repository for the OMS at the start of the implementation. Has anyone experience with using virtual hostnames, RAC and EMR3.
    Can anyone tell me where I can find some good documentation instead of reading all these thousands of pages of Oracle's guides.
    Help would be appreciated.
    Message was edited by:
    Jeroen Udo

    Soon I will implement the above named version of EMR3 on a AIX 5.3.3 platform. I have a couple of questions about active/passive and active/active implementations. These are the questions I have:
    Basic install:
    Implementing 10.2.0.2 and upgrading to 10.2.0.3 works fine on host 1234 (already done that).
    Does anyone have experience with an implementation on host 1234', in other words, a virtual host (different IP-numbers on the same ethernet adapter)?
    Active/passive
    Lets assume that the implementation on server 1234' works fine, how can I realise a cold failover situation? On AIX you can move/transport the volume group to the failover server, activate the volume group, mount your filesystems and the application is running again. This is the theory but ....
    Active/Active
    If this 'basic' install is done, can someone briefly tell me how to migrate the OMS repository to a RAC implementation? Is this possible or do I need to setup the repository for the OMS at the start of the implementation. Has anyone experience with using virtual hostnames, RAC and EMR3.
    Can anyone tell me where I can find some good documentation instead of reading all these thousands of pages of Oracle's guides.
    Help would be appreciated.
    Message was edited by:
    Jeroen Udo

Maybe you are looking for

  • Everytime I start to install Windows into my bootcamp partition the screen goes completely black after installing.

    Hi All, I'm using an iMac late 2009 ( Processor 3.06 GHz Intel Core 2 Duo, $gb 1067 MHz DDR3, ATI Radeon HD 4670 256 MB) with OS X 10.8. I've Boot Camped my Mac Book pro so I'm familiar with the steps to do it. I've made a partition and downloaded th

  • Acrobat XI Pro, Surface Pro 128,  Scan to PDF not working

    I just installed the trial version of Acrobat XI onto my Surface Pro and everything works except the Scan to PDF, when I hit any of the presets I get an error message that says: Box Title: Twain Data Source  Text In box: " Program was unable to load

  • Photoshop touch will not open, iphone 5

    It's stuck at the launch screen. recently deleted all my photos to fill up space. photoshop touch still will not open. Tried restarting the phone to no avail. If I delete and reinstall I lose all my files. Please help.

  • Calendar invitation emails not sent

    When I add an event in my calendar (using the regular calendar app on my iPhone 5) and add invitees, the email to invite the people is not being sent. So all my events show "no reply" for all of the invitees.  It used to send an email and I would rec

  • Things to consider in preparing a WM questionnaire

    Hi Experts, We have got a project in WM. Now as a begining we are planning to prepare a questionnaire. Since I have just started to learn WM dont have much idea in the WM questionnaire part. Hence if anyone can provide all the valuable inputs & usefu