OBIEE support a Postgres DB as DataSource?

Hello,
We are setting up a reporting projet based on OBIEE 11g solution.
Our want to use a PostgreSQL 9.0 DB as a data source instead of an Oracle DB...
Before to start the developement phase we want to check if PostgreSQL is supported by OBIEE(for example in case of an incident can we rely on the client support option bought by the user).
In the documentation we read that we can use a ODBC connector to connect to any database, but in another document we didn't find Postgres among the database data source supported by OBIEE (DB2,MS SQLserver...)
Kind regards
Edited by: 950686 on 3 août 2012 01:21

Tnanks for answering,
I have checked it!!!! but the answer wasn't so clear; in fact we use an ODBC connector to connect to a postgres DB source to feed our report, in this matrix we find two page that dont see the same thing:
Section name: ERP-Apps and Other Datasources/Table: Other DataSource from Oracle===>in this onglet we see that with ODBC we can connect to any database source......
Section name : Non-Oracle DB Certification ===> the postgres don't appear in the supported database source like DB2,MS SQL server...
So we are very confused our need is just to use a database like postgres to home our reporting data source?
Other Comments:
We precise that in the installation steps we have used a Oracle DB schema to home the OBIEE technical schemas(Prerequisite in the installation steps), the next step is to build reports so for that we need to plug into a Postgres DB with an ODBC connector to develope and feed our reports.

