How to switch SOA-SUITE to another Database?

I have installed 2 SOA environments:
for development: soa1 + db1
and for tests: soa2 + db2
but during 2nd environment installation, i make a mistake and now soa2 like soa1 store its data in db1.
How i can switch now, which database soa2 should to use without reinstalling it?

Hi Grieff
1. Anytime you create a SOA/BPM Domain using the config wizard (or any other mode), in one of the initial screens, you give the details for the backend RCU Database that has pre-run all RCU Schemas like SOA_INFRA, MDS, ORASDPM etc etc. For each of these schemas, there is a JDBC Datasource associated that basically stores the connection pool details like db host, port, sid, username, password.
2. NOW all these datasources are stored as .xml file under your DomainRootFolder/config/jdbc. Look for *.xml files and open each file and you will get an idea. Take a backup of full jdbc folder. STOP all the servers, admin, soa and bam. Edit each .xlm fle and carefully, change the db host, port, sid, and most important the each schema name. Like for DB1, if you gave DEV1_SOAINFRA and for DB2 if you had DEV2_SOAINFRA, just use the appropriate schema name. The point is the DB which you point your SOA Domain should have those xxx_SOAINFRA schemas etc. So just edit all these .xml files. You can give plain text password. I think they get encrypted.
3. If you configured any other datasources other than RCU like RDBMS Security policy etc (mostly people will not do this), change those settings also.
Start all the 3 servers. Go to weblogic console and check each Datasource and make sure it points to right db you want.
NOTE: You can change datasources from Weblogic Console also. For each datasource, go to connection pool, do lock and edit and change values and Save. Do this for all datasources. Then RESTART the servers. this is little bit tedious and confusing also. So I personally prefer the first approach.
Thanks
Ravi Jegga

