BW in 64bits with 32bits

Dear Gurus!!!
I would like to know if I can work my landscapes of BW with:
Data Base Server Production 64bits
Application Server Production 32bits
Development Server 32bits.
Best Regards
Luis

OOOOOOOO, thats a good one.
SAP recommend you use 64bit unicode for all new systems. Yes it will work. for example you can run the DB on 64bit AIX with 32bit windows App Servers sat in from of it.
The only difference is the kernel, ie the SAP exes.
The 32bit DB client will be required on the 32bit App Servers.
Can i ask why you want to mix?

Similar Messages

  • Safely installing 64bit kernel with 32bit userland

    I'm happily running a 64bit kernel with 32bit userland, but I was wondering whether there is any way to let pacman allow me to install the 64bit kernel (manually downloaded) without me needing to edit pacman.conf. I sometimes forget to set the arch to i686 again causing me to install 64bit packages.
    If there is no such option, I'll script something for myself, but I wanted to be sure I didn't miss something (maybe an undocumented option?).

    I have the Architecture line commented out of my pacman.conf, but that is because I am too lazy to upgrade the kernel using --arch.  That and I use "i686" in my mirror url and am fairly sure I will never change it to x86_64 by accident...
    Anyway, these are the changes I made to /etc/inittab.  Just added linux32 in lots of places.
    # -8 options fixes umlauts problem on login
    c1:2345:respawn:linux32 /sbin/agetty -8 38400 tty1 linux
    c2:2345:respawn:linux32 /sbin/agetty -8 38400 tty2 linux
    c3:2345:respawn:linux32 /sbin/agetty -8 38400 tty3 linux
    c4:2345:respawn:linux32 /sbin/agetty -8 38400 tty4 linux
    c5:2345:respawn:linux32 /sbin/agetty -8 38400 tty5 linux
    c6:2345:respawn:linux32 /sbin/agetty -8 38400 tty6 linux
    # Hypervisor Virtual Console for Xen and KVM
    #h0:2345:respawn:/sbin/agetty -8 38400 hvc0 linux
    ca::ctrlaltdel:/sbin/shutdown -t3 -r now
    # Example lines for starting a login manager
    #x:5:respawn:/usr/bin/xdm -nodaemon
    #x:5:respawn:/usr/sbin/gdm -nodaemon
    #x:5:respawn:/usr/bin/kdm -nodaemon
    #x:5:respawn:linux32 /usr/bin/slim >& /dev/null
    x:5:respawn:linux32 /usr/sbin/lxdm >& /dev/null
    Do that, and you will never know that you are running an x86_64 kernel and can keep Architecture=auto if you wish.

  • Hey, I'm doing some cross browser testing and i want to know Is there any difference between the behavior of Firefox in an operating system 64bit & operating system with 32bit. (like windows7/windows vista...)

    ''duplicate of https://support.mozilla.com/en-US/questions/905881''
    Hey, I'm doing some cross browser testing and i want to know Is there any difference between the behavior of Firefox in an operating system 64bit & operating system with 32bit. (like windows7/windows vista...)

    Hi Kossa,
    You can also check if the issue occurs in
    Clean Boot. If the issue disappears in the Clean Boot environment, you can continue to narrow down which entry is causing the issue.
    Besides, uninstall it and re-download
    a fresh copy of FireFox to check the result. If the issue still exists, create a new user account to see if it occurs.
    If the issue persists, you can contact Mozilla Support directly and use Internet Explorer (IE) during the time.
    J
    Please Note: The third-party product discussed here is manufactured by a company that is independent of Microsoft. We make no warranty, implied or otherwise,
    regarding this product's performance or reliability.
    Regards,
    Linda

  • Hey, I'm doing some cross browser testing and i want to know Is there any difference between the behavior of Firefox in an operating system 64bit & operating system with 32bit. (like windows7/windows vista...) Thanks,

    Hey, I'm doing some cross browser testing and i want to know Is there any difference between the behavior of Firefox in an operating system 64bit & operating system with 32bit. (like windows7/windows vista...) Thanks,

    Hi O_H_I_O,
    Have you got an error code ?
    Considering it is a brand new machine ,please update the machines .To get a better performance of the machines ,we should always keep it up to date .
    There is a possibility that the DVD/CD-ROm drives driver is old or has corrupted .Please open the device manager , update or reinstall the driver to have a check.
    Apart from this ,we can run the built-in tool to a diagnostic :
    Control Panel\All Control Panel Items\Troubleshooting\All Categories\Hardware and Devices
    We also can run the following fixit tool to have a check.
    Fix problems with CD or DVD drives that can’t read or write media
    http://support.microsoft.com/mats/cd_dvd_drive_problems
    Best regards

  • 64bit kernel with 32bit userspace + pacman integration

    There have been quite some questions about this topic. Sometimes leading even leading to frustration.
    Luckily, a nice writeup was made here with a nice addition to integrate this nicely here.
    Since there is no 32bit PAE kernel distributed by ArchLinux, using a 64bit kernel to enable NX is the only option. But since it only has 1G of memory, I do not wish to install a 64bit userspace + 32bit multilib.
    However, the *exact* steps have been quite a guess (and there is no wiki). That is why I'm writing this down.
    Let's start with the main configuration: pacman.conf
    We need to comment out the Architecture stanza. It's funky. Why? Because it actually has two unrelated purposes:
    As a documented feature, it provides protection against installing incorrect packages from another architecture
    The undocumented feature is the fact that it's literal value is used to replace '$arch' variables in repo URL's
    #Architecture = auto
    Syncing your local repo's just broke as '$arch' is no longer defined (try it now). I ditched /etc/pacman.d/mirrorlist and did this with my remote repo URL's:
    # custom repo for 64bit kernel
    [x86_64-kernel]
    Server = file:///home/$user/x86_64-kernel/
    [core]
    Server = http://ftp.nluug.nl/pub/os/Linux/distr/archlinux/core/os/i686
    [extra]
    Server = http://ftp.nluug.nl/pub/os/Linux/distr/archlinux/extra/os/i686
    [community]
    Server = http://ftp.nluug.nl/pub/os/Linux/distr/archlinux/community/os/i686
    Notice the new custom repo at the top of the file. Adapt your pacman.conf to contain this custom repo as well. Make sure you place it before the [core] repo or whatever other repo is providing your current kernel. The order matters.
    Furthermore, I rewrote the configuration file to not depend on variable substitution. One could argue that substituting $repo was unnecessary, but that does not really matter.
    Second, we setup the repository as a normal user. This can be done by a regular user in a safe way since the packages are all signed. So tampering with packages will not work. You could even dedicate a cron script with a dedicated user to this purpose (which is overkill).
    mkdir /home/$user/x86_64-kernel/
    Third, we use a small script to handle this custom repo. We place it at /home/$user/x86_64-kernel.sh . Subsitute the variable R_REPO with your favorite ArchLinux mirror. Make sure this URL points to a 64bit core repository.
    #!/bin/bash
    set -e
    set -o pipefail
    L_REPO=/home/$user/x86_64-kernel/
    R_REPO=http://ftp.nluug.nl/pub/os/Linux/distr/archlinux/core/os/x86_64/
    cd "$L_REPO"
    wget -nv "$R_REPO"/core.db -O core.db
    DESC=$(tar -tf core.db | grep '^linux-[0-9.-]*/desc$' | tail -n1)
    KERNELPKG=$(tar -xf core.db "$DESC" -O | grep -A1 '^%FILENAME%$' | tail -n1)
    if ! [[ -f "$KERNELPKG" ]]; then
    wget -nv "$R_REPO"/"$KERNELPKG"
    wget -nv "$R_REPO"/"$KERNELPKG".sig
    repo-add -q x86_64-kernel.db.tar.gz "$KERNELPKG"
    fi
    Now we are in fact done with the configuration. Substiture $user for your current user in all the sections and do the following:
    # create repo, this script also updates it when newer 64bit kernels arrive
    user $ bash /home/$user/x86_64-kernel.sh
    # update pacman's database
    root # pacman -Syy
    # install 64bit kernel
    root # pacman -S linux
    Pacman will be able to update this kernel as long as you run x86_64-kernel.sh every once in a while. I put it in XFCE session startup to run at each session login. You could do this with cron as well.
    I tested what hapenned if something went wrong with this repo. Pacman handles this very nicely actually. If you delete the repository, it will complain but not immediatly install the 32bit kernel given you have a 64bit already installed with this repo.
    A final note: If you build a lot of packages you could run into trouble. Someone in the forums made a good suggestion about that here -> ("init=linux32 /usr/lib/systemd/..."). This is a nice system-wide way to trick your buildsystem into believing it's a 32bit machine. This is sometimes required. I don't use as I don't have a problem with it. But keep this in mind.
    EDIT: Fixed update script to overwrite core.db and not create new ones like core.db.n .
    Last edited by Rexilion (2014-02-01 15:41:29)

    That is nice. Pity I did not know about this earlier. However, my method allows me to stick with the official packages. Thanks though!

  • Windows 7 64bit with ODBC 11.2.0.1.0 - Exception: System.OverflowException

    Hello,
    Please help. I developed an interface between a CAD and Oracle 10g 32bit on Windows Server 2003. I have no problems with the using of the ODBC driver (Instant Client Package - ODBC (instantclient-odbc-win-x86-64-10.2.0.3.0.zip) on Windows XP 32bit and Windows XP 64bit.
    If I try to use 64bit ODBC driver (Instant Client Package - ODBC (instantclient-odbc-win-x86-64-11.2.0.1.0.zip) on Windows 7 64bit with the Oracle DB 10g 32bit on Windows Server 2003, I receive the following message after the line with OraRead = OraComm.ExecuteReader:
    Exception: System.OverflowException: Die arithmetische Operation hat einen Überlauf verursacht.
    bei System.Data.Odbc.OdbcStatementHandle.RowCount(SQLLEN& rowCount)
    bei System.Data.Odbc.OdbcDataReader.GetRowCount()
    bei System.Data.Odbc.OdbcDataReader.FirstResult()
    bei System.Data.Odbc.OdbcCommand.ExecuteReaderObject(CommandBehavior behavior, String method, Boolean needReader, Object[] methodArguments, SQL_API odbcApiMethod)
    bei System.Data.Odbc.OdbcCommand.ExecuteReaderObject(CommandBehavior behavior, String method, Boolean needReader)
    bei System.Data.Odbc.OdbcCommand.ExecuteReader(CommandBehavior behavior)
    The code I use is very simple:
    Dim sConnection = "DRIVER=Oracle in instantclient_11_2;UID=xx;DBQ=xx;SERVER=xx;Pwd=xx"
    Dim strSQL As String
    Dim OraConn As New System.Data.Odbc.OdbcConnection
    Dim OraComm As New System.Data.Odbc.OdbcCommand
    Dim OraRead As System.Data.Odbc.OdbcDataReader
    Try
         OraConn.ConnectionString = sConnection
         OraConn.Open()
         strSQL = "SELECT * FROM TAB"
    OraComm.CommandText = strSQL
    OraComm.Connection = OraConn
    OraRead = OraComm.ExecuteReader
    If OraRead.HasRows Then
         OraRead.Read()
    The test connection from the ODBC admin tool return ok.
    Any help will be apricable.
    Regards,
    Hristo

    I'm having the same problem. Did you ever find a solution for this?
    For reference, my question is located over here: OverFlowException on Oracle ODBC RowCount

  • Migration question - 64bit to 32bit

    Hello All,
    I am currently running a 64 bit 11.1.0.7 db on redhat 5.4 OS. I created a 32bit 11.1.0.7 on Redhat 5.4 32 bit, same file structure as
    my 64 bit host. I did a cold copy of my .dbf files from the 64 bit to the 32 bit host, db starts all looks fine. However, when I attempt to drop
    a user or object (any user) on my newly built 32 bit db/host, the following message appears:
    ERROR at line 1:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-06553: PLS-801: internal error [56319]
    Since I went from a 64 bit to 32 bit, is this causing me an issue? The only files that were copied to the 32 bit host from the 64 bit host were the .dbf files,
    and they initially came from a 32 bot host a while back. Do I need to do anything possibly in Migrate mode?
    Thanks in advance for your help..
    RB
    Edited by: ronthe11gdba on Dec 11, 2009 4:32 PM
    Edited by: ronthe11gdba on Dec 11, 2009 4:36 PM

    As noted above, you simply cannot copy a database created by 64bit software and expect it to work with 32bit software. Pl see MOS Doc 62290.1 (Changing between 32-bit and 64-bit Word Sizes)
    HTH
    Srini

  • What are the advantages/disadvantages of using PS/CS5 in 64bit over 32bit please?

    What are the advantages/disadvantages of using PS/CS5 in 64bit over 32bit please?

    From a practical perspective, besides the 64 bit version being a bit faster at just about everything, limitations on document size are lifted in the 64 bit version.  Essentially, how much can do is limited only by how much RAM you have installed in your system.  You can do things like have larger documents, deeper history, etc. and have it all work quickly.
    On the other hand, many 3rd party plug-ins, especially older ones, only provide 32 bit versions, which will only run in 32 bit Photoshop.
    Both 32 and 64 bit versions are installed by default.  It's important to note that most of the preferences are separate between the two, so you can have two slightly different setups that might help with specialty operations you might need.  This gets pretty subtle, but for example I keep the 32 bit version configured with only 1 cache level, so all previews of high bit depth images are always composited in high bit depth.  This aids me with some aspects of astroimage processing.  It's slower, but more accurate.  By contrast I have more cache levels configured for my 64 bit version, so that's faster for general photography work.
    -Noel

  • Help with OBDC connection in Windows 7 64bit with Office 2010 32 bit.

    Hi,
    Many moons ago I wrote an application in Java that configured XP machines after they were sysprep’d and deployed. I am currently migrating all our workstations to Windows 7, and was checking my application still worked and queries the correct registry keys etc.
    As it turns out however I don't even get going as I believe the application is unable to connect to the ODBC Microsoft Access Driver in Windows 7 64bit with Office 2010 32 bit. Below is the code I have always used and no longer works. I am hopeful that someone can tell me how to modify the command to work on Windows 7 64bit. If I browse to C:\Windows\SysWow64\OBDCad32.exe all the drivers I need are there I think, but if I open OBDC from Administrative Tools the Drivers tab is empty but for SQL. Anyway I will shut up and below is the code I used to use:
         public IOMakeConnection()
         dm = new DisplayMessage();
         ioed = new IOEncryptDecrypt();
         url = "jdbc:odbc:DRIVER=Microsoft Access Driver (*.mdb);DBQ=" + getPath() + "Config.mdb;Uid=admin;Pwd=password";
              try
              Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
              connection = DriverManager.getConnection( url );
              catch( Exception e )
              system.out.println( "" + e );
              errorObtainingPath();
    The exception is always thrown as my little app that requests the database path always loads.
    Thanks in advance,
    Cheers Kris

    Hello again,
    Sorry for the delayed response, I have been out of the office for a few days.
    I have solved the issue, and as stated above the issue was the way I was launching the application. Below is a summary of the issue and the resolution.
    My problem was that in Windows 64bit if you click on ODBC in Administrative Tools the Drivers Tab only includes an SQL Driver, and my code reference a Microsoft Access Driver to query the database. That said however if you browse to C:\Windows\SysWow64 and open obdcab32.exe it opens the 32bit version of ODBC, and the Microsoft Access Driver (*.mdb) is listed.
    Basically what I need to do therefore is get my code to access the “32bit” version of ODBC in a Windows 7 64bit environment, so my application was able to read the necessary information from the Access Database associated with it.
    I understand that this is not a coding issue directly, but assuming people still use Java to open an Access Database on a Windows 7 64bit OS, this may be of help.
    So previously I ran the following command, from the “Target” box in a shortcut to execute the java code:
    cmd.exe /C SET CLASSPATH=C:\SCAConfigurationUtility && CD\SCAConfigurationUtility && JAVAW SCAConfigurationUtility
    Windows 7 64bit, defaults to the 64bit version of Java, and just seems to plain fail if you only have the 32bit version installed. To overcome this I forced the java executable that I was using to be the 32bit version, and used the system switches available in Java 7 (-cp does not appear to be available in Java 6)
    So my Shortcut now has this in the “Target” box:
    java.exe -d32 -cp C:\SCAConfigurationUtility SCAConfigurationUtility
    And this in the “Start in” box:
    "C:\Program Files (x86)\Java\jre7\bin"
    Or by using the target below the same shortcut works in XP
    "C:\Program Files\Java\jre7\bin"
    Thanks for all the help,
    Regards Kris.

  • Install PhotoCD Plugin under Photoshop CS4 (64bit and 32bit) under Windows 7.

    Install PhotoCD Plugin under Photoshop CS4 (64bit and 32bit) under Windows 7.

    And that question is supposed to mean what....? Sorry, you need to explain what you are having difficulty with, not just spit out random text fragments.
    Mylenium

  • Java download 64bit vs 32bit

    Hi, I am reading http://java.com/en/download/faq/java_win64bit.xml. I just installed windows 7 64-bit. I checked I have default IE8 (no 64bit edition). I never knew browser will be a factor for java version, so I was thinking of downloading 64-bit JDK, but by reading it, should I really stay 32bit JDK? My final goal is to install weblogic portal. Weblogic portal has 32 bit download for most OS including eclipse already. It only has one generic binary for 64 bit for all OS, so I need to download JDK, eclipse separately. So before I go too far, I need to decide 64bit or 32bit. Thanks!

    Your windows 64 bit has also the 64 bit IE. You can use IE 32 or 64 as you please, although by default, the 32 bit browser is launched. I guess the reason is that, for now, there are more plug-ins for it. Your best bet is to install both 32 and 64 bit Java. It works for me fine in the browser and outside. Of course, when you type java in a command prompt, Windows has to know which one to use, so just play with your path.

  • Home Sharing will not work with my Windows 8 64bit with new itunes.  All of my Apple TVs will not see my library and my iphones will not function with the "Remote" App.  They all did before.  Only thing that has changed is new PC/itunes.  Any Ideas?

    Installed a new Windows PC on my home network.  PC is Windows 8/64bit. with latest version of itunes 11.1.4.62 for 64bit.  My itunes works, but I can not get Home Sharing to function now.  None of my Apple TV's can see my computer library and prompt me to turn it on.  All of my iphones, pods, pad, can not use the "Remote" app.  When you prompt your phone in Remote App to "add library" and you get the code....iTunes doesnt give you the remote screen where you can enter the code.  I have reloaded iTunes, reset my router, updated all devices.  You can turn on "Home Sharing" on iTunes, but then it closes and doesnt seem to link my devices like it use to.  Also, when the new version of iTunes is up on my PC, you can see the other devices to AirPlay to like you could before.  However, I can send items from my iphone to stream to an Apple TV, I just cant link them all like I could before and control the music playing to multiple Apple TV.  Growing fustrated.  Any ideas, would be helpful.

    Cunning1_
    You are a legend!!  I have spent countless hours uninstalling, reinstalling itunes, playing with firewall settings, reading articles on this problem!!  I only have to un-sync my iphone 5 and then the airplay icon magically appeared!!!  Maybe I have too many devices syncing via wi-fi, or maybe it is the Iphone syncing??
    Whatever - one step and now I can enjoy my music through my house again!
    Thank you, Thank you, Thank you 

  • Error installing BI Publisher Desktop in Windows 7 64bits with Office 2010

    Hello
    I'm having a problem when trying to install the latest version of BI Publisher Desktop on my computer (Windows 7-64bits with Office 2010).
    Almost at the end of the installation it appears a message box saying "Template Builder installer failed: Cannot run installer while Mocrosoft Word is running". Now, i made sure all Office apps are closed, as well as IE windows. What i've noticed is that right before this error appears, a process for WINWORD.exe is open - by the installer.
    How can i fix this?
    Many thanks for your replies

    I've tried runnig the installer with Windows XP SP3 compatibility and it worked.

  • Windows 7 Pro - 64bit with P43-C51

    Hello there,
    I am trying to install Windows 7 Pro - 64bit with my P43-C51. But after clicking: "Install" an error-message occurs saying: "A required CD/DVD drive device driver is missing. If you have a driver floppy disk CD, DVD, or USB flash drive please insert it now.". I provided the Drivers of my Board / DVD-Rom and selected them within the setup, but the error always occurs. I disconnected all devices and booted from USB to find out which one is causing the error, but after all, I think it is the mainboard. Anyone has some advices on how to setup Win7Pro 64bit with P43-C51?
    System Specs:
    MSI P43-C51 (Bios V5.7)
    Intel Q8800
    SATA 500GB Drive
    Bluray SH-B0830 Samsung Drive
    Nvidia Geforce 580

    https://forum-en.msi.com/index.php?topic=142701.msg1065170#msg1065170

  • HT4046 why i can't enable the voiceOver function with my new labtop(window 7 64bits) with my ipod shuffle?

    why i can't enable the voiceOver function with my new labtop(window 7 64bits) with my ipod shuffle?

    even try to update the latest itunes but still can't fix it
    is it window's problem?
    it work fine in my orginal desktop with window XP
    PS: ipod shuffle 3rd

Maybe you are looking for

  • Will not power on nor boot up - Presario CQ5320F, M2N68-LA (Narra6), 250W, Window 7 64-bit

    Boot up problem - Compaq Presario CQ5320F Desktop PC, M2N68-LA (Narra6) mobo, 250W psu  Window 7 64-bit ok here it is: Computer used to shut off intermittently After pressing the power switch a few times or holding it for a bout 5 seconds it would co

  • Acrobat 8 Pro crashes when customizing toolbars

    Good day, i am using Adobe Acrobat 8.1.2 on Mac OS 10.4.11, and am having some trouble trying to customize my toolbars. i can easily choose which toolbars i want to show up docked into each document, but when i go to "Customize Toolbars" under the to

  • Acrobat 7 Pro Installation Failure

    When trying to install Acrobat 7 Professional I get a message saying the installation failed. In the console, I get the following error: Adobe SelfHealing Error: shEPICPersWriteFailed in line 5005 of file SelfHealer.cpp. Anyone have any suggestions?

  • Weblogic cluster software load balancer

    Hi, We are currently using Weblogic domain as a Proxy Plug-In for High Availability test as it's explained in this blog http://andrejusb.blogspot.com/2009/04/weblogic-load-balancing-for-oracle-adf.html. Its working fine for POC project but what softw

  • BEX Analyzer - Query Crashes Problem

    Dear all, I have consumption of 5 million customers. What i need to do is to group consumptions depend on groups: Lets say 0-100 USD 100-1000USD  1000-5000 USD in bex analyzer, my query works fine with less data, however when i run with 5 million cus