'AIX' Vs ' windows'

Hi Guru's
we are planning to move our essbase cube from windows 2003 to aix machine. i have few questions in my mind.
If anybody can help then that will be great
what challenge do we face performance wise .
is performance of hyperion better in AIX then windows?
do we have to make any changes in the existing cube and maxl scripts if we moved to AIX
we are using few batch scripts that need to be converted to shall script if we moved to AIX
Is installation of Hyperion easier in AIX?
we are using version 9.3.1
if you can provide with some document link for this then that will be great
thank you

Hello -
Just going by my experience here...yours/others case may difer..
1. We didn't face any challange performance wise. We had to reboot the windows every
2-4 weeks but with aix we didn't have that issue.
2. We didn't modify the maxls, except for the server name peice. The rest of the
maxls were mostly as is.
3. All the bats and cmds script which call the maxls had to converted to the shell script.
4. We had to use the chron in AIX to do the schduling.
5. As the lower case and upper case will mater in AIX so it will be good idea to
clean up the names your apps/databases and all the artifacts and use a standard.
We had a little issue there as we had a mix of upper,lower case letters for the names
of the artifacts.
Regards

Similar Messages

  • SAP Printer migration from AIX to windows

    Dear Experts,
    We migrated our ECC from AIX to Windows.
    We want to migrate printers from AIX to windows.
    Do we have to create queues from scratch in SPAD?
    Can we use existing queues in SPAD?
    Please guide what all steps are required.
    Your help will be highly appreciated!
    Thanks,
    Harry

    Hi Hary,
    For windows environment you need to change the spool server hostname in SPAD and activate all the relevant printers.
    Please check whether you had any network printers configured on AIX host. You can use command
    smitty spooler  or
    lpstat -W -p<queuename>
    If there are any spoolers configured for SAP system, you need to recreate them on windows.
    Hope this helps.
    Regards,
    Deepak Kori

  • DMS Migration from AIX to windows

    Dear All,
    We are in process of migrating of SAP landscape from AIX to windows.
    We have idea of migrating ECC and BI from AIX to windows. But we are confuse, how to migrate SAP DMS from AIX to windows.
    Need you suggestion how to proceed futhure for moving DMS from AIX to windows.
    Thanks
    Anil

    Hi,
    1) Does oracle support this kind of migration?Yes.
    2) Is this achievable, without involving any functional consultants? You do not need any functional consultants for this migration.
    3) Can anyone help with some metalink notes or document on this migration?Please see these documents.
    Note: 369693.1 - Using Oracle Applications with a Split Configuration Database Tier on Oracle 10g Release 2
    Note: 304489.1 - Using Oracle Applications with a Split Configuration Database Tier on Oracle 9i Release 2
    4) Is it a good idea to move from AIX to windows?Windows? Hmmm :)
    Regards,
    Hussein

  • Differences between AIX and Windows for SAP

    Dear All,
    I have a problem regarding SAP Software.We want to change our company software .First we order SAP On Windows with Oracle10g But Now We want SAP on AIX with Oracle10g.
    SAP delivered us software on Windows platform.
    Please Suggest me for this as what are the differences between the above two platforms and what are the differences between the above 2 platforms.
    Regards,
    Pankaj Kalsayan

    hi Pankaj,
    well, this is a very general question. perhaps you could specify a little more.
    in general i would see no difference regarding the end user sitting in front of his pc using sapgui.
    as far as i know all server side sap software is available for aix and windows (and many more).
    for administration on the other hand there is of course lots of difference. AIX is a UNIX operating system running on special hardware with power processors. it offers quit extensive virtualisation abilities using so called LPARs and supports real big number of CPUs and large RAM. Windows is a completly differnet operating system running mostly on x86/amd64 hardware.
    therefore you should also consider what know-how is available in your system administration.
    not shure if that is partly answering your question ...
    btw. if you are going forward with AIX you should perhaps consider switching oracle with db2. so you have a consistent IBM based landscape. also to me, sap and db2 seem to "like" each other more than sap and oracle
    regards,
    martin

  • Migrating from AIX to Windows

    Hi all,
    We are considering in a SAP R/3 4.6c to ECC6 Upgrade, the option to migrate from AIX to Windows OS.
    We heard that this option is not so usual.
    - Could you tell us some feedback and recommendation about it?
    - What kind of issues will we face?
    Thanks for your help,
    Chris

    > We are considering in a SAP R/3 4.6c to ECC6 Upgrade, the option to migrate from AIX to Windows OS.
    >
    > We heard that this option is not so usual.
    Usual? What is "usual"?
    > - Could you tell us some feedback and recommendation about it?
    > - What kind of issues will we face?
    This depends heavily (if not only) on your environment. Some thoughts:
    - Windows is little endian whereas AIX is big endian; this may affect connected software (non-SAP software, filesystem transfers etc.)
    - additional software plus licenses may become necessary (cluster, backup...)
    - do you have enough knowledge about Windows (+ its internals) as you have on AIX? Windows is not "easier" by default just because you have a mouse to click... (even if everyone thinks it is). Windows administration is totally different to any *nix (you may need to change scripts, consider updating regularly, think about problems you didn't have before (Virus, Worms) etc.)
    - Hardware for Windows is usually cheaper than Power based hardware for AIX
    - Windows licenses (+ CALs) must be bought
    Just as another thought: Did you consider running Linux instead? You will use the same (cheaper) hardware with a more common environment (if you come from AIX)?
    Markus

  • RANK Function in AIX vs Windows

    I am facing an issue where when I run my report using my windows machine I am able to get the right results with the RANK function. However, when I ran the same report in my AIX machine, I got the following error:
    Odbc driver returned an error (SQLExecDirectW).
    Error Details
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    State: HY000. Code: 378077472. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 46008] Internal error: File server/Query/Optimizer/ServiceInterfaceMgr/Src/SQOIGeneratorBuiltIn.cpp, line 3403. (HY000)
    If anyone has run into this, please let me know.
    Thanks.

    One point to make is the Rank function works if you create 1 column with the RANK function in Answers(i.e. Rank(Fact.Sales) ). The issue comes up when you try to create a BIN column to bucket the RANKs in a seperate column.
    Here's the SQL:
    SELECT Location.Location saw_0, case WHEN RANK(Metrics.Sales) BETWEEN 1 AND 5 then '1-5' WHEN RANK(Metrics.Sales) BETWEEN 5 AND 10 then '5-10' else 'other' end saw_1, Metrics.Sales saw_2, RANK(Metrics.Sales) saw_3 FROM "Rank Prototype" ORDER BY saw_0
    So Basically, the issue is when you have a Bucketed Rank Sales Column and a simple Rank Column in the same request. (In AIX the issue exists, in Windows there is no issue.)

  • AIX v Windows Sizing Guide?

    XI31 SP3
    There's a windows sizing guide (3.0) however, not one for an AIX implementation.  Can anyone please offer any thoughts/feedback on an AIX installation as to performance considerations.
    Assuming BI System (XI31 SP3),  100 concurrent users, highest concentration on webi reports and dashboards. 
    Thanks in advance!

    Hey Mark,
    I found the following url on a wiki page: [https://websmp102.sap-ag.de/~form/sapnet?_SHORTKEY=01100035870000738725&]
    The wiki may prove useful if you will be migrating to BI4.0. The url to the wiki is..  [http://wiki.sdn.sap.com/wiki/display/BOBJ/AllyouneedtoknowbeforeupgradingtoBI4.0]
    good luck!
    Deepu.

  • Migration erp system aix to windows

    Hi,
    I want to migrate my erp system on another platform.
    Now I am able to migrate my database.
    But I am not able to migrate my application Application version is 11.5.10.2
    If any body knows please help me.
    Currently we are using Aix server and wants to migrate from windows server.
    Thanks

    Hi,
    At a very high level, one option is to install R11.5.10.2 on your Windows server and patch to the same level as your AIX server. Then migrate your database (exp/imp) and rerun autoconfig to setup everything correctly.
    For detail the following documents might be a good start:
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=238276.1
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=230627.1
    Regards,
    Gareth
    Blog: http://garethroberts.blogspot.com/

  • Configuration of rman aix to windows

    hi,
    i am using oracle 10a rac on aix . for this database i want to configure rman , i have a oracle 10g database on windows which i want to use as catalog.
    so is it possible to take rman backup of database on aix using database on windows ?
    regards

    Hi superdba,
    From the three questions:
    is it possible to take rman backup of database on aix using database on windows ?
    if i allocate channel & give path of d:\ drive so wud it generate any problem ?
    backup of my aix database wud be genreted on widows machine . am i right ?I guess you want to use the rman 10g client on windows to backup the 10g database running on AIX.
    Be aware rman is not the same as export/import where the files are created on the client side.
    The disk channels need to be configured to local (AIX) storage and files will be created on the server side.
    To backup with rman you can use different versions of the rman client and catalog in relation to the target database.
    check:
    http://download.oracle.com/docs/cd/B28359_01/backup.111/b28273/compat003.htm
    Regards,
    Tycho

  • AIX-Samba-Windows

    Hi all.
    There is an issue which I couldn't decide yet. So I need your ideas.
    I've an AIX 4.6C R/3 Server which has Samba configured.
    The files needed to be exported to Windows File Server with
    fileserver\directory notation. I can acces from Windows to AIX but vice versa is not available. We have used NFS but this makes us to change the hardcoded ABAP programs or variant for background jobs.
    Is there any suggestion to overcome this situation?
    Thanks in advance.
    Fatih ERTEN

    Part of the Samba suite is the smbclient executable.
    This SMB client can be used to access Windows shares from AIX.
    see "man smbclient" for details.

  • ClassNotFoundException: on AIX not Windows - why?

    why will my code compile and run locally on winXP using 1.3.1
    but when i export and create the jar and place it on AIX using 1.3.1
    i get ClassNotFoundException: COM.ibm.db2.jdbc.app.DBDriver

    Is that class a third party one or is it in the run-time environment of the JRE libraries?
    Wes

  • Dataguard between AIX/windows

    Hi,
    Can I implement Dataguard between AIX and windows db.Please provide documentation path in oracle.
    ravi.

    If this is for disaster recovery, I would strongly suggest that you read Tom Kyte's recent blog entry
    http://tkyte.blogspot.com/2006/02/so-what-was-answer-part-iv.html
    that strongly discourages this sort of setup. Heterogeneous environements are not appropriate for sstandby databases.
    Justin

  • Migrate from aix 5 to windows

    is it possible to migrate 11.5.10.2 from aix 5 to windows server 2003, if so can you provide a document id or good help
    thnx

    Please refer to:
    migration erp system aix to windows
    Re: migration erp system aix to windows

  • HS : Connecting from 9.2.0.8 database on AIX to  MS SQL 2008R2

    Hello ,
    We have a requirement to connect from 9.2.0.8 database on AIX to MS SQL 2008R2 .
    Source :
    Oracle : 9.2.0.8 (64 bit)
    OS : AIX - 4.3.3.0/5.3.0.0 (64-bit)
    Target :
    MS SQL : 2008R2
    OS : Windows 2008 (64-bit)
    1] Can we use - Database Gateway for SQL Server for the above set up ? If so , does this require a separate license ?
    2] Where Do we need to install the "Database Gateway for SQL Server " -- soruce or target server ?
    3] Is there any other solution apart from using "Database Gateway for SQL Server " ?
    THanks,
    shashi

    Shashi,
    To answer your questions -
    1] Can we use - Database Gateway for SQL Server for the above set up ? If so , does this require a separate license ?
    Yes, you can use DG4MSQL and it does require a separate license.
    Your best option would be to use the latest version which is 11.2.0.3 but this requires you to apply patch 5965763 to your 9.2.0.8 RDBMS. See this note in My Oracle Support -
    Note.549796.1 Desupport of Oracle Transparent Gateways (Doc ID 549796.1)
    You also need to be on a particularAIX version as shown in the certification matrix -
    http://www.oracle.com/technetwork/database/gateways/certmatrix-168347.pdf
    if you install the gateway on AIX.
    2] Where Do we need to install the "Database Gateway for SQL Server " -- soruce or target server ?
    You can install DG4MSQL on any machine and connect to it from the RDBMS on AIX using database links. So, you can install on either AIX or Windows where SQL*Server is running. There is no difference in the performance.
    3] Is there any other solution apart from using "Database Gateway for SQL Server " ?
    You could also use the Database Gateway for ODBC (DG4ODBC) which uses a third party ODBC driver to make the connection between the gateway and the non-Oracle database. This is included with your RDBMS license but you need to supply the ODBC driver
    The following notes on My Orcle Support have further details and information -
    Master Note for Oracle Gateway Products (Doc ID 1083703.1)
    Options for Connecting to Foreign Data Stores and Non-Oracle Databases (Doc ID 233876.1)
    Functional Differences Between DG4ODBC and Specific Database Gateways (Doc ID 252364.1)
    Gateway and Generic Connectivity Licensing Considerations (Doc ID 232482.1)
    Depending what you want to do you could also use the GoldenGate product to replicate between Oracle and SQL*Server -
    http://www.oracle.com/technetwork/middleware/goldengate/overview/index.html
    This also requires aa separate license.
    Regards,
    Mike

  • Table Problem : BOE-XI (R2) on AIX with DataDirect ODBC for MS-SQL

    BOE-XI (R2).
    Single-Server installed on AIX.
    ODBC connection to MS-SQL 2000 database using DataDirect 5.1 SQLServer Wire Protocol Driver.
    CR-XI (R2) RPT content.
    The CR-XI (R2) Reports run fine on the Windows desktop using the regular MS-SQL 2000 ODBC connection method.
    They also run fine on a Windows BOE-XI (R2) DEVELOPMENT server using the regular MS-SQL 2000 ODBC connection method.
    The TEST server for BOE-XI (R2) is running on AIX (not Windows).
    We set-up the ODBC connection to the MS-SQL 2000 database using the "DataDirect 5.1 SQLServer Wire Protocol Driver" for AIX as advised by BOBJ techs.
    Most of our RPTs run OK on the AIX server using that DataDirect ODBC, but about 25% run for a while then FAIL with the following error.
    "The table could not be found".
    All three (3) methods of running the reports - Desktop, DEV, and TEST are connecting to the same MS-SQL 2000 database using the same credentials. So it is not an account permissions problem...
    I can also get the FAILING reports to run OK on the AIX server if I use JDBC connection to the DB instead of DataDirect ODBC.
    It looks like the same TABLE NAME exists in more that one schema on this database.
    EXAMPLE - Table "User_Name" exists in both the "Current" and "Archive" schemas.
    The Windows SQL and the JDBC drivers seem to be able to determine which schema to connect to to access the correct table, but the DataDirect driver can't figure-out which "User_Name" table to use.
    My guess is that there is some setting missing on the DataDirect ODBC configuration on the AIX server, but I can't figure out what it is.
    Anyone seen this before when using that DataDirect ODBC driver on AIX....and know how to fix it?
    Thanks in Advance!

    Hmm... I haven't come across that problem myself, so I'll just throw this out.  A typical odbc.ini file looks something like this:
    [North]
    Driver=/export/home2/boxi/bobje/enterprise11/solaris_sparc/odbc/lib/CRmsss20.so
    Description=DataDirect 5.0 SQLServer Wire Protocol Driver
    Address=10.0.0.3,1433
    Database=Northwind
    QuotedId=Yes
    AnsiNPW=No
    LogonID=user
    QEWSD=38527
    Password=pass
    ... it seems pretty clear exactly which database the datadirect should use.  Are there any weird characters in your odbc DSN ( [North] ) that can confuse between Windows and Unix? Is the DSN excessively long?.  I found a link (http://bytes.com/forum/thread144518.html) which indicates that sqlserver will allow a three-part identifier to select database.table.column, since you have jdbc working, I'm not sure if that is a viable solution or easy to test using CR.  Otherwise, another workaround may be to create a view of that table using a unique name and report off of the view.

Maybe you are looking for

  • SSO to Oracle Forms 6.0 and Oracle Reports 6.0

    Hi, Could somebody please explain how I should implement the SSO so that I can log on a forms application? Should I use external partner app. ?? How can I parse the right parameters to the forms server ?? thanks, Jerome

  • Can't get SQL 2008 Express installed

    Hope some one can help me. I am trying to install 2008 Express version and I constantly get the following error. I have tried pretty much all flavors of express and get the same thing. I uninstalled several time and reinstall but keep getting the sam

  • Page Numbering in Pages 5.5.2!

    I have created a booklet in Pages 5.5.2. I have made a footer. Inside the footer I have inserted a picture and added numbering - these both automatically run throughout the 56 page document. In OLD pages you could ask under the document inspector to

  • .mts files out of sync audio when importing in Premiere Pro CC

    When I import .mts files from my nxcam in Premiere Pro CC, the audio of the clips in not in sync. Can anybody help me with this issue? Thank you!

  • Excel to Internal Table Issue

    Hi Experts,   Row   Column   Value   1   0001   Prem(First Name )   1   0002   Raj(Middle name )   1   0003   Kaushik(Last name   2   0001   Naresh I have the above data in excel file  and my internal table like as follows Data : begin of  it_itab oc