Similar Messages

  • How can i get data from another database SQL Server use database link from

    I have a database link from Oracle connect to SQL Server database with user cdit connect default database NorthWind.How can I get data from another database(this database in this SQL Server use this database link)?

    hi,
    u should see following documentation:
    Oracle9i Heterogeneous Connectivity Administrator's Guide
    Release 1 (9.0.1)
    Part Number A88789_01
    in it u just go to chapter no. 4 (using the gateway),,u'll find ur answer there.
    regards
    umar

  • How to let SOA Suite automatically start Oracle Database services if necess

    It occurs from time to time that I forget to start Oracle database services
    before I start Soa Suite. Can I somehow let SOa Suite startup script check in advance
    if Oracle database services need to be started (and start them automatically if necessary)?
    Peter

    Hi,
    This is a familiar issue. I've come up with the following solutions.
    1) On my linux machine, I start the database (EE) and soa suite at boot time using /etc/oratab.
    2) On my windows machine, I start the database (XE) at boot time, as a service that automatically starts. The soa suite is started manually. I could start the suite automatically as a service also, but because it takes up so much memory and I do not always want to run the suite, I prefer to start manually. In any way, the database is started automatically before the soa suite.
    Hope this will help you.
    Kind regards,
    H

  • How to switch off the constraints of database tables

    hi
    how can i switch off the constraints of database tables?

    But do remember that if once you disable to constraints, enter some data and then try to enable again. If there is some conflicting data, Oracle is going to cry and will not allow you to enable the constraints.
    Sidhu

  • How to configure SOA Suite 11g Worklist with LDAP Identity Store

    Hi
    Im trying to configure the worklistapp to use an ldap identity store (SOA Suite 11g)
    The ldap is a open source ldap (Open DS in this case), is NOT : OID, OVD, Active Directory, WLS OVD, IPlanet.
    for doing so, i did the next configurations:
    workflow-identity-config.xml
    <configuration realmName="realm1">
    <provider providerType="JPS" name="JpsProvider" service="Identity">
    <property name="jpsContextName" value="worklist" />
    </provider>
    </configuration>
    jps-config.xml
    <?xml version="1.0" encoding="UTF-8" standalone='yes'?>
    <jpsConfig xmlns="http://xmlns.oracle.com/oracleas/schema/11/jps-config-11_1.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.oracle.com/oracleas/schema/11/jps-config-11_1.xsd" schema-major-version="11" schema-minor-version="1">
         <!-- This property is for jaas mode. Possible values are "off", "doas" and "doasprivileged" -->
         <property name="oracle.security.jps.jaas.mode" value="off"/>
         <property name="custom.provider" value="true"/>
    <serviceProviders>
    <serviceProvider type="IDENTITY_STORE" name="idstore.ldap.provider" class="oracle.security.jps.internal.idstore.ldap.LdapIdentityStoreProvider">
    <description>LDAP-based IdentityStore Provider</description>
    </serviceProvider>
    </serviceProviders>
    <serviceInstances>
              <serviceInstance name="idstore.ldap.opends" provider="idstore.ldap.provider">
                   <property name="java.naming.factory.initial" value="com.sun.jndi.ldap.LdapCtxFactory"/>
                   <property name="idstore.type" value="CUSTOM"/>
                   <property name="ldap.url" value="ldap://host:port"/>
                   <property name="subscriber.name" value="dc=company,dc=com"/>
                   <property name="search.type" value="SIMPLE"/>
                   <property name="security.principal" value="cn=adminuser,dc=company,dc=com"/>
                   <property name="security.credential" value="!adminuser_password"/>
                   <property name="user.login.attr" value="cn"/>
                   <property name="username.attr" value="cn"/>               
                   <property name="groupname.attr" value="cn"/>
                   <extendedProperty>
                        <name>group.mandatory.attrs</name>
                        <values>
                             <value>cn</value>
                             <value>objectClass</value>
                        </values>
                   </extendedProperty>
                   <extendedProperty>
                        <name>group.object.classes</name>
                        <values>
                             <value>top</value>
                             <value>groupOfUniqueNames</value>
                        </values>
                   </extendedProperty>
                   <extendedProperty>
                        <name>group.filter.object.classes</name>
                        <values>
                             <value>groupOfUniqueNames</value>
                        </values>
                   </extendedProperty>
                   <extendedProperty>
                        <name>group.member.attrs</name>
                        <values>
                             <value>uniqueMember</value>
                        </values>
                   </extendedProperty>
                   <extendedProperty>
                        <name>group.search.bases</name>
                        <values>
                             <value>o=groups,dc=company,dc=com</value>
                        </values>
                   </extendedProperty>
                   <extendedProperty>
                        <name>user.mandatory.attrs</name>
                        <values>
                             <value>cn</value>
                             <value>objectClass</value>
                             <value>sn</value>
                        </values>
                   </extendedProperty>
                   <extendedProperty>
                        <name>user.object.classes</name>
                        <values>
                             <value>organizationalPerson</value>
                             <value>person</value>
                             <value>inetOrgPerson</value>
                             <value>top</value>
                        </values>
                   </extendedProperty>
                   <extendedProperty>
                        <name>user.filter.object.classes</name>
                        <values>
                             <value>inetOrgPerson</value>
                        </values>
                   </extendedProperty>
                   <extendedProperty>
                        <name>user.search.bases</name>
                        <values>
                             <value>o=users,dc=company,dc=com</value>
                        </values>
                   </extendedProperty>
              </serviceInstance>
         </serviceInstances>
    <jpsContexts default="default">
    <jpsContext name="worklist">
    <serviceInstanceRef ref="credstore"/>
    <serviceInstanceRef ref="keystore"/>
    <serviceInstanceRef ref="policystore.xml"/>
    <serviceInstanceRef ref="audit"/>
    <serviceInstanceRef ref="idstore.ldap.opends"/>
    </jpsContext>
    </jpsContexts>
    </jpsConfig>
    but i get the error:
    Jul 2, 2009 12:52:40 PM oracle.security.jps.internal.idstore.util.IdentityStoreUtil getIdentityStoreFactory
    WARNING: The identity store factory name is not configured.
    Jul 2, 2009 12:52:40 PM oracle.bpel.services.common.ServicesLogger __logException
    SEVERE: <.> Error in authenticating user.
    Error in authenticating and creating a workflow context for user realm1/user1.
    Verify that the user credentials and identity service configurations are correct.
    ORABPEL-30501
    Error in authenticating user.
    Error in authenticating and creating a workflow context for user sigfe.com/user1.
    Verify that the user credentials and identity service configurations are correct.
    at oracle.bpel.services.workflow.verification.impl.VerificationService.authenticateUser(VerificationService.java:603)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    So, anyone knows how i can specify the identity store factory?
    or the correct parameters for a ldap identity store repository?
    I used the 11G documentation for the security file :
    http://download.oracle.com/docs/cd/E12839_01/core.1111/e10043/jpsprops.htm
    thanks

    I am having exactly the same issue. Once I configure jps-config.xml file to use my custom authenticator and login into the worklist app, the following gets thrown. I was wondering if you need map some roles to the existing users in the Custom Authenticator.
    Exception
    exception.70692.type: error
    exception.70692.severity: 2
    exception.70692.name: Error while granting BPMOrganizationAdmin role to SOAOperator.
    exception.70692.description: Error occured while granting the application role BPMOrganizationAdmin to application role SOAOperator.
    exception.70692.fix: In the policy store, please add SOAOperator role as a member of BPMOrganizationAdmin role, if it is not already present.

  • How to use SOA Suite in conjunction with SOA Analysis and Design Tools

    Hi everybody,
    I am a novice in this field and I need some help regarding integrating analysis and design tools with SOA Suite.
    We used to analyze and design with Oracle Designer and use its powerful form generator to develop a system. It almost covered all the software lifecycle and kept the traceability between anlaysis,design and implementation.
    I have studied about the SOA concepts and read some papaer about SOA Suite. I have also installed the SOA demo based on SOA Suite and I found it absolutely amazing, but my problem is that It seems oracle does not have any tools for SOA Analysis and Design. am I right? if so, How can we analyze and design a system based on SOA concepts and implement it using soa suite in such a way that keeps traceability? What tools is used for this purpose?
    It seems that IBM have some tools like Rational Software Architect and Rational Suite which enable people to design and analyze based on SOA concepts and then generates some pieces of code (like oracle designer in old days) but is it possible to design in these tools and then generating codes for SOA Suite ? (for example generating a bpel file from a design model)
    As I told before I am a novice in this field and I would be so grateful if other users can share their expriences regarding this matter.
    Any help would be highly appreciated.
    Thanks in advance,
    Navid

    Learn About All Things SOA:: SOA India 2007:: IISc, Bangalore (Nov 21-23)
    Aligning IT systems to business needs and improving service levels within the constraints of tight budgets has for long been the topmost challenge for CIOs and IT decision makers. Service-oriented Architecture (SOA) provides a proven strategy to clearly address both of these objectives. Creating more agile information systems and making better use of existing infrastructure are two leading factors that are boosting SOA adoption across large, medium, and small Indian industries from the BFSI, Retail, Telecom, Manufacturing, Pharma, Energy, Government and Services verticals in India. If you are an IT decision maker belonging to any of these verticals, SOA India 2007 (IISc, Bangalore, Nov 21-23 2007) presents a unique opportunity to gather cutting-edge business and technical insights on SOA and other related areas such as BPM, BPEL, Enterprise 2.0, SaaS, MDM, Open Source, and more.
    At SOA India 2007, acclaimed SOA analysts, visionaries, and industry speakers from across the world will show you how to keep pace with change and elevate your IT infrastructure to meet competition and scale effectively. The organisers are giving away 100 FREE tickets worth INR 5000 each to the first 100 qualified delegates belonging to the CxO/IT Decision Maker/Senior IT Management profile, so hurry to grab this opportunity to learn about all things SOA. You can send your complete details, including your designation, e-mail ID, and postal address directly to Anirban Karmakar at [email protected] to enrol in this promotion that is open until 12 October 2007.
    SOA India 2007 will also feature two half-day workshops on SOA Governance (by Keith Harrison-Broninski) and SOA Architecture Deep Dive (by Jason Bloomberg). If you are an IT manager, software architect, project leader, network & infrastructure specialist, or a software developer, looking for the latest information, trends, best practices, products and solutions available for building and deploying successful SOA implementations, SOA India 2007’s technical track offers you immense opportunities.
    Speakers at SOA India include:
    •     Jason Bloomberg, Senior Analyst & Managing Partner, ZapThink LLC
    •     Keith Harrison-Broninski, Independent consultant, writer, researcher, HumanEdJ
    •     John Crupi, CTO, JackBe Corporation
    •     Sandy Kemsley, Independent BPM Analyst, column2.com
    •     Prasanna Krishna, SOA Lab Director, THBS
    •     Miko Matsumara, VP & Deputy CTO, SoftwareAG
    •     Atul Patel, Head MDM Business, SAP Asia Pacifc & Japan
    •     Anil Sharma, Staff Engineer, BEA Systems
    •     Coach Wei, Chairman & CTO, Nexaweb
    •     Chaitanya Sharma, Director EDM, Fair Isaac Corporation
    A partial list of the sessions at SOA India 2007 include:
    •     EAI to SOA: Radical Change or Logical Evolution?
    •     BPEL: Strengths, Limitations & Future!
    •     MDM: Jumpstart Your SOA Journey
    •     Governance, Quality, and Management: The Three Pillars of SOA Implementations
    •     Building the Business Case for SOA
    •     Avoiding SOA Pitfalls
    •     SOA Governance and Human Interaction Management
    •     Business Intelligence, BPM, and SOA Handshake
    •     Enterprise 2.0: Social Impact of Web 2.0 Inside Organizations
    •     Web 2.0 and SOA – Friends or Foe?
    •     Achieving Decision Yield across the SOA-based Enterprise
    •     Governance from day one
    •     Demystifying Enterprise Mashups
    •     Perfecting the Approach to Enterprise SOA
    •     How to Build Cost Effective SOA. “Made in India” Really Works!
    For more information, log on to http://www.soaindia2007.com/.

  • How to import a table from another database using DB toolset.

    Hello All
    I would like to import a table from one database to another using DB toolbox.
    I do not want to import all data to LV and then save them to another database. Instead I would prefer to use SQL syntax.
    Does anobody know how to write SQL command to import whole table from one database to another?
    I have found in some SQL manual that INSERT INTO should work, but JET4 returns an error that table (e.g. c:\mydatabase\table1) can not be found.
    Thanks in advance
    Pawel

    if i don't have TEST table on server B whether COPY command will create this table on server B with the same structure ? If you specify CREATE as a clause the table will be created:
    SQL> help copy
    COPY
    COPY copies data from a query to a table in a local or remote
    database. COPY supports CHAR, DATE, LONG, NUMBER and VARCHAR2.
    COPY {FROM database | TO database | FROM database TO database}
                APPENDCREATE|INSERT|REPLACE} destination_table
                [(column, column, column, ...)] USING query
    where database has the following syntax:
         username[password]@connect_identifier

  • Oracle SOA Suite 11g - Supported Databases??

    Hi All
    I am trying my hands with Oracle SOA suite 11g on my laptop having 2GB of RAM...
    List of soft wares installed for this are Oracle 11g database, JDeveloper, SOA Suite. On real time when developing some application system becomes too slow due to memory issue.
    The Oracle DB eats up max memory...
    So looking for a alternative light weight database alternative for Oracle SOA 11g suite like SQL server 2005.
    The Repository Configuration Utility version RCU11.1.1.2 supports SQL Server 2005 database and create the schemas like Dev_SOAINFRA, DEVV_ORASDPM etc correctly...
    But while configuring the new admin and SOA server via the wizards (start menu -> Oracle SOA 11g - Home1 -> Configure Application Server) the only database vendor drop down option available is Oracle , list does not contain other players IBM DB2, MS SQL Server , MySQL.....
    So can somebody tell me for Oracle SOA Suite 11g, what is the light weight Database option is available so that I may go for SOA applications development on machine like my configuration....

    Yes, All schema created successfully using the RCU tool, except the below warning.
    +"The Database you are connecting is not a supported version. Enter database with version equal to of higher that 10.2.0.4.0 in 10g or version equal to of higher that 11.1.0.7.0 in 11g.Refer to the certification matrix for the supported DB versions."+
    But when starts the SOA server , the log bears the below error repeated numerous time.
    +[2010-01-14T21:23:49.140+05:30] [soa_server1] [WARNING] [SOA-31013] [oracle.integration.platform.blocks.event.saq] [tid: oracle.integration.platform.blocks.executor.WorkManagerExecutor$1@1b98153] [userId: <anonymous>] [ecid: 0000IOhTX_vFw000jzwkno1BJnXF00000A,0] [APP: soa-infra] Error handling message (rolling back).[[+
    java.sql.SQLException: ORA-06553: PLS-306: wrong number or types of arguments in call to 'EDN_DEQUEUE_OAOO_DELIVERY'
    +     at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:70)+
    +     at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:133)+
    +     at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:206)+
    +     at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:455)+
    +     at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:413)+
    +     at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:1034)+
    +     at oracle.jdbc.driver.T4CCallableStatement.doOall8(T4CCallableStatement.java:191)+
    +     at oracle.jdbc.driver.T4CCallableStatement.executeForRows(T4CCallableStatement.java:950)+
    +     at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1223)+
    +     at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3386)+
    +     at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3487)+
    +     at oracle.jdbc.driver.OracleCallableStatement.execute(OracleCallableStatement.java:3858)+
    +     at oracle.jdbc.driver.OraclePreparedStatementWrapper.execute(OraclePreparedStatementWrapper.java:1374)+
    +     at weblogic.jdbc.wrapper.PreparedStatement.execute(PreparedStatement.java:98)+
    +     at oracle.integration.platform.blocks.event.saq.SAQBusinessEventBus.readOAOODelivery(SAQBusinessEventBus.java:1222)+
    +     at oracle.integration.platform.blocks.event.saq.SAQBusinessEventBus.handleSingleOAOODelivery(SAQBusinessEventBus.java:690)+
    +     at oracle.integration.platform.blocks.event.saq.SAQBusinessEventBus.handleQueueEvents(SAQBusinessEventBus.java:614)+
    +     at oracle.integration.platform.blocks.event.saq.SAQBusinessEventBus.access$000(SAQBusinessEventBus.java:76)+
    +     at oracle.integration.platform.blocks.event.saq.SAQBusinessEventBus$1.run(SAQBusinessEventBus.java:279)+
    +     at oracle.integration.platform.blocks.executor.WorkManagerExecutor$1.run(WorkManagerExecutor.java:77)+
    +     at weblogic.work.j2ee.J2EEWorkManager$WorkWithListener.run(J2EEWorkManager.java:171)+
    +     at java.lang.Thread.run(Thread.java:619)+

  • How to start soa suite in development mode

    Right now it's in production mode by default, how can I start the soa server in development mode?
    I'm using 11.1.1.2
    Thanks

    You can use the following command:
    ./startWebLogic.sh -Dweblogic.ProductionModeEnabled=false
    Or you can also change the mode from the Weblogic console > click on the domain after logging in and then goto General Tab and uncheck the Production Mode checkbox and restart your weblogic.
    Once your server is started in Dev mode, your deployed applications like SOA should also be in Dev mode.
    Cheers

  • How to call procedure which is another database

    I have two procedure1 and procedure2 on two different database1 and database2. I want to call procedure2 inside the procedure1. Can you please give me the steps(including creating DBLink) how can this be done.
    Thanks

    The best way of doing this is to use a synonym for the remote procedure.
    The documentation explains how to create a database link. The exact syntax you use depends on your security policies and how the connection is going to work.
    Similarly the documentation explains how to create synonyms. You may also find this piece helpful.
    Then it's simply a matter of writing PROC_1 so that it calls PROC_2 using the synonym. Do not under any circumstances use the database link in PROC_1. It makes deploying the code to other other environments (UAT, PRODUCTION) more complicated than is strictly necessary.
    Cheers, APC

  • How to switch Apple account to another country ??

    Hi i'm from Vietnam. I downloaded iOS6 and when i want to update some apps it always says 'Your account is not valid for use in the Kuwaiti store. You have to switch to Vietnamese store before purchasing'. But the point is my apple ID is already in Vietnamese store. I tried switching to Kuwaiti store and switch again to Vietnamese store but it didnt work. I cant update anything. Can u guys help me ?!

    Change iTunes Store Country on an iDevice
    1. Tap Settings;
    2. Tap iTunes & App Stores;
    3. Tap View Apple ID;
    4. Enter your user name and password;
    5. Tap Country/Region;
    6. Tap Change Country/Region;
    7. Select the region where you will be located;
    8. Tap Done.
    Also, see How to Change Your iTunes Store Account Location | eHow.com.

  • How to switch itune store to another country to purchase?

    Hi im Donna
    I have trouble to acess to the itune store when I wanna purchase apps.
    It comes out a message that my account is not vaild for use in the Australian store. and I must switch to the Hong Kong Store before purchasing.
    Please help me I don't know hoe to do this, thank you very much!

    Click here and follow the instructions to change the iTunes Store country.
    (86896)

  • How to install oracle soa suite 10.1.3.1.0 in advanced installation

    Hi,
    i m new to oracle soa suite,any body could yu possible to tell me,how to install soa suite 10.1.3.1.0 in advanced installaton mode,
    before i installed soa suite, oracle db which version support it, support oracle db 10.2.0.1.0,or i installed orace db 10.2.0.4.0.
    warm regards
    muthu

    Here is such a description:
    http://onlineappsdba.com/index.php/2007/06/20/install-oracle-soa-suite-101310/
    Jon petter

  • Which OC4J instance to use for Soa Suite: oc4j_soa or home ?

    When I setup Soa Suite I am asked which OC4J instance I want to use:
    home
    or
    oc4j_soa
    By default "home" is filled in the entry field. However in sample tutorials I saw always "oc4j_soa" and never "home"
    What is the difference and which one is recommended ?
    Peter

    Hi Peter,
    If you have installed Basic SOA Suite, you get the home oc4j container alone.
    However, when you go for Advanced SOA Installation, you get oc4j_soa container, which is used clsutering one node with another, generally we have bpel, esb-rt on oc4j_soa and then we create oc4j_esbdt for esbdt. The docs refer to oc4j_soa, as we always talk about the Enterprise Deployments which uses Advanced SOA Suite with Oracle Database Dehydration Store, and not SOA Basic Install which uses Olite as dehydration store.
    So, please create an oc4j container whenever needed for those specific j2ee applications, for easy identification and management.
    Hope that clarifies...
    Cheers
    Anirudh Pucha

  • SOA Suite configuration assistant

    Hi,
    during installation of Oracle SOA Suite on Oracle Database XE the Web Services Inspection Language assistant fails...
    Any generic solutions?

    Are you installing basic or advanced.
    If you are installing advanced then you must have run the irca scripts as the install checks that the schemas exist before continuing. This is documented in the install doc found on the CD / zip file. Here is a link on how to run it anyway.
    http://download.oracle.com/docs/cd/B31017_01/integrate.1013/b28213/irca.htm#sthref119
    Basic install loads everything for you so you don't need to worry about loading schemas. If you are running basic then you may need to start again as something must have failed during the install. If doing advanced follow the link above to install the owsm schema.
    cheers
    James

Maybe you are looking for

  • [Solved] Looking for a simple music player

    Hello there, I'm looking for a music player for a box I'm currently building. I only need it to have a GUI, playlist support and random playing. I've thought of xmms2, but the standard package comes without GUI and I haven't found any clients with ra

  • Problem --serial port reading one character at a time

    Hi Friend, I reading the serial port  one character at a time ,  i specified it in the "serial bytes to read" option in serial port read examples. The problem is ----------i can able to read  the data. but only the first character is reading again an

  • CSM load balancing

    I have an interesting problem. I have a VIP with a two server, serverfarm. Originally the VIP and serverfarm were doing load balancing in the switch IOS and the vip was configured with a 27 bit subnet mask. I moved the configuration to our csm mod an

  • COMMANDS NOT USED IN EXITS

    Hi Gurus, Can anyone  tell me  when we  do programming in enhancements some COMMANDS should be avoided,  pls  help me ..This was an interview question..Looking  forward  for  replies. thanks Seema [email protected]

  • T3+ volume slice issue

    I have two new T3+ arrays setup as separate systems Both have the same issue. Both have the latest advised release of the T3+ firmware. I set them to be a Raid 1+0 mirror (4 drives mirrored to 4 drives) with striping across all "4" drives. The nineth