Setting TNS_ADMIN parameter in OBIEE 11G

Hi Gurus,
I have done simple install on Linux 64 bit Machine, i need to setup TNSNAMES.ORA file. I have copied my tnsnamesora file to:
1. <MIDDLEWARE_HOME>\Oracle_BI1\network\admin
2. <MIDDLEWARE_HOME>\oracle_common\network\admin
and now in user.sh file taken from <MIDDLEWARE_HOME>\instances\domain2\bifoundation\OracleBIApplication\coreapplication\setup, i need to update the tnsnames.ora path in TNS_ADMIN variable, when i opened the user.sh file, i found all the lines in the file commented, please help me out in which line i need to add the path for TNS_ADMIN.
#!/bin/sh
# Following are the examples of configuring Oracle and DB2 UDB
# clients on various Unix and Linux Operating Systems.
# Please follow the examples, and update this file appropriately
# as per your locations so that Oracle BI Server can locate the
# Database Clients.
# Section 1 Contains examples for Oracle BI in 32 bit mode, and
# in order for BI Server 32 Bit to communicate, the DB Client
# should also be 32 bit
# Section 2 Contains examples for Oracle BI in 64 bit mode, and
# in order for BI Server 64 Bit to communicate, the DB Client
# should also be 64 bit
# IMPORTANT! Do not use the command "set -u" in the script below
# as it prevents the Oracle BI scripts to run properly.
# Section 1
# Solaris: Oracle BI 32 bit mode
#set +u
# Oracle Parameters
#ORACLE_HOME=/export/home/oracle/10g
#export ORACLE_HOME
#TNS_ADMIN=$ORACLE_HOME/network/admin
#export TNS_ADMIN
#PATH=$ORACLE_HOME/bin:/opt/bin:$PATH
#export PATH
#LD_LIBRARY_PATH=$ORACLE_HOME/lib32:$LD_LIBRARY_PATH:/opt/j2se/jre/lib/sparc
#export LD_LIBRARY_PATH
# DB2 Parameters
# make sure the /DB2ISTANCE/sqllib/lib points to 32 lib file
#. /DB2INSTANCE/sqllib/db2profile
# Essbase Parameters
#ARBORPATH=/export/home/Hyperion/AnalyticServicesClient
#export ARBORPATH
#LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$ARBORPATH/bin
#export LD_LIBRARY_PATH
# Linux: Oracle BI 32 bit mode
#set +u
# Oracle Parameters
# Make sure that Oracle DB 32 bit Client is installed
#ORACLE_HOME=/export/home/oracle/10g
#export ORACLE_HOME
#TNS_ADMIN=$ORACLE_HOME/network/admin
#export TNS_ADMIN
#PATH=$ORACLE_HOME/bin:/opt/bin:$PATH
#export PATH
#LD_LIBRARY_PATH=$ORACLE_HOME/lib:$LD_LIBRARY_PATH
#export LD_LIBRARY_PATH
# If you have Linux 64 bit Platform, and would like to run Oracle BI 32 bit
# then you must install Oracle DB 64 bit client, and this client comes with
# 32 bit libraries under $ORACLE_HOME/lib32. The LD_LIBRARY_PATH in this case
# shall be like this:
#LD_LIBRARY_PATH=$ORACLE_HOME/lib32:$LD_LIBRARY_PATH
#export LD_LIBRARY_PATH
# DB2 Parameters
#make sure the /DB2ISTANCE/sqllib/lib points to 32 lib file
#. /DB2ISTANCE/sqllib/db2profile
# Essbase Parameters
#ARBORPATH=/export/home/Hyperion/AnalyticServicesClient
#export ARBORPATH
#LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$ARBORPATH/bin
#export LD_LIBRARY_PATH
# HPUX PA-RISC: Oracle BI 32 bit mode
#set +u
# Oracle Parameters
#ORACLE_HOME=/export/home/oracle/10g
#export ORACLE_HOME
#TNS_ADMIN=$ORACLE_HOME/network/admin
#export TNS_ADMIN
#PATH=$ORACLE_HOME/bin:/opt/bin:$PATH
#export PATH
#SHLIB_PATH=$ORACLE_HOME/lib32:$SHLIB_PATH:/opt/j2se/jre/lib/hp700
#export SHLIB_PATH
# DB2 Parameters
#make sure the /DB2ISTANCE/sqllib/lib points to 32 lib file
#. /DB2ISTANCE/sqllib/db2profile
# Essbase Parameters
#ARBORPATH=/export/home/Hyperion/AnalyticServicesClient
#export ARBORPATH
#SHLIB_PATH=$SHLIB_PATH:$ARBORPATH/bin
#export SHLIB_PATH
# HPUX Itanium: Oracle BI 32 bit mode
#set +u
# Oracle Parameters
#ORACLE_HOME=/export/home/oracle/10g
#export ORACLE_HOME
#TNS_ADMIN=$ORACLE_HOME/network/admin
#export TNS_ADMIN
#PATH=$ORACLE_HOME/bin:/opt/bin:$PATH
#export PATH
#SHLIB_PATH=$ORACLE_HOME/lib32:$SHLIB_PATH:/opt/j2se/jre/lib/hp700
#export SHLIB_PATH
# DB2 Parameters
#make sure the /DB2ISTANCE/sqllib/lib points to 32 lib file
#. /DB2ISTANCE/sqllib/db2profile
# AIX: Oracle BI 32 bit mode
#set +u
# Oracle Parameters
#ORACLE_HOME=/export/home/oracle/10g
#export ORACLE_HOME
#TNS_ADMIN=$ORACLE_HOME/network/admin
#export TNS_ADMIN
#PATH=$ORACLE_HOME/bin:/opt/bin:$PATH
#export PATH
#LIBPATH=$ORACLE_HOME/lib32:$LIBPATH:/opt/j2se/jre/lib/sparc
#export LIBPATH
# DB2 Parameters
#make sure the /DB2ISTANCE/sqllib/lib points to 32 lib file
#. /DB2ISTANCE/sqllib/db2profile
# RPAS Parameters
#OA_ROOT=/export/home/rpas/odbcclient
#export OA_ROOT
#OPENRDA_INI=$OA_ROOT/config/raix/openrda.ini
#export OPENRDA_INI
# Essbase Parameters
#ARBORPATH=/export/home/Hyperion/AnalyticServicesClient
#export ARBORPATH
#LIBPATH=$LIBPATH:$ARBORPATH/bin
#export LIBPATH
# Section 2:
# Solaris: Oracle BI 64 bit mode
#set +u
# Oracle Parameters
# Make sure to install Oracle DB 64 bit Client
#ORACLE_HOME=/export/home/oracle/10g
#export ORACLE_HOME
#TNS_ADMIN=$ORACLE_HOME/network/admin
#export TNS_ADMIN
#PATH=$ORACLE_HOME/bin:/opt/bin:$PATH
#export PATH
#LD_LIBRARY_PATH_64=$ORACLE_HOME/lib:$LD_LIBRARY_PATH_64:/opt/j2se/jre/lib/sparc
#export LD_LIBRARY_PATH_64
# DB2 Parameters
#make sure the /DB2ISTANCE/sqllib/lib points to 64 lib file
#. /DB2ISTANCE/sqllib/db2profile
#LD_LIBRARY_PATH_64=/DB2ISTANCE/sqllib/lib:$LD_LIBRARY_PATH_64
#export LD_LIBRARY_PATH_64
# Essbase Parameters
#ARBORPATH=/export/home/Hyperion/AnalyticServicesClient
#export ARBORPATH
#LD_LIBRARY_PATH_64=$LD_LIBRARY_PATH_64:$ARBORPATH/bin
#export LD_LIBRARY_PATH_64
# HPUX Itanium: Oracle BI 64 bit mode
#set +u
# Oracle Parameters
#ORACLE_HOME=/export/home/oracle/10g
#export ORACLE_HOME
#TNS_ADMIN=$ORACLE_HOME/network/admin
#export TNS_ADMIN
#PATH=$ORACLE_HOME/bin:/opt/bin:$PATH
#export PATH
#SHLIB_PATH=$ORACLE_HOME/lib:$SHLIB_PATH:/opt/j2se/jre/lib/hp700
#export SHLIB_PATH
# DB2 Parameters
#make sure the /DB2ISTANCE/sqllib/lib points to 64 lib file
#. /DB2ISTANCE/sqllib/db2profile
#SHLIB_PATH=/DB2ISTANCE/sqllib/lib:$SHLIB_PATH
#export SHLIB_PATH
# Essbase Parameters
#ARBORPATH=/export/home/Hyperion/AnalyticServicesClient
#export ARBORPATH
#SHLIB_PATH=$SHLIB_PATH:$ARBORPATH/bin
#export SHLIB_PATH
#ESSLANG=English_UnitedStates.UTF-8@Binary
#export ESSLANG
#LANG=en_US.utf8
#export LANG
# AIX: Oracle BI 64 bit mode
#set +u
# Oracle Parameters
#ORACLE_HOME=/export/home/oracle/10g
#export ORACLE_HOME
#TNS_ADMIN=$ORACLE_HOME/network/admin
#export TNS_ADMIN
#PATH=$ORACLE_HOME/bin:/opt/bin:$PATH
#export PATH
#LIBPATH=$ORACLE_HOME/lib:$LIBPATH:/opt/j2se/jre/lib/sparc
#export LIBPATH
# DB2 Parameters
#make sure the /DB2ISTANCE/sqllib/lib points to 64 lib file
#. /DB2ISTANCE/sqllib/db2profile
# Essbase Parameters
#ARBORPATH=/export/home/Hyperion/AnalyticServicesClient
#export ARBORPATH
#LIBPATH=$LIBPATH:$ARBORPATH/bin
#export LIBPATH
Thanks,
Sree

