BI Pub vs SQR

I am interested in thoughts on using BI Pub as a replacement for SQR.

BI Publisher is Oracle's strategic reporting product which is used in Oracle e-Business Suite, Peopleseoft,
Siebel and Fusion applications.
SQR seemed to be used for many different things such as running SQL jobs.
For the pure report generation BI Publisher is probably the solution easier to learn and maintain reports in.
I am part of the BI Publisher team (which by the way also includes the SQR team) so I am biased.
However, hardly any product is in every aspect superior to another - so there are some cases were SQR
will be superior. Since an SQR report is practically a program, I assume that you can do some things you
can't in BI Publisher.
I will try to get the architect of SQR to comment - he should know both products reasonably well.
He maybe biased in a different direction - but that's ok - then you get 2 sides of a coin.
Klaus

Similar Messages

  • PS gallery linked to Dreamweaver does not show up once on pub. server

    i created a photoshop gallery and linked it to my website (Dreamweaver) under construction (as im learning); it shows up fine when i preview it on browser from my computer location, however, it does not show up once on the public server. any help as to the direct problem with this link/file/coding, etc... would be greatly appreciated....
    site >>>> http://paulrosal.com/ >>>>> CLICK ON "ART"
    ******************************CHECK OUT CODING RIGHT HERE******************************
    <!-- saved from url=(0013)about:internet -->
    <html lang="en">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>gallery</title>
    <style>
    body,html {
    margin-top:0;
    margin-left:0;
    margin-right:0;
    margin-bottom:0;
    height: 100%;
    width: 100%;
    </style>
    <!-- Active Content Workaround Support File -->
    <script src="resources/AC_RunActiveContent.js" language="javascript"></script>
    <script language="JavaScript" type="text/javascript">
    function getQueryVariable(variable) {
      var query = window.location.search.substring(1);
      var vars = query.split("&");
      for (var i=0;i<vars.length;i++) {
        var pair = vars[i].split("=");
        if (pair[0] == variable) {
          return pair[1];
      return -1;
    </script>
    <script language="JavaScript" type="text/javascript">
      var startImg = getQueryVariable("startImg");
      //alert(startImg);
    </script>
    <!-- Flash Detection Script Block -->
    <script language="JavaScript" type="text/javascript">
    <!--
    // Globals
    // Major version of Flash required
    var requiredMajorVersion = 8;
    // Minor version of Flash required
    var requiredMinorVersion = 0;
    // Minor version of Flash required
    var requiredRevision = 0;
    // the version of javascript supported
    var jsVersion = 1.0;
    // -->
    </script>
    <script language="VBScript" type="text/vbscript">
    <!-- // Visual basic helper required to detect Flash Player ActiveX control version information
    Function VBGetSwfVer(i)
      on error resume next
      Dim swControl, swVersion
      swVersion = 0
      set swControl = CreateObject("ShockwaveFlash.ShockwaveFlash." + CStr(i))
      if (IsObject(swControl)) then
        swVersion = swControl.GetVariable("$version")
      end if
      VBGetSwfVer = swVersion
    End Function
    // -->
    </script>
    <script language="JavaScript1.1" type="text/javascript">
    <!-- // Detect Client Browser type
    var isIE  = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
    var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false;
    var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;
    jsVersion = 1.1;
    // JavaScript helper required to detect Flash Player PlugIn version information
    function JSGetSwfVer(i){
    // NS/Opera version >= 3 check for Flash plugin in plugin array
    if (navigator.plugins != null && navigator.plugins.length > 0) {
    if (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]) {
    var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0" : "";
                    var flashDescription = navigator.plugins["Shockwave Flash" + swVer2].description;
    descArray = flashDescription.split(" ");
    tempArrayMajor = descArray[2].split(".");
    versionMajor = tempArrayMajor[0];
    versionMinor = tempArrayMajor[1];
    if ( descArray[3] != "" ) {
    tempArrayMinor = descArray[3].split("r");
    } else {
    tempArrayMinor = descArray[4].split("r");
                    versionRevision = tempArrayMinor[1] > 0 ? tempArrayMinor[1] : 0;
                flashVer = versionMajor + "." + versionMinor + "." + versionRevision;
               } else {
    flashVer = -1;
    // MSN/WebTV 2.6 supports Flash 4
    else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1) flashVer = 4;
    // WebTV 2.5 supports Flash 3
    else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1) flashVer = 3;
    // older WebTV supports Flash 2
    else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 2;
    // Can't detect in all other cases
    else {
    flashVer = -1;
    return flashVer;
    // When called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is available
    function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision)
          reqVer = parseFloat(reqMajorVer + "." + reqRevision);
            // loop backwards through the versions until we find the newest version    
    for (i=25;i>0;i--) {    
    if (isIE && isWin && !isOpera) {
    versionStr = VBGetSwfVer(i);
    } else {
    versionStr = JSGetSwfVer(i);         
    if (versionStr == -1 ) {
    return false;
    } else if (versionStr != 0) {
    if(isIE && isWin && !isOpera) {
    tempArray         = versionStr.split(" ");
    tempString        = tempArray[1];
    versionArray      = tempString .split(",");                   
    } else {
    versionArray      = versionStr.split(".");
    versionMajor      = versionArray[0];
    versionMinor      = versionArray[1];
    versionRevision   = versionArray[2];
    versionString     = versionMajor + "." + versionRevision;   // 7.0r24 == 7.24
    versionNum        = parseFloat(versionString);
                 // is the major.revision >= requested major.revision AND the minor version >= requested minor
    if ( (versionMajor > reqMajorVer) && (versionNum >= reqVer) ) {
    return true;
    } else {
    return ((versionNum >= reqVer && versionMinor >= reqMinorVer) ? true : false );    
    // -->
    </script>
    </head>
    <body><div align="center" style="width:100%; height:100%">
    <script language="JavaScript" type="text/javascript">
    <!--
    // Version check for the Flash Player that has the ability to start Player Product Install (6.0r65)
    var hasProductInstall = DetectFlashVer(6, 0, 65);
    // Version check based upon the values entered above in "Globals"
    var hasReqestedVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
    // Location visited after installation is complete if installation is required
    var MMredirectURL = window.location;
    // Stored value of document title used by the installation process to close the window that started the installation process
    // This is necessary to remove browser windows that will still be utilizing the older version of the player after installation is complete
    // DO NOT MODIFY THE FOLLOWING TWO LINES
    //document.title = document.title.slice(0, 47) + " - Flash Player Installation";
    document.title = document.title.slice(0, 47);
    var MMdoctitle = document.title;
    // Check to see if a player with Flash Product Install is available and the version does not meet the requirements for playback
    if ( hasProductInstall && !hasReqestedVersion ) {
        var productInstallOETags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
        + 'width="550" height="200"'
        + 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
        + '<param name="movie" value="resources/playerProductInstall.swf?MMredirectURL='+MMredirectURL+'&MMplayerType=Ac tiveX&MMdoctitle='+MMdoctitle+'" />'
        + '<param name="quality" value="best" /><param name="bgcolor" value="#3A6EA5" />'
        + '<embed src="resources/playerProductInstall.swf?MMredirectURL='+MMredirectURL+'&MMplayerType=Plug In" quality="high" bgcolor="#3A6EA5" '
        + 'width="550" height="300" name="detectiontest" align="middle"'
        + 'play="true"'
        + 'loop="false"'
        + 'quality="best"'
        + 'wmode="opaque"'
        + 'allowScriptAccess="sameDomain"'
        + 'type="application/x-shockwave-flash"'
        + 'pluginspage="http://www.adobe.com/go/getflashplayer">'
        + '<\/embed>'
        + '<\/object>';
        document.write(productInstallOETags);   // embed the Flash Product Installation SWF
    } else if (hasReqestedVersion) {  // if we've detected an acceptable version
        AC_FL_RunContent(
    'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0',
    'flashvars','baseRefUrl=resources/&groupxml=group.xml&stylexml=style.xml&localText=localT ext.xml&livePreview=false&startImg='+startImg,
    'width', '100%',
    'height', '100%',
    'src', 'resources/gallery',
    'quality', 'high',
    'pluginspage', 'http://www.adobe.com/go/getflashplayer',
    'align', 'middle',
    'play', 'true',
    'loop', 'true',
    'scale', 'showall',
    'wmode', 'opaque',
    'devicefont', 'false',
    'id', 'gallery',
    'bgcolor', '#f7f7f7',
    'name', 'gallery',
    'menu', 'true',
    'allowScriptAccess','sameDomain',
    'movie', 'resources/gallery',
    'salign', ''
      } else {  // flash is too old or we can't detect the plugin
        var alternateContent = 'This photo gallery requires the Adobe Flash Player.'
            + '<a href=http://www.adobe.com/go/getflash/>Get the free Flash Player here</a>';
        document.write(alternateContent);  // insert non-flash content
    // -->
    </script>
    <noscript>
    // Provide alternate content for browsers that do not support scripting
    // or for those that have scripting disabled.
           Sorry, this photo gallery requires that scripting be enabled on your web browser and that the Adobe Flash Player be installed.
      <a href="http://www.adobe.com/go/getflash/">Download the Adobe Flash Player</a>
    </noscript>
    </div>
    </body>
    </html>

    Are you sure you have uploaded everything in the gallery folder to the correct location. It can't find the index.html page.

  • CUCM 8.6.2.20000 Pub & Sub DRF Local never starts when servers started

    Anyone ever seen this? I'm running CUCM 8.6.2.20000 in my lab on Esxi5 VM's. Every time I gracefully shutdown the Pub and Sub, and turn them back on (this is a lab, hence the multiple on/offs) both Pub and Sub DRF local services never start. Never. DRF master starts, but not the two locals. I have to manually start them each and every time. Once they are started, no problems.

    Hi,
    Can you check whether you have any expired CAPF certificates in CUCM OS Admin page --> Security -- > Certificate management. If you do have you can delete the expired certs after confirming that there are valid certs available on the same page. Restart CAPF service after that.
    We could also find the exact cause from the DRF local logs
    Thanks,
    Shenbagarajan

  • XML Pub: Purchase Order  Report (Portrait) running too long

    Hi:
    "XML Pub: Purchase Order Report (Portrait)" running too long. It should be 1min. but now over 20min. This is 11.5.10.2 on unix.
    The log file is like the following. It stops there. I checked another one ran before, there are more data...
    +-----------------------------
    | Starting concurrent program execution...
    +-----------------------------
    Arguments
    P_report_type='R'
    P_po_num_from='6640015'
    P_po_num_to='6640015'
    P_test_flag='N'
    P_user_id='14955'
    P_QTY_PRECISION='4'
    P_fax_ind='N'
    P_EMAIL_IND='N'
    P_REQUEST_SOURCE='MANUAL'
    Environment will now switch to UTF-8 code-set.
    Parts of this log file may not display correctly
    as a result. This is an expected behavior.
    XML_REPORTS_XENVIRONMENT is :
    /oracle/product/8.0.6finshdw/guicommon6/tk60/admin/Tk2Motif_UTF8.rgb
    XENVIRONMENT is set to /oracle/product/8.0.6finshdw/guicommon6/tk60/admin/Tk2M
    otif_UTF8.rgb
    Current NLS_LANG and NLS_NUMERIC_CHARACTERS Environment Variables are :
    American_America.UTF8
    ===============================================
    From the internal Manager log:
    Process monitor session started : 29-APR-2011 12:35:56
    Internal Concurrent Manager found node APPSNOTE2 to be down. Adding it to the l
    ist of unavailable nodes.
    Process monitor session ended : 29-APR-2011 12:36:00
    Process monitor session started : 29-APR-2011 12:38:00
    Process monitor session ended : 29-APR-2011 12:38:04
    Process monitor session started : 29-APR-2011 12:40:04
    Process monitor session ended : 29-APR-2011 12:40:09
    Process monitor session started : 29-APR-2011 12:42:09
    Internal Concurrent Manager found node APPSNOTE1 to be down. Adding it to the l
    ist of unavailable nodes.
    Process monitor session ended : 29-APR-2011 12:42:15
    ======================
    please advise.

    last lines of FNDCPGSC29793.tx
    )]:BEGIN :[SVC-GSM-WFALSNRSVC-262965 : oracle.apps.fnd.cp.gsc.Processor.sleep()]:Waiting 10 seconds (10000 ms)
    [ 1:STATEMENT:[SVC-GSM-WFALSNRSVC-262965 : oracle.apps.fnd.cp.gsc.Processor.run()]:Running loop from the top.
    -1:-1:PROCEDURE:[SVC-GSM-WFALSNRSVC-262965 : oracle.apps.fnd.cp.gsc.Processor.processControlEvent(String)]:BEGIN (noEvent)
    :-1:-1:STATEMENT:[SVC-GSM-WFALSNRSVC-262965 : oracle.apps.fnd.cp.gsc.Processor.processControlEvent(String)]:Did not receive any control events.
    -1:PROCEDURE:[SVC-GSM-WFALSNRSVC-262965 : oracle.apps.fnd.cp.gsm.GSMQueueProcessor.process()]:BEGIN
    :-1:PROCEDURE:[SVC-GSM-WFALSNRSVC-262965 : oracle.apps.fnd.cp.gsm.GSMQueueProcessor.read()]:BEGIN
    :-1:STATEMENT:[SVC-GSM-WFALSNRSVC-262965 : oracle.apps.fnd.cp.gsc.Processor.run()]:Running loop from the top.
    -1:-1:PROCEDURE:[SVC-GSM-WFALSNRSVC-262965 : oracle.apps.fnd.cp.gsc.Processor.processControlEvent(String)]:BEGIN (noEvent)
    :-1:STATEMENT:[SVC-GSM-WFALSNRSVC-262965 : oracle.apps.fnd.cp.gsc.Processor.processControlEvent(String)]:Did not receive any control events.
    :-1:PROCEDURE:[SVC-GSM-WFALSNRSVC-262965 : oracle.apps.fnd.cp.gsc.SvcComponentMonitor.process()]:BEGIN
    -1:-1:PROCEDURE:[SVC-GSM-WFALSNRSVC-262965 : oracle.apps.fnd.cp.gsc.SvcComponentMonitor.startAutomaticComponents()]:BEGIN
    -1:STATEMENT:[SVC-GSM-WFALSNRSVC-262965 : oracle.apps.fnd.cp.gsc.SvcComponentMonitor.process()]:On-Demand monitoring will not occur this round; the count is 3 out of 5
    [Apr 29, 2011 1:19:5 :-1:-1:STATEMENT:[SVC-GSM-WFALSNRSVC-262965 : oracle.apps.fnd.cp.gsc.Processor.run()]:Resetting Error Count
    [Apr 29, 2011 1:19:51  1:-1:PROCEDURE:[SVC-GSM-WFALSNRSVC-262965 : oracle.apps.fnd.cp.gsc.Processor.sleep()]:BEGIN :1304097591452:Thread[ComponentMonitor,5,main]:0:-1:
    -1:STATEMENT:[SVC-GSM-WFALSNRSVC-262965 : oracle.apps.fnd.cp.gsc.Processor.sleep()]:Waiting 60 seconds (60000 ms)
    [Apr 29, 2011 1:20:00 PM EDT] 1:-1:PROCEDURE:[SVC-GSM-WFALSNRSVC-262965 : oracle.apps.fnd.cp.gsc.Processor.sleep()]:BEGIN
    [Apr 29, 2011 1:20:00 PM EDT]: 4:-1:-1:STATEMENT:[SVC-GSM-WFALSNRSVC-262965 : oracle.apps.fnd.cp.gsc.Processor.sleep()]:Waiting 10 seconds (10000 ms)
    Edited by: user9231603 on Apr 29, 2011 10:22 AM
    Edited by: user9231603 on Apr 29, 2011 10:25 AM

  • Hyperion SQR production reporting 11.1.2 performance after migration from Peoplesoft

    Hi,
    I am provided with sqr report includes multiple select statements but with simple small joins and also have reference to standard sqc files and other sqc.
    I installed SQR on AIX and database as oracle 10g.But now hyperion does not provide any sqc file.
    So manually created all sqc.But the report is taking more than 4 hours to produce the output file.Previously users get it in 10 minutes as informed.
    Kindly help and suggest how to improve the time,

    Please post to the BI Reporting Community

  • Creating a Arabic PDF using SQR program

    Arabic display
    Hi All
    I am trying to create a PDF report via Peoplesoft SQR using SQRW command. I get the expected result if I choose LIS or HTML as my output.
    But in case of PDF, I am missing the Arabic words in my report. 
    Version of Adobe - 8.
    OS - Window XP, Peoplesoft SQR 8.4
    Thanking you in advance.

    Contact the support of Peoplesoft SQR. It isn't a Adobe product.

  • Creating a folder on hyperion workspace using a sqr job

    Hi Gurus
    need some help, I have this code in the sqr to create a folder on hyperion 9.3.1 workspace. When i run this job and do a show on "#dirfile_status0". The value in it is 2 ,which mean it is saying that the folder doesnot exists, but i know the folder exists. this is run on a unix box.
    if $sqr-platform = 'UNIX'
    let $prefix = '/' || 'Temp' || '/' || 'Subfol'
    let $NewDir0 = $prefix                          
    let #dirfile_status0 = exists($NewDir0)
    let $createDir0 = 'mkdir -p ' || $NewDir0
    if #dirfile_status0 <> 0
    CALL SYSTEM USING $createDir0 #RETURN WAIT
    end-if
    end-if
    Thank you in advance
    Kumar

    Hi Pranav,
    Tell me if you want to create this folder at run time or in NWDS while developing application.
    If you want to create it at the time of development just change your perspective to Java perspective and from there you can see the entire project structure and from there you can create desired files / folders.
    Ninad

  • Is there a way to reconstruct the pub database from sub database? no backup for Pub :P

    Team,
    One of my customers had a problem with his publisher. They have 1 Pub and 1 Sub cluster, they are using UCM version 8.0.
    Due to power failure, the Publisher data was corrupted neither accessible so they are currently working on the subscriber and hence they cannot add, delete or modify any user.
    The customer than did format to the publisher, which they did after backing it up but that is not working so we can assume they don’t have a backup copy
    1-   Can we restore data from subscriber if publisher is down (meaning reports, CDR ...)
    2-   Can we fix corrupted data available in the publisher ? I think we can’t
    3-   Can we  export data from subscriber to publisher or we need to add the phones back manually to the Pub?
    Another issue, their UCM has 2 CUE port licenses. they expected that the partner will put it both on publisher since the other one is only a backup. I discovered that the partner has put one on each server. In another meaning once one of them is down they have only one port left which does not make sense. Is this configuration right?
    4-   When publisher is down can we use its license on the subscriber to have 2 CUE ports working instead of one.
    So in terms of redundancy what are the things we need to make sure our customer is aware of?
    Please advice,

    The 8.5(1) release added a procudure to rebuild the publisher from a subscriber. This won't work if you're on 8.0 though.
    The Disaster Recovery System Administration Guide covers this (see step 12). Your only other path might be to work with TAC. It's unclear whether there is another option available with root access or not. I suspect the answer depends on whether you can get the OS to boot on the publisher.
    I can't answer the CUE portion of this thread.

  • Can I open a .pub file in iworks?

    I have been sent some files created in publisher with a .pub extension. Can I open thses in iWorks09?

    I suppose that you may just want to read, not necessarily edit, these .pub files. If you Google "OSX apps for .PUB format" you will get a lot of hits.
    I've downloaded a couple of these OSX app readers over the past few months to investigate posts about export from Pages to epub. Some work better than others – you have many choices.
    Jerry

  • Bi-Pub desktop Plugin 10.1.3.4.2 Compatible in  Win 7 Ent 64 bit in R12.1.3

    Hi Gurus,
    Did any body Successfully Over came this issue While Loading XML Data (load XML data button)via Bi-pub plugin in office 2010.
    Which is in the Below mentioned Environment
    Bi-Pub desktop Plugin 10.1.3.4.2
    Win7 Enterprise 64 bit Environment
    Oracle Apps R12.1.3 Installation.
    I am getting this Error.
    *"could not load an object because it is not available error"*
    I followed this solution in the Thread
    MS Word 2010 and BI publisher
    But I still could not get the issue Resolved.
    I am still getting the
    *"could not load an object because it is not available error"*
    I Followed this method
    http://www.treeplan.com/object-library-invalid-error.htm
    I followed the method's posted in this Thread too.
    http://oraclesanpra.blogspot.com/2011/04/macro-cannot-be-found-or-has-been.html
    I still get the Same error.

    Not really sure why but -
    Compatibility mode for XP SP2 or SP3 did not help - I got the same error message, using the setup.exe of OBIEE, concerning the version of Windows
    However setup.exe worked when I put its compatibility mode as Vista
    Now sure why Vista would work instead of XP
    thanks,
    Jim

  • Can't update to 10.6.8 kernel panic and pcscd.pub wrong block count

    Hi there, as the title said, I cannot update to the recent 10.6.8 v1.1 (nor v1 for what it matters). All seems going fine till the iMac reboots, then a kernel panic is generated. Only way out is to reinstall 10.6.7 COMBO.
    Both Disk Utility and Disk Warrior agree on the issue, they both say they have repaired and the iMac goes into kernel panic with again pcscd.pub block count error (should be 16 instead of 17). Re-installing 10.6.7 everything is happy again.
    Any idea? Hard disk tests with Disk Warriors show nothing and the HD is journaled.

    See
    What is a kernel panic,
    Technical Note TN2063: Understanding and Debugging Kernel Panics,
    Mac OS X Kernel Panic FAQ,
    Resolving Kernel Panics, and
    Tutorial: Avoiding and eliminating Kernel panics for more details.

  • Publisher 2007 won't save as a Pub file

    I have installed Microsoft Office Suite 2007 on my computer.  Everything activated great and everything works fine, Excel, Word, Power Point, Outlook, etc.  Publisher opens as normal, I can create a document, edit and print.  When I save
    it, it says it's a Pub file but it saves as a pdf.  Then the pdf won't open.  When I go into Publisher the file is there but it won't open.  I have tried save as with the same results.  I have uninstalled the program and reinstalled with
    the same results.  What am I missing????

    File > Export...
    Will bring up a modal dialog:
    Where you can select what you want to export.  The selections are:
    1) PDF
    2) Excel
    3) CSV

  • Preventing automatic scientific notation conversion for excel o/p of bi pub

    I have a column in a query that contains a mixture of numbers and letters and hyphens. If the only letter is E, then I get scientific notation instead of the actual text,when I run the report for excel output and open it in excel.
    For example:
    185701E-02 becomes 1.86E+03 in the excel output of the report
    4962E6 becomes 4.96E+09
    will be really grateful if anyone can help

    See this thread:
    Re: Long account Numbers displayed in exponential form in excel using XML Pub
    Regards,
    Dave

  • Convert word document in PDF,e pub,by using third party dll in Sharepoint designer workflow 2013?

    Hi,
    I want to convert word document to PDF,  EPub, by using third party (.dll).
    In SharePoint designer workflow in 2013.
    So that I have question, Can we Install third party (.dll) in SharePoint workflow Designer for conversion?
    Means I have created one simple application conversion of word to e Pub, PDF, Image by using (Spire.doc dll) in Visual Studio.
    So this same conversion I want to work in SharePoint designer workflows?
    So anybody has any solution then please provide me.
    Thanks,
    Samadhan

    it might be worth looking at these CodePlex steps, that plug directly into the Word Automation Services.
    http://sp2010wordautomation.codeplex.com/
    It'll provide you with a configurable step like the below that should help you achieve your aims
    Steven Andrews
    SharePoint Business Analyst: LiveNation Entertainment
    Blog: baron72.wordpress.com
    Twitter: Follow @backpackerd00d
    My Wiki Articles:
    CodePlex Corner Series
    Please remember to mark your question as "answered" if this solves (or helps) your problem.

  • Help needed to use only SQR reporting with Oracle 10g

    I have very old SQR reports (ver 2.28) that are still being used by connecting SQR to an Oracle7 DB. We have migrated the data from Ora7 to Oracle 10.2.0.4. The issue is that SQR 2.28 is not able to connect to Oracle 10.2.0.4. Hence I want to use the new version of SQR that is part of OBIEE.
    I am not familiar with OBIEE and my interest is only using the SQR portion of it.
    1. Can any one help me as to how to go about installing SQR portion of OBIEE on a Linux Itanium 64-bit box? My Oracle 10.2.0.4 DB is also running on the same box.
    2. What are the minimum components of OBIEE I need to install to make use of SQR ?
    3. Any other relevant information
    Thanks.

    When installing webgate, make sure the Access Server is running. You will get this error if Access Server is down or not reachable. ( Make sure from the machine where you are installing webgate you can ping to Access Server by Name).
    Thanks
    Ram

Maybe you are looking for

  • Issue in Bursting with XML Publisher in Applications

    Hi , After I submitted the conc.request for XML Output PDF, the request is getting Completed with Normal Status. I'm getting the below NULL Pointer Exception. Please find the below EXCEPTION from logfile. =============================================

  • Problem in changing display language, please help

    I set my Mac's language settings to Japanese when I on my Mac for the first time. Now I want to change the display language to English, so I changed the settings through System Preference -> International. I dragged English to the top of the list and

  • Font Book not working

    Font book doesn't seem to correctly install fonts, when I do the usual double click and 'install' a font it doesn't appear in Font Book, it also doesn't move or duplicate the font into any of the usual Library folders. The font is available to applic

  • Moving photos back into iphoto from DVD back-up

    I have lost several hundred photos (through my own error). I have them backed up on DVD in the iphoto format. Iphoto recognizes the disk when I put it in. I'm wondering the best way to transfer these photos back onto my computer and into my iphoto li

  • Retrieving documents using native applications

    Dear While retrieving content from content server, the content is usually launched as a web page or pdf files -regardless of the original native file- Can ECM automatically launch the native application to enable viewing of any retrieved document? If