Repositories for 32bit BO/DS  with 64bit SQL supported?

We are planning to move our CMS, Audit and DS repositories of 32-bit Business Objects Enterprise XI 3.1 SP3 and Data Services 3.2 to Microsoft SQL Server 2008 R2 (64-bit) database. I was looking at the respective Supported Platform documents for both and it does not explicitly mention 64-bit or 32-bit for any version of database. Do we have to understand that even though it is not stated explicitly as 64-bit, it is inclusive of both?
Also it says that MS SQL Server 2008 is supported but does not indicate whether 2008 "R2" is supported. Can we deduce that since MS SQL Server 2008 is supported that 2008 R2 is also supported?
Any insights, suggestions, recommendations greatly appreciated.
Thanks in Advance

Hi,
for the Application such as BOE or DS it doesnt matter if the underlaying RDBMS is 32Bit or 64Bit. When you move to a 64Bit RDBMS you have to continue to use the 32Bit Middleware for BOE and DS.
I`m pretty sure that R2 is supported. Check the PAM for the latest release of the products.
Regards
-Seb.

Similar Messages

  • When will come the new raw version update for Adobe Lightroom 4 with Nikon D750 support?

    Hello Adobe,
    When will come the new raw version update for Adobe Lightroom 4 with Nikon D750 support?
    Best regards
    Frank

    There won't be an update for Lightroom 4. The only way you can work with your D750 raw files is to use the free standalone DNG converter to create DNG copies. If you want to be able to work on the NEF files then you will have to upgrade to Lightroom 5. Lightroom does not use the Camera Raw plug-in. Everything is part of the Lightroom program. If you want to stay current with Lightroom then you need to follow the update/upgrade path. That means purchasing each new major version of Lightroom or subscribing to the creative cloud plan.

  • Can anybody send me ebook for 'oracle 10g programming with pl/sql'

    Hi
    can any one send me ebook for oracle's 'oracle 10g programming with pl/sql', 'java'
    My mail id is: [email protected]
    Thanking in advance.

    I hope it can guide you to get ebooks for your request.
    http://www.oracle.com/technology/tech/pl_sql/index.html
    Cheers
    Vigneswaran

  • Looking for suggestion/idea/help WITH T-SQL

    Hi all,
    The scenario I have is a person can have one or more charges on his/her case. 
    One charge could be adjudicated as GUILTY and the other charge
    is DROPPED.  If this is the scenario, I would like to assign GUILTY Adjudication to this case.
    OR
    One charge could be WITHHELD and the other charge is DROPPED. 
    If this is the scenario, I would like to assign WITHHELD to this case.
    Under Adjudication column, I would like to see GUILTY for case number 12345 and WITHHELD for case 98765
    Sample data:
    Case Number                Charge                       Charge
                            Adjudication
    Disposition
    ==========           ======                    ===========         
    ============
    12345                        DUI                            
    GUILTY
    12345                        Driving w/o license       DROPPED
    98765                        DUI                            
    WITHHELD  
    98765                        Driving w/o license       DROPPED
    Below is the query that returned the above sample Charge Disposition.  I am thinking of using CASE expression to determine Adjudication but not sure.
    Thank you for everyone's help!
    declare @Begindate datetime--
    declare @Enddate datetime
    set @begindate = '05/01/2014'
    set @Enddate = '05/31/2014'
    SELECT
    (CASE
    WHEN cc1.ProsecutorFinalAction IN ('L','O','R') AND
    (cc1.ProsecutorFinalDecisionDate >= @BeginDate) AND
    (cc1.ProsecutorFinalDecisionDate < DateAdd(d, 1, @EndDate))
    THEN pfa1.Description
    WHEN (cc1.CourtDecisionDate >= @BeginDate)AND
    (cc1.CourtDecisionDate < DateAdd(d, 1, @EndDate))
    THEN dbo.fnGetLookupDescription(cc1.CourtActionTaken,'CourtActionTaken')
    END)
    FROM tblCase c1 with(nolock)
    INNER JOIN tblCaseCharge cc1 with(nolock)
    ON c1.caseid = cc1.caseid
    LEFT OUTER JOIN tblProsecutorFinalAction pfa1 WITH(NOLOCK)
    ON cc1.ProsecutorFinalAction = pfa1.ProsecutorCode
    WHERE c1.CaseID = @CaseID

    If you want to return just one row for each case, then:
    ;with cte as (SELECT *, ROW_NUMBER() over (PARTITION BY case_number
    ORDER BY case [Charge Disposition] WHEN 'GUILTY' then 1 WHEN 'WITHHELD' ELSE 3 END) AS RN
    FROM CasesInfo)
    SELECT * FROM cte WHERE Rn = 1 -- will select rows with GUILTY status or WITHHELD status
    and not dropped status
    For every expert, there is an equal and opposite expert. - Becker's Law
    My blog
    My TechNet articles

  • VBios request for R7850-1GD5/OC with UEFI GOP. support

    Hi!
    I'm looking for the newest vbios with UEFI GOP.
    S/N: 602-V273-22SB1302107672
    vbios copy (gpu-z 0.7.2): **https://docs.google.com/file/d/0B04_dmbJCTcHTWRPaUpPaWd6RWc/edit?usp=sharing**

    Even at **http://service.msicomputer.com/msi_user/ts_form.aspx** I can't find my card...
    Does it mean that I won't be able to update my card?   
    here is photo of name on the box **http://sdrv.ms/13YV7fU**
    P.S. sorry for my English

  • "Invalid printer specified" for 32bit Windows Service in 64bit Server

    Hi All,
    I'm having some issues with crystal reports.
    My development environment:
    Visual Studio 2008, 32bit Windows XP
    Running environment:
    Windows Server 2003 Service Pack 2 64 bit
    Crystal Reports Basic Runtime for Visual Studio 2008 (x86)
    I've created two applications: one is console application and one is windows service. Both application run same codes to print crystal reports to printers and run at 32 bit. I can have multiple instance of console application running without any issues. When I run the windows service version, the first time the service works fine. But after I restarted the windows server, the crystal report throw Sysstem.Runtime.InteropServices.COMException.
    The detail of the exception is:
    System.Runtime.InteropServices.COMException (0x80000201):
    Invalid printer specified.
       at CrystalDecisions.ReportAppServer.Controllers.PrintOutputControllerClass.ModifyPrinterName(String newVal)
       at CrystalDecisions.CrystalReports.Engine.PrintOptions.set_PrinterName(String value)
       at Company.PrintReport(ReportClass report, String printerName)
    Both console application and windows service run at 32 bits. The user runs the service is domain controller who has admin permission. And the same problem happened on an web application hosted on IIS of the same server.
    What I've done so far:
    1. Set the printer option in the report to no printer
    2. Try install the crystal report x64
    3. For the windows service build for x86.
    Please some one help me in this.
    Cheers

    That is a rather strange issue.
    Make sure you are killing the report object once you're doen with it. E.G;
    Dim report as New ReportDocument
    Protected Sub Page_load()
    End Sub
    Private Page_Unload()
    report.close()
    report.dispose()
    GC.Collect
    End Sub
    //C# (on form open):
    private void WebForm1_Init(object sender, System.EventArgs e)
        if (boReportDocument != null)
            boReportDocument.Close();
            boReportDocument.Dispose();
            GC.Collect();
    // C# on form close
    private void Page_Unload(object sender, EventArgs e)
            if (boReportDocument != null)
            { boReportDocument.Close();
                boReportDocument.Dispose();
                GC.Collect();
    If closing and disposing does not help, is htis happening on your dev computer or after you move that app to another server?

  • No 11x17 (tabloid) paper option for HP 7500 E910 with 64bit driver?

    I've been using my HP 7500 E910 for about two years now with Linux Mint and WinXP VMs with virtually no issues.  I recently started using Windows7 64bit VMs and just installed the Basic driver for the HP 7500 (64bit version), but the paper size options don't include 11x17/tabloid.  I downloaded the driver from HP's site, it was called OJ7500_E910_Basicx64_1315.
    Anybody know how to fix this?
    Thanks,
    -Brad

    Hi BAJ,
    I suspect you do not have the 11x17/tabloid option because you are using the basic driver. The Basic Feature software solution is a driver-only software solution intended for users who want a basic print driver to use with their HP device. This software installation can be used on PC's which do not meet the minimum system requirements necessary to install the Full Featured software solution.
    I would suggest HP Officejet Full Feature Software and Driver.
    Hope this helps, please let me know if you require further assistance.
    Please click the Thumbs up icon below to thank me for responding.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Sunshyn2005 - I work on behalf of HP

  • Power Query for Excel - Need Help with Oracle SQL Syntax

    Hello everyone,
    I am new to Power Query and am not able to figure this out.  I am trying to pull in data into my Excel spreadsheet using a specific Oracle SQL query.  While in query editor, how do I take the Oracle.Database function and add my SQL statement? 
    I already know what I want, I don't want it to download all the table names.  According to the help page, I should be able to do this but it does not provide a syntax example
    Also, I don't understand what "optional options as nullable record" means.
    Below is what function and arguments the help page notes.  How do I use this?
    Oracle.Database(server as text, optional options as nullable record) as table
    Any help is greatly appreciated.
    Thank you,
    Jessica

    When I try this, I get an error 
    DataSource.Error: Oracle: Sql.Database does not support the query option 'Query' with value '"Select * from Owner.View_Name"'. Details: null
    I'm trying to download oracle data from a view into power query - Power Query navigator does not list th eviews from my source, it lists only the tables. When I try write sql statements, it throws me the above
    error. This is what I tried
     Oracle.Database("Source/Service",[Query="Select * from Owner.View_Name"])
    Any ideas how to fix this? 

  • SSL for Apex 4.0 with PL/SQL Embedded Gateway

    Hello
    I'm trying to implement ssl to already installed apex 4.0. Os version: Red Hat Enterprise Linux Server release 5.5 (Tikanga)
    Oracle Database 11.2.0.3
    I used the following note to configure ssl for apex:
    http://wiki.shellprompt.net/bin/view/Apex/SSLandAPEXxdbHttp?TWIKISID=9ad53fc01edafaa65304ca32191cf00a
    1. used function dbms_xdb.setlistenerendpoint (2,'TESTHOST',2484,2) to configure xdbconfig.xml.
    2. listener.ora:
    SID_LIST_ORCL =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = ORCL)
    (ORACLE_HOME = /opt/oracle/db/11.2.0.3)
    SSL_CLIENT_AUTHENTICATION = FALSE
    WALLET_LOCATION =
    (SOURCE =
    (METHOD = FILE)
    (METHOD_DATA =
    (DIRECTORY = /opt/oracle/db/11.2.0.3/own/wallet/oracle)
    ORCL =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = testhost.testdomain.com)(PORT = 1521))
    ORCL_SSL =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCPS)(HOST = testhost.testdomain.com)(PORT = 2484))
    ADR_BASE_ORCL_SSL = /opt/oracle/db
    3. sqlnet.ora:
    NAMES.DIRECTORY_PATH= (TNSNAMES, EZCONNECT)
    WALLET_LOCATION =
    (SOURCE =
    (METHOD = FILE)
    (METHOD_DATA =
    (DIRECTORY = /opt/oracle/db/11.2.0.3/own/wallet/oracle)
    ADR_BASE = /opt/oracle/db
    SET_CLIENT_AUTHENTICATION = FALSE
    # lsnrctl status orcl
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=testhost.testdomain.com)(PORT=1521)))
    STATUS of the LISTENER
    Alias orcl
    Version TNSLSNR for Linux: Version 11.2.0.3.0 - Production
    Start Date 03-FEB-2013 12:53:03
    Uptime 0 days 0 hr. 26 min. 56 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Listener Parameter File /opt/oracle/db/11.2.0.3/network/admin/listener.ora
    Listener Log File /opt/oracle/db/11.2.0.3/log/diag/tnslsnr/testhost/orcl/alert/log.xml
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=testhost.testdomain.com)(PORT=1521)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=testhost.testdomain.com)(PORT=8080))(Presentation=HTTP)(Session=RAW))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcps)(HOST=testhost.testdomain.com)(PORT=2484))(Presentation=HTTP)(Session=RAW))
    Services Summary...
    Service "ORCL" has 1 instance(s).
    Instance "ORCL", status UNKNOWN, has 1 handler(s) for this service...
    Service "orcl.testdomain.com" has 1 instance(s).
    Instance "orcl", status READY, has 1 handler(s) for this service...
    Service "orclXDB.testdomain.com" has 1 instance(s).
    Instance "orcl", status READY, has 1 handler(s) for this service...
    The command completed successfully
    # cat /etc/hosts
    127.0.0.1 testhost.testdomain.com testhost localhost
    Common usage of Apex via http://testhost:8080/apex is available but
    https://testhost:2484/apex shows
    "Firefox can't establish a connection to the server at testhost.testdomain.com:2484." error
    Please any ideas.
    Edited by: 985770 on Feb 3, 2013 2:33 AM

    This should help you find them:
    http://daust.blogspot.com/2006/03/where-are-images-of-application.html

  • 32bit native dll and 64bit jdk

    is it possible to use 32bit native dll with 64bit jdk5 and 64bit win2003?
    i am trying to use mlib_jai.dll and i think i copied it ot the right place, still i get message that it isn't available. my only gues is that it is related to 32/64 bit isuses, as mlib_jai.dll is comppiled with 32bit compiler. it works on 32bit windows and jdk1.4.
    any ideas?
    dario

    Hi,
    Yes you can run your 32 and 64-bit applications side by side. You will need to install both the 32 and 64-bit oracle client as well as the required data access driver for each application in separate oracle homes. The only gotcha is if these applications are running as a hosted applications within IIS, you will need to be sure you are on a version of IIS that allows you to configure separate application pools for 32 and 64-bit worker processes. i.e IIS 7.0. IIS 6.0 allows you to configure worker processes for 32-bit on x64, but it has to be one or the other. You cannot use both at the same time. See the following: http://support.microsoft.com/kb/894435. If you are running IIS 7 then you can configure separate application pools for the 32 and 64-bit apps. If you are running IIS 7 then its easy to configure the application pool for your 32-bit hosted app to enable 32-bit support by setting a property of the app pool.
    HTH
    Jenny

  • 'Missing select' error for update statement using WITH clause

    Hi,
    I am getting the below error for update statement using WITH clause
    SQL Error: ORA-00928: missing SELECT keyword
      UPDATE A
      set A.col1 = 'val1'
         where
      A.col2 IN (
      WITH D AS
      SELECT col2 FROM
      (SELECT col2, MIN(datecol) col3 FROM DS
      WHERE <conditions>
        GROUP BY PATIENT) D2
      WHERE
      <conditions on A.col4 and D2.col3>

    Hi,
    The format of a query using WITH is:
    WITH  d  AS
        SELECT  ...  -- sub_query
    SELECT  ...   -- main query
    You don't have a main query.  The keyword FROM has to come immediately after the right ')' that ends the last WITH clause sub-query.
    That explains the problem based on what you posted.  I can't tell if the real problem is in the conditions that you didn't post.
    I hope this answers your question.
    If not, post a complete test script that people can run to re-create the problem and test their ideas.  Include a little sample data (CREATE TABLE and INSERT statements, relevant columns only) for all the tables involved, and the results you want from that data.
    In the case of a DML operation (such as UPDATE) the sample data should show what the tables are like before the DML, and the results will be the contents of the changed table(s) after the DML.
    Explain, using specific examples, how you get those results from that data.
    Always say what version of Oracle you're using (e.g. 11.2.0.2.0).
    See the forum FAQ: https://forums.oracle.com/message/9362002

  • I want to Know how to use JDBC connection with postgress sql on Linux

    Hello friends R u Listen to me?
    Pls help me for making JDBC connectivity with postgress Sql On Linux by using Type 4 Driver .
    Is there is any envoirnment setting rqr then pls send me the same on my mail
    My mail is [email protected]
    varsha

    dcminter wrote:
    http://java.sun.com/docs/books/tutorial/jdbc/index.html
    and
    http://www.postgresql.org/docs/
    ;-)

  • When i try to download the new version of iTunes, I get an error message saying the download was for 32bit and I need the 64bit. How do i download 64bit?!?!

    When i try to download the new version of iTunes, I get an error message saying the download was for 32bit and I need the 64bit. How do i download 64bit?!?!

    Which I get. But clicking on that link you provided does not give you the option of choosing between 32 and 64 bit installers.
    Yeah, that was certainly a 32-bit installer file being referred to in the other message, too. (The 64-bit installer file is called iTunes64Setup.exe.)
    Just in case it's an issue with your normal browser not working properly with the system-detection equipment on the page (there's a javascript control that checks for operating system specifics, and is supposed to deliver the correct Mac or Windows installers), let's try a different web browser for the download. If you use Firefox instead of IE (or vice versa), do you get offered an iTunes64Setup.exe instead of an iTunesSetup.exe?

  • I have installed db-32bit, and installed obiee-64 in windows7 with 64bit.

    HI,
    I have installed db-32bit, and installed obiee-64 in windows7 with 64bit. while creating repository through rcu, it is populates with an error and showing my installed db is not supporting, what is the scenario to replace db11g 32 bit with 64? and is it the right way to install, please let me know and also would like to know, if i want to uninstall db do i need to uninstall rcu and obiee as well?

    Hi Satya,
    You can install OBIEE 11g 64 bit with Oracle DB 32bit. I have done this many times without any issue.
    Have a look at the following links:
    http://123obi.com/2013/04/obiee-11-1-1-7-0-installation-on-windows-7-part-1/
    http://123obi.com/2013/04/obiee-11-1-1-7-0-installation-on-windows-7-part-2/
    user10888725 wrote:
    Hi Srikanth,
    Thanks for your prompt reply, that means no need to uninstall OBIEE11g right?
    Thanks,
    Satya.
    How did you install OBIEE 11g 64bit successfully if you get an error while installing RCU?
    Please mark it Helpful/Correct, if it is
    Regards,
    Kalyan Chukkapalli
    http://123obi.com

  • Performance for join 9 custom table with native SQL ?

    Hi Expert,
    I need your opinion regarding performance to join 9 tables with native sql. Recently i have to tunning some customize extraction cost  report. This report extract about 10 million cost of material everyday.
    The current program actually, try to populate the condition data and insert into customize table and join all the table to get data using native sql.
    SELECT /*+ ordered use_hash(mst,pg,rg,ps,rs,dpg,drg,dps,drs) */
                mst.werks, ....................................
    FROM
                sapsr3.zab_info mst,
                sapsr3.zab_pc pg,
                sapsr3.zab_rc rg,
                sapsr3.zab_pc ps,
                sapsr3.zab_rc rs,
                sapsr3.zab_g_pc dpg,
                sapsr3.zab_g_rc drg,
                sapsr3.zab_s_pc dps,
                sapsr3.zab_s_rc drs
            WHERE mst.zseq_no = :p_rep_run_id
            AND mst.werks = :p_werks
            AND mst.mandt = rg.mandt(+)
            AND mst.ekorg = rg.ekorg(+)
            AND mst.lifnr = rg.lifnr(+)
            AND mst.matnr = rg.matnr(+)
            ...............................................   unitl all table (9 tables)
            AND ps.mandt = dps.mandt(+)
            AND ps.knumh = dps.knumh(+)
            AND ps.zseq_no = dps.zseq_no(+)
            AND COALESCE (dps.kbetr, drs.kbetr, dpg.kbetr, drg.kbetr) <> 0
    It seems the query ask for database to using hashed table. would that be it will burden the database ? and impacted to others sap process ?
    Please advise
    Thank You and Best Regards

    you can only argue coming from measurements and that is not the case.
    Coming from the code, I see only that you do not understand it at all, so better leave it as it is. It is not a hash table, but a hash join on these table.

Maybe you are looking for