Hi Kalyan,
i referred this blog for adding tns entries for OBIEE 11g, for windows users.cmd has only one TNS_ADMIN, but in users.sh file there are many TNS_ADMIN and moreover all are are commented out, so i am not sure where and to what i should assign the path.
Thanks,
Sree

Similar Messages

  • Setting Default Date in OBIEE 11g

    Hi Gurus,
    I defaulted today's date as default date in the dashboard prompt in OBIEE 10g. Now I did the same steps in 11g but i don't see the default dates on the dashboard prompt. I am wondering is setting the default date is different in 11g? I am using 11.1.1.6.0 version and i defined presentation variables on the report with START and END
    Please advice
    Regards
    Edited by: 792011 on Jul 16, 2012 11:28 AM

    Use sql query at Prompt->Option->Default selection"-> SQL Results
    Ex:
    SELECT max("Time"."Calendar Date")
    FROM "Sample Sales Lite" WHERE "Time"."Calendar Date"<CURRENT_DATE
    Pls mark correct or helpful if helps
    Edited by: svee on Jul 16, 2012 2:22 PM

  • Set events parameter in oracle 11g for SAP

    Hi All,
    Recently we have upgraded 10.2.0.4 oracle database to 11.2.0.3 (AIX 7.1) for SAP application.
    Some non-default event parameters were set when Database was running with 10.2.0.4 version. After upgrade to 11.2.0.3, those events were not seen in pfile/spfile. However, post_upgrade log shows that those events were set (and log displays the list of the events as well).
    Now, my concern is whether those event parameters were set already by default (if it is already set after upgrade, not sure why pfile not reflecting them) or do I need to set the parameters manually.
    Thanks in advance for all your help.
    Regards,
    Prakash

    Yes, they seem to be part of the upgrade itself, and SAP seems to set them in multiple places:
    1) During the dbua.sap.sh run, post-processing calls custom scripts which set these events (check the CustomScript.log in $ORACLE_BASE/cfgtoollogs/dbua/SID/upgrade1 and you can see where it is set)
    2) The post_upgrade_status.sql script in $ORACLE_HOME/sap/ora_upgrade/post_upgrade sets them when you run it as directed after the upgrade
    3) The SBP post-patch instructions specify a command to run that sets these in the spfile
    I don't think any of the upgrade steps regenerate the pfile, so if you're looking at one you generated pre-upgrade (like I did earlier today to pull out underscore parameters and user/background_dump_dest) that you then used to startup the database, SAP is definitely changing stuff behind your back. I'd just regenerate the pfile to avoid confusion.

  • In OBIEE 11G, how to get the special parameter created by JAVA?

    Hi Experts,
    In OBIEE 11G, how to get the special parameter created by JAVA?
    For example:
    In JAVA , it has set one parameter named 'test'.
    So how to get the parameter in filter area in OBIEE?

    Hi Kobe,
    No P2 holds the parameter name like PresentationTable.ColumnName, in your form you may go for complete name or just column name and before submitting the form you can define the Action url.
    I would suggest to read section 6.3.2.1.
    ex:
    <SCRIPT LANGUAGE="JavaScript">
    changeAction(url) {
    var TestVar = form.inputbox.value;
    document.this_form.action="saw.dll?Go&Path=/Shared/Test/SB2&Action=Navigate&P0=1&P1=like&P2=Customers.Region&P3="+TestVar;
    </SCRIPT>
    </HEAD>
    <BODY>
    <FORM NAME="myform" ACTION="" METHOD="GET">Enter something in the box: <BR>
    <INPUT TYPE="text" NAME="inputbox" VALUE=""><P>
    <INPUT TYPE="button" NAME="button" Value="Click" onClick="changeAction(this.value)">
    </FORM>
    If helps pls mark.
    Edited by: veeravalli on Oct 24, 2012 10:25 AM

  • OBIEE 11G error while installation at the configuration setting(ASinstance)

    Hi Experts,
    I am trying to Install OBIEE 11G on Windows on Local PC.But getting the following error .
    "Exception in thread "AWT-EventQueue-0" java.lang.OutOfMemoryError: PermGen space" at the configuration step of ASinstance.
    I have set the virtual memory to maximum.Machine's RAM is 2 GB and Virtual memory is 4 GB which meeets system requirement for OBI.
    I have treid few options but nothing seems to workout :( . and even Downloaded and tried to Install the software again.
    Any help on this highly appreciated.
    Amit

    Hi Dhar,
    below is the log file content:
    opmn.log:
    Error Message from opmn.log file:
    [ERROR:1] [] [libopmncustom] Process Ping Failed: coreapplication_obips1~OracleBIPresentationServicesComponent~coreapplication_obips1~1 (1035801255:1640) [No addresses matched the properties for the request]
    [ERROR:1] [] [libopmncustom] Hi Dhar,
    below is the log file content:
    opmn.log:
    Error Message from opmn.log file:
    [ERROR:1] [] [libopmncustom] Process Ping Failed: coreapplication_obips1~OracleBIPresentationServicesComponent~coreapplication_obips1~1 (1035801255:1640) [No addresses matched the properties for the request]
    [ERROR:1] [] [libopmncustom] Ping failed in Ready callback for proc:1035801255
    All other log files (presentation, bi server, scheduler, cluster controller) contains the following error message:
    Error Message: The configuration file (C:\obi\user_projects\domains\bifoundation_domain\config\fmwconfig\jps-config.xml) was not found or is inaccessible.
    As per comments posted by you here: https://cn.forums.oracle.com/forums/thread.jspa?threadID=2326091
    I checked FMW_SECURITY_SERVICE_URL parameter in the NQSConfig.ini file.
    This parameter is using VIP (admin server listen to this) and not the actual IP of the server.
    Should I change this URL and point it to actual IP.
    What is the procedure to change this parameter using EM?

  • Setting HOMEPAGE for USERs, rolewise OBIEE 11g

    Hi,
    I have OBIEE 11g Dashboards on top of an Essbase cube. I would like to have a default homepage set per user role.
    I have followed the below link: http://obieeelegant.blogspot.fi/2011/06/how-to-changing-theobiee11g-homepage.html , which suggests to have two tables in the database.
    But how do I capture the User ids in this case. My security model has got Nested Groups and Nested Roles.
    Any suggestion on how to proceed, please.

    Hi Kalyan,
    i referred this blog for adding tns entries for OBIEE 11g, for windows users.cmd has only one TNS_ADMIN, but in users.sh file there are many TNS_ADMIN and moreover all are are commented out, so i am not sure where and to what i should assign the path.
    Thanks,
    Sree

  • Obiee 11g Agent- Device (dashboard) is not set in (Userid) delivery profile

    hi
    HI
    I have followed the steps (http://obieemanu.blogspot.in/2011/06/obiee-11g-configure-oracle-bi-scheduler.html) and enabled Agents.
    I am sending the mails succesfully But i am receiving below error....
    Eventually succeeded, but encountered and resolved errors...
    Number of skipped recipients: 0 of 1
    AgentID: /shared/SSystem Administration/26APRAGENT
    Device (dashboard) is not set in (Userid) delivery profile.
    Please suggest me if i missed anything
    Regards
    Edited by: 917796 on May 2, 2012 2:05 AM
    Edited by: 917796 on May 2, 2012 2:06 AM

    Hi
    Sorry for the delayed reply i havnt looked in to ibots for last few months...
    Steps to configure device..
    After login into analytics....click on ur username u used to login and select My Account..there u can Add email..
    As for as i know u can do this only if u are sending ibots to few users...
    we have to create SA system subject area as shown in below URL
    http://oraclebizint.wordpress.com/2008/04/25/oracle-bi-ee-101332-sa-system-subject-area-autoloading-profiles-and-bursting/
    please send a test mail to [email protected] i will send u a doc with screen shots on how to add Device..
    Apologies again...for the delayed reply

  • Content level setting in OBIEE 11g

    Hi,
    i am new to obiee 11g.i have an doubt in setting up the content level setting in BMM layer.i have given details level in fact LTS content tab with help of physical join,i dont get any error but while trying to generate reports i am getting an error "None of the fact table is compatible with the requested level".where i am commiting mistake,do i need to set content llevel based on physical join or logical join scenario.kindly help regarding this.
    thanks in advance!
    Edited by: Nandha on 10 Jan, 2012 10:55 PM

    Hi Nanda,
    We set the content level of logical source based on the granularity of the source.
    Say, a product hierarchy is like
    Category -> Sub Category -> Product
    Say one of your dimensions has Product information, for this source set the level as 'Product'
    Say there is an aggregated source which has Category information, set the source level as 'Category'.
    Hope this helps you to set your levels.
    Thank you,
    Dhar

  • How to set up Query Logging in OBIEE 11g 11.1.1.6

    Hi all,
    I couldn't find the option for setting up the query logging for testing and debugging purpose. Could anyone plz help me in this ...
    Regards,
    Arun

    Hi Arun,
    For simplicity I'll direct you to a link http://obiee11gqna.blogspot.com.au/2011/04/obiee-11g-query-log-log-level.html
    Richard

  • Can I set a conditional format as default in OBIEE 11g?

    Hi,
    I would like to set all positive number be (green) and negative number be (red) for all tables in Analytics Web (OBIEE 11g). Apart from create conditional format for every tables, is there any way to set once only and apply for all reports?

    Hi User,
    You can set system wide default by clicking on the button in conditional format tab.
    *Make sure user has "Save System-Wide Column Formats" privilege to enable the option.
    Regards,
    Dpka

  • OBIEE 11g: Bugs Fixed in 11.1.1.6.5 Patch Set

    Hello, I have a question about the patches that apply.
    I have installed the product BI Publisher Enterprise 11g (11.1.1.6.0)
    I detected a bug:
    bug 13791065 - UNGROUP OF A SUBGROUP WITH AN EXPRESSION DOES NOT WORK PROPERLY
    This bug was fixed in OBIEE 11g: Bugs Fixed in 11.1.1.6.5 Patch Set
    ¿could apply this patch to version BI Publisher Enterprise? Because this patch cotent the fix bug 13791065
    I think not because,...this patch only apply in OBIEE Enterprise 11g and I have BIP Enterprise 11g
    Patch 14630670: UPDATE FOR BI PUBLISHER ENTERPRISE 11.1.1.6.X SEPTEMBER 2012 is the last patch for me?
    This latest version does not contain the bug fix 13791065.
    thank you very much

    Thanks Daniele for the reply,
    I believe the 11.1.1.4 was released but only in OTN, not for everyone (I'm not 100% sure about this...) . However I know that a certain bug (9973004) was solved in 11.1.1.4, and this bug does not appear in the 11.1.1.5 list. That could happen with many other bugs, they could be solved in 11.1.1.4 but not appear in any list.
    Thanks again!

  • Setting up OBIEE 11G Marketing Segmentation pointing to dual CRM apps

    We like to bring into another CRM app into our OBIEE 11 single instance.  Currently we already have one set up with Marketing Segmentation.  We would like to bring another CRM app into this single instance of OBIEE.  My question is, can we configure our single instance of OBIEE 11g to mulitple CRM app running Marketing Segmentation?

    1) I deleted bridge-utils, netcfg
    2) I edited /etc/hostapd/hostapd.conf:
    interface=wlan0
    #bridge=br0
    edited /etc/dnsmasq.conf:
    interface=wlan0
    dhcp-range=192.168.0.2,192.168.0.255,255.255.255.0,24h
    and edited /etc/rc.local:
    ifconfig wlan0 192.168.0.1 netmask 255.255.255.0
    ifconfig wlan0 up
    3) I added in autostart these daemons: hostapd, dnsmasq and iptables.
    Profit!

  • How to set the First Day of the week in OBIEE 11g

    In OBIEE 10g, there was a timeline.pcxml , that allowed you to change the First Day of a week (Default Sunday) to monday etc etc..
    Where can we find the same in OBIEE 11g ?
    Thank you ,
    Smrithy

    There are probably several ways. We have a universe string object named "Month" which is in the format "YYYY" then "M" and the month number. For instance any date in June 2010 would have in this object:
    2010M06
    So we made this variable in Webi for [First Day of Month]:
    =ToDate(Right([Query1].[Month];2) + "-01-" +Left([Query1].[Month];4);"MM-dd-yyyy")
    Hope that helps.

  • How to set width of a prompt in OBIEE 11g?

    Hi,
    We have recently upgraded to OBIEE 11G.
    In 10g all our prompts were fine. After upgrade, the prompts look distracted. All the prompts are Choice Lists.
    The width of the prompts is varying depending on the width of the values that are coming from the DB.
    Our requirement demands fixed width for the prompts. Is there any way to do it!!
    Thanks!!
    Vasantha.P
    Edited by: Vasantha Payyavula on Dec 23, 2010 12:36 PM

    Hi vasantha,
    Check this out http://www.obinotes.com/2010/12/text-wrapmulti-ine-prompt-caption-in.html and even comment by stijn
    Hope helps you.
    By,
    KK

  • How to Set up Map MetaData in OBIEE 11g.

    Hi Guys,
    I have one requirement in the spatial data .which am needs to show some states with color on the USA map.
    I am working as developer in OBIEE 11g.
    Dont know about the map Metadata in OBIEE.
    So kindly, share some of your experience and show some demos or steps to implement this requirement.
    my mail id : [email protected] , Bangalore.
    if you share your mail id it will be great helpfull to interact easily.
    Thanks,
    Govardhana

    Hi,
    Can anybody help on this?
    I'm getting errror like "Map metadata has not setup"
    Please help on this...
    Thanks & regards,
    Thiru.K

Maybe you are looking for

  • HT4859 How do I back up contacts to icloud?

    How do I back up contacts from Lotus Notes to icloud?

  • Problem in Select Statment

    I have two tables <b>TAB1</b> <u>F1</u>     <u>F2</u> A1     AA A2     AA A3     BB A4     AA A5     AA <b>TAB2</b> <u>F1</u>     <u>F2</u>     <u>F3</u> B1     AA     D1 B2     BB     D1 B3     CC     D1 B4     AA     D2 B5     AA     D3 B6     BB  

  • Facing problem in placing portlet on Web Layout

    I am facing problem in placing portlets on Web layout page- 1. I am getting some space between the regions. I want that my portlet should join adjacent only not even a single pixel gap should be there. 2. In Web Layout, First region is the left most

  • An error occured during local report processing

    Hi Experts, I developed a report and was trying to preview the report on BIDS(2012). I keep getting the following error      an error occurred during local report processing      an error has occurred during report processing I deployed and viewed it

  • Phone unable to be detectected by itunes

    After upgrading to the new software my iphone is unable to sync. It freezes and am unable to use any fuctions. the error message I am getting is "we could not complete your itunes store request. A secur network connection could not be established. Ma