Solaris 10 and linux IB

We have a linux cluster running RH5.3 with ofed1.4 using Mellanox MT25418. The cluster is attached to a sun solaris10.7 thumper box. The thumper box export a zfs filesystem via NFS. linux clients mount the filesystem via IPoIB.
Under filesystem I/O load the subnet manager gets repeated path record requests from the sun solaris box. This can bring the SM and the fabric down. Any any one else had issue with solaris IB <-> Linux IB? Any insight into what could be causing the issue?
Thanks,
Mahmoud
Oct 15 19:37: 59 952368 [41E02960] 0x08 -> PathRecord dump:
service id ..............0x0000000000000000
dgid .................... Oxfe80000000000000 : 0x00237dffff949819
sgid .................... Oxfe80000000000000 : 0x0003ba000100d0a5
dlid .................... 0
slid .................... 0
hop_flow_raw............ OxO
tclass .................. OxO
num_path_revers......... Ox81
pkey .................... 0x0
qos_class ............... OxO
sl ......................OxO
mtu .....................OxO
rate .................... OxO
pkt_life ................0x0
preference .............. 0x0
resv2 ................... OxO
resv3 ................... OxO
Oct 15 19:37:59 952376 [41E02960) 0x08 -> osm_pr_rcv_process: Unicast
destination requested
Oct 15 19:37:59 952382 [41E02960] 0x08 ->
osm_pr_rcv_get_port pair_paths: Src port 0x0003ba000100d0a5, Dst port
0x00237dffff949819
Oct 15 19:37:59 952388 [41E02960] 0x08 ->
osmpr_rcv_get_port_pair_paths: Src LIDs [2 - 2], Dest LIDs [67-67]
Oct 15 19:37:59 952393 [41E02960] 0x08 ->
osm prrcv_get_lid_pair_path: Src LID 2, Dest LID 67
Oct 15 19:37:59 952399 [41E02960] 0x08 -> osmpr_rcv_get-path_parms:
Path min MTU = 4, min rate = 6
Oct 15 19:37:59 952408 [41E02960] 0x08 - > osmpr_rcv_get-path_parms:
Path params: mtu = 4, rate = 6, packet lifetime = 18, pkey = OxFFFF, sl
= 0
Oct 15 19:37:59 952417 [41E02960] 0x08 - > osmpr_rcv_get_path_parms:
Path min MTU = 4, min rate = 6
Oct 15 19: 37:59 952423 [41E02960] 0x08 -> osm pr_rcv_get_path parms:
Path params: mtu = 4, rate = 6, packet lifetime = 18, pkey = OxFFFF, sl
= 0
Oct 15 19:37:59 952428 [41E02960] 0x08-> osm_sa_respond: Returning 1
records
Oct 15 19:37:59 952433 [41E02960] 0x08 - > osm_vendor_get: Acquiring UMAD
for p_madw = 0x2a9567f2c8, size = 120
Oct 15 19:37:59 952439 [41E02960] 0x08 -> osm_vendor_get: Acquired UMAD
0x2a9567f390, size = 120
Oct 15 19:37:59 952455 [41E02960] 0x08 - > osm_vendor_put: Retiring UMAD
0x2a9567f390
Oct 15 19:37:59 952460 [41E02960] 0x08 -> •.osm_vendor_send: Completed
sending response or unsolicited p_madw'"j= Ox2a9567f2b0
Oct 15 19:37:59 952466 [41E02960] 0x08 -> osm_vendor_put: Retiring UMAD
0x724520
===============
Loading IBDIAGNET from: /usr/1ib64 / ibdiagnetl.2
-W- Topology file is not specified.
Reports regarding cluster links will use direct routes.
Loading IBDM from: /usr/lib64 / ibdml.2
- I- Using port 1 as the local port.
- I- Discovering ... 103 nodes (7 Switches & 96 CA- s) discovered.
-I ---------------------------------------------------
- I- Bad Guids /LIDs Info
-I -------------------------------------------------- -
-I- No bad Guids were found
-I -------------------------------------------------- -
-I- Links With Logical State = INIT
-I -------------------------------------------------- -
-I- No bad Links (with logical state = INIT) were found
-I ---------------------------------------------------
-I- PM Counters Info
-I -------------------------------------------------- -
-I- No illegal PM counters values were found
-I ---------------------------------------------------
-I- Fabric Partitions Report (see ibdiagnet.pkey for a full hosts list)
-I ---------------------------------------------------
-I- PKey:Ox7fff Hosts:97 full:97 partial:0
-I -------------------------------------------------- -
-I- IPoIB Subnets Check
-I ---------------------------------------------------
-I- Subnet: IPv4 PKey:Ox7fff QKey:Ox00000blb MTU:2048Byte rate:lOGbps
SL:OxOO
-W- Suboptimal rate for group. Lowest member rate:20Gbps > grouprate:
lOGbps
-I ---------------------------------------------------
-I- Bad Links Info
-I- Errors have occurred on the following links
(for errors details, look in log file / tmp/ibdiagnet.log):
-I ----------------------------------------------------
Link at the end of direct route "1,11,23"
-I- Stages Status Report:
STAGE
Bad GUIDs /LIDS Check
Link State Active Check
Performance Counters Report
Partitions Check
IPoIB Subnets Check
Link Errors Check
Errors Warnings
0 0
0 0
0 0
0 0
0 1
0 0
Please see /tmp/ibdiagnet.log for complete log
- I- Done. Run time was 6 seconds.