Similar Messages

  • Does OBIEE supports only windows 7 64 bit?

    Oracle My support is not available for OBIEE installed in windows 7 32 bit OS. Does OBIEE supports only windows 7 64 bit?
    Guys please guide me?

    i ahve isntalled it on 32 bit Os windows 7, but the problem is while configuring (last step of installation) got few errors unable to rectify it. hence continued by skipping those error. but finally after deploying rpd file into weblogic server, unable to start those 5 BI components.

  • Does OBIEE support following ??

    Hi guys
    Can we achieve following from OBIEE or does OBIEE support following
    Scripting/programming language
    1)Argument passing     
    2)Local variables     
    3)Looping constructs     
    4)Control branching
    thanks

    I'm not sure what you mean by "Scripting/programming language" since OBIEE is neither...
    However, I'll comment on the following:
    1)Argument passing - yes - through various prompts
    2)Local variables - yes - session and presentation
    3)Looping constructs - no this isn't possible...but I don't know why would you need them?
    4)Control branching - no...you can use external SVNs and keep track of RPD - but there's no such functionality at this point built-in
    Good luck

  • Does OBIEE supports TimesTen as the data source

    We use TimesTen for our in-memory db requirements, and our tables are cached i TimesTen. We are looking to see for OBIEE dashboards, can we use TimesTen as the datasource and is it supported and certified. If yes, could you please provide us the details.
    Thanks.

    Hi,
    Is it possible to have TimesTen as well as other databases as data source, and then combine them? For example, dimension tables reside on Oracle database, and the fact table resides on TimesTen?
    If possible then, could you please show how to do it?
    Thanks.

  • OBIEE support registration

    Hi,
    I have to raise bug with oracle support. my organization has got account with oracle for database and peoplesoft.. but i think there is no account for OBIEE which is different product.
    Can anyone please let me know where should i suppose to register myself say with META LINK or with METALINK3 to raise the bug.
    Many thanks in advance.
    Tushar

    metalink3, but you'll need an appropriate support identifier. Basically the one which contains BIEE for your organization.
    Cheers,
    Christi@n

  • Will OBIEE supports multiple authentication

    Hi All,
    Does OBIEE 11.1.1.5.0 supports multiple authentication, at present in my environment we have configured LDAP, where a number users and groups are accessing obiee, we do not have some 3000 non obiee users, for these users also i have to send delivers. So my question how can i achieve. At present i am able to send delivers to obiee users.
    Please provide information on this
    Thanks
    sreekanth

    Hi,
    Yes it supports multiple authentication.
    For more refer,
    http://docs.oracle.com/cd/E23943_01/bi.1111/e10543/privileges.htm#BABDCJBH
    Thanks
    Deva

  • Support for Postgres Failed

    Deploying an Ejb application using Weblogic6.1 and databases Oracle and MSSQL Server was successful.I tried the same on Postgres database while trying to create Table the following error was thrown.

    Hi Skier150,
    Thank you for your valuable feedback. Could you please provide more information regarding this issue so that we investigate it further.
    -              Phone time and date is properly set
    -              SIM card in phone
    -              Free memory available in C: drive
    -              PC Connectivity Solution version (Control Panel-Add/Remove Programs-  Highlight        PC Connectivity Solution and version will be shown.
    Looking forward to hear from you at the earliest.
    Regards

  • Will OBIEE Support creating reports from 2 different data sources

    Hello Guys
    I am new to BI . Can anybody let me know how to create a report using 2 different data sources .
    Ex: Suppose we have 10G and SQL server , can we import tables to rpd and join 1 fact & dimension from 10G and 1 Fact from SQL server to the 10G tables . If so ,
    1) Will the repository be consistent ?
    2) Is it a best practice to do this kind of modeling ?
    3) Will it affect the performance of the reports ?
    Your advice is highly appreciated .

    Hi,
    Dont try to do this at the BI server layer. Oracle has special abilities to do this thing. So use the power of oracle to import the tables from the sql server to oracle and in the bi server just create one data source.
    you can browse for *'DBLINK'* in oracle.
    Regards,
    Karthick

  • Support for Canadian English and French in OBIEE

    I would like to know whether OBIEE supports Canadian English & Canadian French. I have looked at several documents and links pertaining to the "Language Support", but am still unclear whether they are supported.
    Many thanks for your assistance.
    Regards,
    Hareesh

    Well it's certainly no small task you're undertaking there, but there are a couple of ways of doing it as far as I know.
    The first is to store all the phrases in all languages in an XML file, then pull the correct outputs depending on the current language. For example: (pseudo, obv)
    <xml>
        <dict lang="EN-US">
            <phrase id="1" value="Hello there. Welcome!" />
            <phrase id="2" value="Sorry to see you go, goodbye!" />
        </dict>
        <dict lang="FR">
            <phrase id="1" value="Bonjour. Bienvenue!" />
            <phrase id="2" value="Ah, le chat des ami. Au revoir!" />   
        </dict>
        <dict lang="ES">
            <phrase id="1" value="Hola! Bienvenido!" />
            <phrase id="2" value="Lo siento, pero tu hermana es muy guapa!" />   
        </dict>
    </xml>
    You then load each language into a structure in the APPLICATION scope (call it APPLICATION.LANG), then pretty much everywhere in your code you need to output something you'd instead do:
    <cfoutput>#APPLICATION.LANG[SESSION.language].phrase1#</cfoutput>
    Or similar.
    The other approach is similar, but involves having the phrases saved in database tables and doing a similar thing.
    And sadly no, you'll struggle to find anything that can reliably translate for you - certainly not a database.
    O
    PS languages are not my strong point, as you may have noticed.

  • Supported languages of OBIEE

    Hello,
    Can anybody tell me the supported languages of OBIEE ? Does OBIEE supports Arabic text and numbers? can we make the numbers in the reports in Arabic?
    Many Thanks

    There are a number of defects regarding arabic characters used in charts in OBIEE 11.1.1.5.0.
    For more information, see the following bugs:
    BUG 13018564 - OBIEE 11G CHARTS: ARABIC LETTERS ARE NOT LINKED AS THEY SHOULD BE ,
    BUG 13065783 - BAR CHART WITH ARABIC DATA :GRAPH TITLE AND COLUMNS TEXT IN REVERSED ORDER
    Bug 13018589 - OBIEE 11G CHART ARABIC DATA THE FIRST LETTER ON THE RIGHT IS MISSING

  • Error in rendering maps through mapviewer in obiee

    Hi
    I am trying to integrate mapviewer with OBIEE, when i connect to the datasource from the mapviewer, and try to click on any of the demo Oracle maps, I am getting an error saying that...." Cannot get map cache instance config information for MVDEMO.DEMO_MAP."
    When check in the start OC4J its showing " ERROR Not found in MDSYS.CS_SRS: srid=8307, Warning Invalid cache root directory :/scrtrach/mvdemomaps"
    This "/scratch/mvdemomaps" path is there in USER_SDO_CACHED_MAPS_TABLE under DEFINITION column in MDSYS Schema in the database. whereas this root directory path is different in the Oracle application server Mapviewer --->Mangement-->Managing Map Tile Layers--->DEMO_MAP-->Tile storage-->" *C:\OracleBI\oc4j_bi\j2ee\home\applications\mapviewer\web\tilecache\MVDEMO.DEMO_MAP*
    My doubt is whether this both path (in the mapviewer and in the database) should be the same. Because i am unable to render any of the demo maps.
    Can somebody please throw some light on it.
    Thanks

    Does it have to be a software only installation since it is on AIX?
    From the install doc:
    The Software Only Install type installs the Oracle Business Intelligence software binary files in an Oracle home for later configuration as part of a Fusion Middleware deployment. This install type is required to install Oracle Business Intelligence on an AIX operating system or with a 64-bit JVM, such as on a supported 64-bit operating system.

  • Questions on OBIEE features.

    Hi,
    I am new to Oracle BI.
    I have few questions regarding OBIEE features, Kindly answer to best of your knowledge, thanks in advance.
    1.     What database types/ sources can the BI pull from?
    2.     Is the license portable from one server to another?
    3.     Are pages, graphs, reports, etc. 508 compliant?
    4.     Is the license portable from one server to another?
    5.     Are pages, graphs, reports, etc. 508 compliant?
    6.     How large a dataset can the BI handle?
    7.     How easily does the BI tool integrate new data to it's database?
    8.     What precautions do the BI use to back up data?
    9.     Level of Effort/ Steps involved to install, upgrade, or maintain BI
    10.     Can the BI be used to create/moderate forums (wordpress or other)
    11.     Can user comments be routed to different mailboxes based on predefined conditions (for example, url or user actions on the page)?
    12.     Does dashboard support embedding flash?
    13.     Are cross-tab capabilities supported in business view, dashboard, and ad hoc queries?
    14.     What type of charts can be created with the BI?
    15.     What is the level of effort/ steps involved to create new tools and widgets?
    16.     Is the BI compatible with Linux/Unix?
    17.     Are end user analytics recorded? (Web trends records, query tracking, page usage, etc.)
    18.     How does the BI handle version control?

    877064 wrote:
    Hi,
    I am new to Oracle BI.
    I have few questions regarding OBIEE features, Kindly answer to best of your knowledge, thanks in advance.
    1.     What database types/ sources can the BI pull from?OBIEE supports many popular databases out there including flat file, xml's as sources.
    2.     Is the license portable from one server to another?No. As far as I know you have to buy the license based on number of servers you are doing the installation on.
    3.     Are pages, graphs, reports, etc. 508 compliant?OBIEE is 508 compliant application.
    4.     Is the license portable from one server to another?Refer to answer for Question # 2.
    5.     Are pages, graphs, reports, etc. 508 compliant?Refer to answer to Question # 3.
    6.     How large a dataset can the BI handle?Depends. You can do performance tuning both on BI server side as well as database to boost up the performance. Caching plays a major role here.
    7.     How easily does the BI tool integrate new data to it's database?Not sure what you are asking here.
    8.     What precautions do the BI use to back up data?OBIEE does not store any data. It only stores the metadata of the tables you are using.
    9.     Level of Effort/ Steps involved to install, upgrade, or maintain BIPretty good documentation out there and many blog posts that should help you ease you through the installation process.
    10.     Can the BI be used to create/moderate forums (wordpress or other)No. OBIEE is not a CMS.
    11.     Can user comments be routed to different mailboxes based on predefined conditions (for example, url or user actions on the page)?Yes.
    12.     Does dashboard support embedding flash?Yes.
    13.     Are cross-tab capabilities supported in business view, dashboard, and ad hoc queries?Yes.
    14.     What type of charts can be created with the BI?Many different kinds. Some of them are:
    Bar
    Line
    Area
    Pie
    Line-Bar
    Time Series Line
    Pareto
    Scatter
    Bubble
    Radar
    15.     What is the level of effort/ steps involved to create new tools and widgets?Not sure what you are asking here.
    16.     Is the BI compatible with Linux/Unix?Yep.
    17.     Are end user analytics recorded? (Web trends records, query tracking, page usage, etc.)Yes. Usage tracking.
    18.     How does the BI handle version control?There are good number of useful tools for version controlling in OBIEE.
    Refer: http://www.rittmanmead.com/2009/01/simple-version-control-for-obiee-using-subversion-visualsvn-server-and-tortoisesvn/
    -Amith

  • Filter in OBIEE 11G

    Hi,
    Could any one please guide me on how i can use Values from a Notepad/xls/csc etc as filter for my answers Reports.
    Requirement is to filter values in answers based upon a values(Customer_Id) locally saved notepad file in user Machine.
    Also below are some more clarifications.
    1. Does OBIEE Supports Correlated Sub Queries,if so how i can implement.Is this done using the Advanced Tab -> Sql Issued?
    2. Can we perform Local Joins and Join an excel/notepad/csv with the Results/Answers?
    Local Join Scenario: Ex: I have a result/answers A and B which have a common column,so can i combine them and get result?
    If so then how?
    External File Join: Ex: Application A has provided an .xls sheet which contains Some "Ref Number" which has to be used by Answers 1 and get the records.
    Thanks in advance for your suggestions...

    Select All is available in prompts but with limited scope.
    The option "Include "*All Column Values" choice in the list*" is available, when we uncheck "*Enable user to select multiple values*".
    So basically this option limits the choice to 'All' or "Only One value".
    Desired functionality: 'All' or " multiple values"
    Thanks,
    Ravi
    OBIEE 11.1.1.5

  • Time series functions are not working in OBIEE for ESSBASE data source

    Hi All,
    I am facing a problem in OBIEE as I am getting error messages for measure columns with Time series functions(Ago,ToDate and PeriodRolling) in both RPD and Answers.
    Error is "Target database does not support Ago operation".
    But I am aware of OBIEE supports Time Series functions for Essbase data source.
    using Hyperion 9.3.1 as data source and obiee 11.1.1.5.0 as reporting tool.
    Appreciate your help.
    Thanks,
    Aravind

    Hi,
    is because the time series function are not supported for the framentation content, see the content of the oracle support:
    The error occurs due to the fact the fragmented data sources are used on some Time series measures. Time series measures (i.e. AGO) are not supported on fragmented data sources.
    Confirmation is documented in the following guide - Creating and Administering the Business Model and Mapping Layer in an Oracle BI Repository > Process of Creating and Administering Dimensions
    Ago or ToDate functionality is not supported on fragmented logical table sources. For more information, refer to “About Time Series Conversion Functions” on page 197.
    Regards,
    Gianluca

  • OBIEE Query

    Hi All,
    Can anybody help me on below question?
    1. Does OBIEE Support for representation as a Tree Map?
    I have already gone through below site for squarified-treemap.
    http://hiteshbiblog.blogspot.com/2010/06/squarified-treemap-for-obiee-dashboard.html
    Thanks.
    Edited by: Abe on 28-Jan-2013 06:55

    There is no perfect answer to optimizing the queries.
    You are touching upon the topic of performance tuning. The technology can only provide certain features to help with the performance, but after all, it is the business practice that really causes or eradicates performance problems from the root.
    You may find this article interesting:
    http://obinsight.blogspot.com/2010/05/myth-of-obiee-performance-tuning.html
    Thanks

Maybe you are looking for

  • How to Find out the Name of the Table in Data Sources

    Hi All, How Can i find out the table names used in data Sources. For EX. Suppose I want to find out the table Names  in R3 Used In GL Data Source 0FI_GL_4. Thanks in Advance. Vaibhav A

  • Strange font substitution

    Hi there, I am using a MacBook Pro with OSX 10.5.2. It has suddenly started to have problems with the fonts in fontbook and also doing some very strange font substitutions. Instead of showing text normally it is replacing it with random characters. Y

  • Page Navigation Howto: Region name messed up

    I followed the http://www.oracle.com/technology/products/database/htmldb/howtos/howto_navigate_in_a_page-1.6.html 1. I am using the Sand builtin theme. I didnt find a good place to put the #PAGETOP link on my (Form and Report) region templates. It me

  • Iphone 3GS is disabled

    How do i unlock, i have connected to itunes and it is asking for a passcode but my iphone is only allowing emergency calls. Please advise how i can unlock the Iphone so i can use it?

  • Service book For uzbekistan

    well, In Uzbekistan there is no BIS of BES, so thats why, we do not have any service books for our providers, could you help me, because I need service books(mms, internet) i will give the link Profile: Beeline MMS login: beeline passowrd: beeline AP