Hi, I am trying the same thing at least where I have windows xp, solaris 10 and Ubuntu Linux on one hard drive. I am also trying to configure Solaris to work like that too. Here is a link that I got from another forum that might help with that.
http://www.opensolaris.org/jive/thread.jspa?threadID=44130&tstart=0

Similar Messages

  • Why  difference in Solaris and Linux

    Hi,
    The following program is giving results diferently when I am executing using g++ compiler in Solaris and Linux.
    Why it is so.
    here is the code:
    #include <stdio.h>
    #include <string.h>
    #include <malloc.h>
    #include <stdlib.h>
    int main( void )
    size_t size;
    char *buf;
    if ( ( buf = (char *)malloc(10 *sizeof(char))) == NULL)
    exit (1);
    size = sizeof( buf );
    strcpy(buf, "HelloWorld");
    printf("\n Address is : %u String is : %s size : %d ", buf, buf,size);
    if (( buf = (char *) realloc(buf, sizeof(20))) == NULL)
    exit ( 1);
    *(buf+10) = 'A'; *(buf+11) = 'B'; *(buf+12) = '\0';
    printf("\n Address is : %u String is : %s\n", buf, buf);
    free( buf);
    exit( 0 );
    Solaris:
    Address is : 134160 String is : HelloWorld size : 4
    Address is : 135704 String is : HelloWor
    Linux:
    Address is : 134518824 String is : HelloWorld size : 4
    Address is : 134518824 String is : HelloWorldAB
    Thanks
    Venkat

    Hi,
    The following program is giving results diferently
    when I am executing using g++ compiler in Solaris
    and Linux.
    Why it is so.
    here is the code:
    #include <stdio.h>
    #include <string.h>
    #include <malloc.h>
    #include <stdlib.h>
    int main( void )
    size_t size;
    char *buf;
    if ( ( buf = (char *)malloc(10 *sizeof(char))) == NULL)
    exit (1);
    size = sizeof( buf );The size you get here is the size of buf, which is the size of a pointer, not the size of what buf points to. sizeof(*buf) would give you size of a char, the type (not the object) that buf points to.
    There is no portable way to find out the number of bytes allocated on the heap if you are give only a pointer to the memory. You have to remember the size some other way..
    strcpy(buf, "HelloWorld");A literal string consists of the characters in the string plus a terminating null, all of which are copied by strcpy. You allocated 10 chars for buf, but are writing 11 chars into it. At this point, the program has undefined behavior. Literally anything at all could happen, because you can't predict the effect of writing outside the bounds of allocated memory.
    printf("\n Address is : %u String is : %s size :
    e : %d ", buf, buf,size);
    if (( buf = (char *) realloc(buf, sizeof(20))) == NULL)The "sizeof" operator in this case is returning the size of the type of a literal 20, which is an int. If you want to allocate 20 bytes, you write 20, not sizeof(20).
    exit ( 1);
    *(buf+10) = 'A'; *(buf+11) = 'B'; *(buf+12) == '\0';SInce you can't count on buf having more than 4 bytes at this time, you are writing into unallocated memory, with undefined results.
    printf("\n Address is : %u String is : %s\n", buf, buf);
    free( buf);
    exit( 0 );
    Instead of asking why you get different results on different platforms, you should be asking why the program doesn't crash on all platforms. :-)
    You can avoid these problems with keeping track of allocating memory by using the C++ standard library instead of trying to manage low-level details yourself as in C code.
    The standard string class, for example, extends itself as needed, and ensures that heap memory is freed when the string object is deleted or goes out of scope. You don't need pointers, malloc, free, or sizeof to use C++ strings.

  • Why keyboard and mouse right click not working in Solaris and Linux?

    Hi all,
    I have two problems:
    1) I am working on AWT/Swing application and its working fine in window enviornment,but while running on solaris and linux mouse right-click option window not poping up.
    2) Ctrl+c,Ctrl+v,Home and End keyboard key are not working in solaris and linux OS for same application.
    Pls provide me some solution for these problem.
    -Dinesh

    Hi Nik,
    Thanks for reply. I found some solution for the above problem.
    For mouse right click there was problem in my source code.I have not implemented the mousePressed() method
    In case of keyboard Home, End and arrow key working fine after exporting AWTUSE_TYPE4_PATCH=false; in solaris and linux
    But still Ctrl-c and Ctrl-v not working.
    I am using JDK1.5.0_07+Eclipse IDE 3.1
    -Dinesh

  • Java RTS 2.1 Beta free evaluation release for Solaris and Linux available

    Hi:
    I would like to notify this forum that a free evaluation release of
    Java Real-Time System (Java RTS) 2.1 Beta is now available for downloading
    at our public web site.
    Supported platforms are Solaris/SPARC, Solaris/x86, and Linux/x86 with
    real-time POSIX APIs. The specific Linux distributions which this release
    has been tested on are: SUSE Linux Enterprise Real Time 10 (released)
    and Red Hat Enterprise MRG 1.0 (beta). As for the Solaris versions,
    both Solaris 10 Update 3 and Update 4 are supported.
    The URL for the web page where to start in order to be able to get to
    the download link is:
    http://java.sun.com/javase/technologies/realtime/rts/
    The download link will be presented to you after you fill out a quick
    survey and agree with a click-through, 90-days e-license.
    The latest version of the Java RTS Beta technical documentation
    bundle included with the product is being separately maintained at
    our public website and can be accessed starting from here:
    http://java.sun.com/javase/technologies/realtime/reference/rts_productdoc.html
    Thanks,
    -Carlos
    Carlos B. Lucasius
    Java SE Embedded and Real-Time Engineering
    Sun Microsystems, Inc.
    http://java.sun.com/javase/technologies/embedded/index.jsp
    http://java.sun.com/javase/technologies/realtime.jsp
    http://java.sun.com/javase/technologies/realtime/faq.jsp
    http://developers.sun.com/learning/javaoneonline/j1sessn.jsp?sessn=TS-1331&yr=2007&track=5
    http://developers.sun.com/learning/javaoneonline/j1sessn.jsp?sessn=TS-2901&yr=2007&track=5
    http://developers.sun.com/learning/javaoneonline/j1lab.jsp?lab=LAB-7250&yr=2007&track=4
    http://www.sun.com/training/catalog/courses/DTJ-4103.xml
    http://www.youtube.com/v/xH1yUXd9krU
    http://blogs.sun.com/jtc/
    http://blogs.sun.com/delsart
    http://blogs.sun.com/bollellaRT

    Hello,
    Just a quick question: can we have an official position from Sun regarding support of earlier releases of Solaris with Java RTS 2.1? Our customer is currently running Solaris 10 Update 3 with current Recommended patches, and the 2.1 beta cyclic driver supported this version of Solaris. However with the official release version of 2.1, support for U3 disappeared (only U4 and U5 are now supported). Aside from "rubber stamping" the Solaris build via /etc/release, is there a technical reason why U3 is no longer supported? As long as our kernel is up to date, can we safely use 2.1? Or is it just a case of being unable to officially support and test so many releases of Solaris?
    Is this a general rule-of-thumb we can expect in future: only supporting the last 2 updates of Solaris 10?
    Your advice is appreciated.
    Thanks,
    Dave.

  • Solaris and Linux

    Hi all Gurus
    I build an HTMLDB application on an Linux box, and now I want to post it on the web which is managed by Solaris platform. Is it possible ? If yes, how should I do it.
    Thanks

    It will work fine.
    Create the database user in the new machine.
    Run exp/imp to copy your schema across.
    Export your htmldb workspace and app.
    Import the workspace into the new htmldb.
    Import the application in htmldb.

  • Solaris 10 and Linux inter-operability

    Hi there
    I have Ubuntu linux and recently installed Solaris 10 on my x86 machine. My setup is dual boot through grub.
    I wondered if there were any decent guides on Solaris and Linux inter-operability that could be recommended. My aim is to try Solaris 10 as a home desktop machine i.e. play music, video, surf email etc.
    Thanks in advance

    Hi, I am trying the same thing at least where I have windows xp, solaris 10 and Ubuntu Linux on one hard drive. I am also trying to configure Solaris to work like that too. Here is a link that I got from another forum that might help with that.
    http://www.opensolaris.org/jive/thread.jspa?threadID=44130&tstart=0

  • Jdeveloper and linux

    I want to change platform from NT to linux.
    Will I then loose the jdeveloper as the
    developement platform or do you think
    about building a release for linux ?
    null

    William Wise (guest) wrote:
    : Since JDeveloper is based on JBuilder technology and JBuilder
    : 3.0 will be available on Solaris and Linux Q1 2000 (by all
    : accounts) it seems at least possible that we could see
    : JDeveloper on those platforms sometime after that timeframe.
    : In the meantime, you'll be restricted to using either NetBeans
    : (www.netbeans.com) which is nice but slow since it is 100% java
    : or Visual Age for Linux.
    : Will
    JDeveloper is based on JBuilder 1.x and (I think) some on
    Jbuilder 2.x BUT according to JDev Team members posting on other
    threads will not take additional code from Borland. Thus,
    whatever JBuilder 3.x has or will have does not in any way
    reflect what will be in JDeveloper going forward (at least not
    because JDeveloper will "inherit" any of the code/features).
    I, for one, wish they had waited until JDeveloper was based on
    the upcoming pure Java Jbuilder 3.something so as to have a more
    portable product. (If wishes were fishes, :) )
    R.Parr
    null

  • RMI-server works on Windows and Linux but not on Solaris

    I wrote an application which uses RMI. The server is successfully tested on Windows and Linux. However it doesn't work on Solaris.
    Naming.lookup works, I can find the server. But calling a method on my remote interface causes a ConnectionException:
    java.rmi.ConnectException: Connection refused to host: 192.168.1.123; nested exception is:
         java.net.ConnectException: Connection refused: connect
         at sun.rmi.transport.tcp.TCPEndpoint.newSocket(Unknown Source)
         at sun.rmi.transport.tcp.TCPChannel.createConnection(Unknown Source)
         at sun.rmi.transport.tcp.TCPChannel.newConnection(Unknown Source)
         at sun.rmi.server.UnicastRef.newCall(Unknown Source)
         at at.triton.javaengine.server.ServerImpl_Stub.connectToWindow(Unknown Source)
         at at.triton.javaengine.client.JavaEngineClient.connectToWindow(JavaEngineClient.java:288)
         at at.triton.javaengine.client.JavaEngineClient.main(JavaEngineClient.java:787)
    Caused by: java.net.ConnectException: Connection refused: connect
         at java.net.PlainSocketImpl.socketConnect(Native Method)
         at java.net.PlainSocketImpl.doConnect(Unknown Source)
         at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
         at java.net.PlainSocketImpl.connect(Unknown Source)
         at java.net.SocksSocketImpl.connect(Unknown Source)
         at java.net.Socket.connect(Unknown Source)
         at java.net.Socket.connect(Unknown Source)
         at java.net.Socket.<init>(Unknown Source)
         at java.net.Socket.<init>(Unknown Source)
         at sun.rmi.transport.proxy.RMIDirectSocketFactory.createSocket(Unknown Source)
         at sun.rmi.transport.proxy.RMIMasterSocketFactory.createSocket(Unknown Source)
         ... 7 moreNote that I have almost no experience with Solaris.
    Additional information about the common pitfalls which I have already checked:
    * rmiregistry finds the server classes (the exception was different without them)
    * the server is in the LAN and the desktop firewall of the client is double-checked to let the required ports through to any destination.

    java.rmi.ConnectException: Connection refused tohost: >192.168.1.123; nested exception is:
    java.net.ConnectException: Connection refused:
    : connect
    Clearly indicates what is happening inside there.Clearly indicates that you don't know what you are talking about.
    Any applications invoked with a security manager must
    be granted explicit permission to access local system
    resources apart from read access to the directory and
    its subdirectories where the program is invoked.Any application that gets a java.net.ConnectionException: Connection
    refused is getting it more or less directly from the TCP/IP stack. If the problem had anything to do with policies and permissions and SecurityManagers, it would have been an AccessControlException .
    if your client RMI doesnt include these lines then If your 'client RMI' does include these lines then I would like a definition of what exactly a 'client RMI' really is, because I've been using RMI for ten years and wrote a book about it and I certainly don't know.
    1)just include these lines
    if (System.getSecurityManager() == null) {
    System.setSecurityManager(new
    SecurityManager());In other words, if the application doesn't already have a security manager, in which case the contents of the policy file or the 'client RMI', or whatever you want to call it, are completely irrelevant, such that they couldn't possibly be having the problem you desrcribe, add a security manager so that we get into the land where you might possibly know what you're talking about?
    e a policy file
    grant {
    permission java.net.SocketPermission
    "192.168.1.123:1099", "accept,connect,resolve";
    };And this is completely unnecessary if there isn't a security manager, and completely unrelated to the OP's problem.

  • How to restore a Oracle 9i Backup from Sun Solaris to Linux

    Dear all,
    I am using Oracle 9.0.1.
    I make a Hot Backup which made by Rman in the Sun Solaris
    and now, I want to restore this backup to the Linux machine.
    But in the Linux machine,
    the database name & path is different from that in Sun Solaris.
    Does Oracle backup can restore across different platforms?
    Does anyone know how to do write ryman statement to do this?
    Thank for your kindly help.
    Wilson

    You cant resore backup in different platform.
    /Jonas

  • Need Best Practice for Migrating from Solaris to Linux

    Hi Team,
    We are migrating our Data Center from Solaris to Linux and our EBS 11i, database 10g (10.2.0.5) is 6TB. Please let us know the Best Practice to Migrate our EBS 11.5.10.2 from Solaris to Linux RHEL 5.
    we require Database 10g (10.2.0.5) on Linux x86-64 RHEL 5 and Application EBS on Linux x86 RHEL 5. Please let us know for any details.
    EBS version: 11.5.10.2
    DB version: 10.2.0.5
    We have checked the certifications in Oracle support.
    Oracle EBS 11.5.10.2 is not certified with Linux x86-64 RHEL 5. 
    Oracle EBS 11.5.10.2 is certified on Linux x86 RHEL 5.
    So we require Database 10g (10.2.0.5) on Linux x86-64 RHEL 5 and Application EBS on Linux x86 RHEL 5.
    Thank You.

    You can transportable tablespace for the database tier node.
    https://blogs.oracle.com/stevenChan/entry/10gr2_xtts_ebs11i
    https://blogs.oracle.com/stevenChan/entry/call_for_xtts_eap_participants
    For the application tier node, please see:
    https://blogs.oracle.com/stevenChan/entry/migrate_ebs_apptiers_linux
    https://blogs.oracle.com/stevenChan/entry/migrating_oracle_applications_to_new_platforms
    Thanks,
    Hussein

  • 10.7 solaris-11i linux

    Where can i find some information of upgrading
    from 10.7 solaris-11i linux
    - steps involved it
    q:
    - Do i build 10.7 in linux and then do a upgrade
    or
    - build upgrade in unix and then import/export to linux
    any points will be helpful
    srini

    I will first give a very high level answer and if you need more detail - just ask away.
    First Need to lay down upgrade environment with rapid install - this would include new $APPL_TOP, $806_ORACLE_HOME,$8174_ORACLE_HOME,$IAS_ORACLE_HOME and $COMMON_TOP. This would be in the linux side. Remember rapid install itself has patches and there is a metalink note on the pre-upgrade patches for the apptlop during the upgrade note 112659.1.
    Search metalink new patch search for rapid install and find those patches - very important for linux - so of the rapid install versions have issues, the last patch set fixed our problems.
    Once this is prepared (upgrade not started) then I used imp/exp to migrate the database and I reorg'd the database at the same time for this - Metalink document 204015.1 was a good source for this. Verses the sysadmin documentation. Then once the database is imported, then begin the upgrade process - we also created a 10.7 on solaris pre-upgrade clone, that is we cloned production to a temporary 10.7 environment, did the pre-upgrade steps up until the database migration, then did the imp/exp , then did the upgrade -
    Hope that makes sense, there could be other ways and even different twists with the steps we did. I hope it makes sense, I am not that good in emails and notes, The reason we did the pre-upgrade steps on a clone was so that the current production could serve as a back up in case of any un-anticipated problems happened during the upgrade and as well for the testing process that you go through.
    Regards,
    Chris

  • Advanced Replication using Oracle 8i and Linux

    Hi,
    My name is Sadhana. I am a software engineer. I have a doubt regarding Oracle and Linux. Well, I am involved in developing a customer care and billing solution with back end as Oracle8i (8.1.5)on Linux RH 6.1. I need your guidance is regarding the reliability of using Oracle on Linux as data file servers for critical applications like customer care and billing systems in telecom. The rating and billing engine will also run on linux servers. Only the client machined will have windows 98/NT. It will be helpful if you can throw some light on the replication features of Oracle particularly in Linux. For e.g. is it possible to keep a database server - Oracle on linux and a replication server on linux. Will it behave similarly like other replication servers (windows NT or Solaris etc.)? Is it reliable?
    Looking forward for your reply
    TIA,
    With Best Regards,
    Sadhana S Kamath

    Christian Seebode (guest) wrote:
    : Hi everybody,
    : will Oracle 8i be available for Linux ?
    : When ?
    : Or will there be a difference in availability for
    : the different options of 8i ?
    : Thanks for any information
    : Christian
    1.) Yes it will.
    2.) Nobody knows. (Oracle points to May/99...)
    3.) Yes, absolutely, since Enterprise Editions are poorly
    supported under Oracle/Linux
    Bye, Robert
    null

  • Migration of Database oracle 10g from solaris to linux

    Hi,
    I need to migrate a DB from solaris to linux without shutdown the solaris DB.I would like to know the backup using RMAN Transportable tablespace in solaris and migrate it to dest(Linux).
    Kindly share ur ideas

    I need to migrate a DB from solaris to linux without shutdown the solaris DB.I would like to know the backup using RMAN Transportable tablespace in solaris and migrate it to dest(Linux).
    Kindly share ur ideasIt is very much possible. In fact I transfered DB from sunos to Windows. But this is not a backup process using RMAN. RMAN is used to change the endianness of datafile so that it is in format which is required by Windows format. This transfer is possible using the data pump utility(IMPDP). There are many threads on the forum for this topic. Seek help from other threads.
    Regards
    Virendra

  • Reconfiguring Hyperion after DB move from Solaris to Linux

    Our Hyperion Databases are moving from Solaris to Linux. We need to reconfigure Hyperion EPM to point to the new Linux DB. We have 4 Hyperion servers A,B, C, D.
    Server A : Foundation Services, Workspace ,Reporting & Analysis, Planning, Calc Manager, Shared Services, EAS, APS.
    Server B : EPMA, Essbase studio
    Server C: ODI, FDM
    Server D: Essbase
    We are planning to do the below steps :
    1) Stop all Hyperion services .
    2) Stop databases on Solaris servers.
    2) Configure Foundation first on foundation services server ( server A) , using EPM system configurator.
    3) Configure Foundation on the other 3 servers( B, C,D) which are having EPMA, FDM, Essbase etc.
    4) Foundation- Deployment to applicaiton server in foundation services server ( Server A).
    5) Configure/deploy DB for rest of the products.
    We tried to do similar steps last time. We were able to do foundation but for other products it failed. Please let us know if these steps are correct?
    We are on Hyperion 11.1.2.2.300 version. O/S is Windows 2008 64 bit.

    You should just need to follow the documentation:
    Changing the Shared Services and Registry Database Connection Information and Password
    Changing EPM System Product Repository Database Connection Information and Passwords
    If there are problems following those steps then post the errors from the logs.
    Cheers
    John

  • Migrating Oracle EBS 11.5.10.2 from Solaris to Linux

    Hi,
    I want to migrate Oracle applications 11.5.10.2 from Solaris to Linux using transportable database feature.
    Please suggest how to proceed with this.
    Thanks,
    Anirudh

    Hi Anirudh,
    Please see:
    https://blogs.oracle.com/stevenChan/entry/have_you_used_10gr2_transportable_tablespaces_with
    And see:
    10g+: Transportable Tablespaces Across Different Platforms (Doc ID 243304.1)
    Cross Platform Transportable Tablespaces on 11i with 10gR2 (Doc ID 454574.1)
    Master Note for Transportable Tablespaces (TTS) -- Common Questions and Issues (Doc ID 1166564.1)
    R11i / R12: Oracle E-Business Suite Upgrades and Platform Migration (Doc ID 1377213.1)
    R11i / R12: Oracle E-Business Suite Upgrades and Platform Migration (Doc ID 1377213.1)
    Transportable Tablespace (TTS) Restrictions and Limitations: Details, Reference, and Version Where Applicable (Doc ID 1454872.1)
    Best Practices for Using Transportable Tablespaces (TTS) (Doc ID 1457876.1)
    Thanks &
    Best Regards,

Maybe you are looking for

  • BIA to improve performance for BPS Applications

    Hi All, Is it possible to improve performance of BPS applications using BIA. Currently we are running applications on BI-BPS which because of huge range of period are having a performance issue. Would request to please share whether in this read and

  • Need help, Trouble in uploading records using sql loader in Forms 6i

    Hi, I am trying to develop a screen for uploading records to a table by using a ctl file, batch file and sql loader. Env: Forms 6i, Oracle 8 Table to be updated is: shy_upload_table My TSN entry looks similar to this, TEST_AXA.CNB.COM = (DESCRIPTION

  • User exists sales order pricing

    How to find out SALES ORDER PRICING USER EXISTS already predefined Thanks munna

  • Essbase Advanced Security Manager

    Importing/Exporting: I have played with exporting and importing all of the security information using the Essbase Advanced Security Manager tool. (olapunderground.com) Everything exported and imported except for the user passwords. Did I miss somethi

  • Removal of Blank Line

    hi, I have an issue here. We have a field with VARCHAR2 data type. This field can have value like this: ==================================== YOUR SWIFT XXXXXXX UNDER A.M L/C PLS NOTE THAT DOCS. NOT PRESENTED YET BUT WE SENT INQUIRY TO REIMBURSING BK