OBIEE lag in diff OS

Hi all,
I have installed OBIEE 11.1.1.6.0 on windows xp professional sp2,
as well as windows 7 prof edition sp1.
In windows 7 the time taken to connect and even to expand its taking 3-5 minutes minimum
where as in xp its pretty fast.
both the systems hav 8gb ram and i7 procssr both are newly installed
I am trying to connect to server which is installed on windows server 2003 R2 sp2
any suggestions plz.
Thanks

Prob at os level
tried this command at windows 7 machine
netsh interface tcp set global autotuninglevel=disabled
issue resolved

Similar Messages

  • Linux OBIEE installation in diff OS level

    Hi
    DEV1(53)
    RHEL4-U3-x86_64
    Linux CERSAPP01 2.6.9-34.ELsmp #1 SMP Fri Feb 24 16:56:28 EST 2006 x86_64 x86_64
    x86_64 GNU/Linux
    Software version:BISHIPHOME_11.1.1.6.0_LINUX.X64_120105.0840(successfull)
    UAT(119)
    RHEL5-U6-x86_64-20100707(5U5 Upgrade)
    Linux mywlcerd01 2.6.18-238.el5 #1 SMP Sun Dec 19 14:22:44 EST 2010 x86_64 x86_64 x86_64 GNU/Linux
    software version:BISHIPHOME_11.1.1.6.0_LINUX.X64_120105.0840(successfull)
    DEV2(82.83)
    RHEL5-U6-x86_64
    Linux mywlcer003 2.6.18-238.el5 #1 SMP Sun Dec 19 14:22:44 EST 2010 x86_64 x86_64 x86_64 GNU/Linux
    software version:
    BISHIPHOME_11.1.1.6.0_LINUX.X64_120105.0840(Failed)
    BISHIPHOME_11.1.1.5.0_LINUX.X64_110428.1308
    (Successfull)
    Test(235)
    RHEL5-U3-x86_64-
    Linux trdDapp01 2.6.18-120.el5 #1 SMP Fri Oct 17 18:00:55 EDT 2008 x86_64 x86_64 x86_64 GNU/Linux
    software version:
    BISHIPHOME_11.1.1.6.0_LINUX.X64_120105.0840(Failed)
    Prod(84.29)
    RHEL5-U4-x86-64
    Linux uklpapcer02a 2.6.18-164.el5 #1 SMP Tue Aug 18 15:51:48 EDT 2009 x86_64 x86
    _64 x86_64 GNU/Linux
    software version:
    My question is:
    1. Box DEV2(82.83) 11.1.1.6.0 version failed after i downloaded 11.1.1.5.0 then installed.
    Why i am not able to install 11.1.1.6.0 in dev2 and Test box.
    2. In my production can i install same software used in DEV1 and UAT (11.1.1.6.0.) Is it acceptable based on prod OS or not?
    3. If you check above details DEV1,UAT1 and PROD have the diff upgrade OS.Can i install 11.1.1.6.0.in prod,while installation it will impact anything in PROD? or goes
    well?
    Thanks
    Gram
    Edited by: Raj on Mar 4, 2013 12:25 PM

    Prob at os level
    tried this command at windows 7 machine
    netsh interface tcp set global autotuninglevel=disabled
    issue resolved

  • Diff between 7.7 to latest obiee release

    hi
    how much is diff between 7.7 analytics to latest verison of obiee

    Not sure what the last 'Siebel' release was but there as been a few since. I can think of at least Time Series functions (OBIEE 10.x : AGO and TODATE) and Essbase support (OBIEE 'Plus') , "Time Series" graph in 10.1.3.4.1 .
    I would personally read the the release notes. BTW the latest is 10.1.3.4.1
    Others will no-doubt chime in with some more.

  • Date diff in obiee

    Hi,
    how can i calculate date difference in hours from 2 dates(timestamp) in obiee
    i.e. 02/03/1986:08:00 and 03/02/1986:0:14:00

    Hi,
    If you are having two date column and want the difference in hours then try with the below function:
    timestampdiff(SQL_TSI_HOUR, date_column1, Date_Colum2)
    or if you are having two date value in the expression itself then go with the below syntax:
    timestampdiff(SQL_TSI_HOUR, TIMESTAMP'1998/07/31 23:35:00', TIMESTAMP'2000/04/01 14:24:00')
    Hope it helps,
    Regards,
    Bose
    Edited by: Bose on Mar 20, 2012 3:33 PM
    Edited by: Bose on Mar 20, 2012 3:38 PM

  • Diff between prompted & Bookmark link in OBIEE

    Hi All,
    I have created one dashboard on which I have applied both bookmark & prompted link.I am able to access it by weblink but can antbody tell me that what is the difference in both the links?Its showing me teh same results in my report then whats the use of that links?
    Thanks in advance!!!
    Regards,
    Sonal

    A bookmark link it's a link to a pre-saved cached report which someone executed and wants to share with people. A prompted link is a link with the parameters exposed so you can change them and execute the report again with different parameters.

  • Using lag and rank in the same query

    Hi
    I am trying to find out the difference in time between peoples memberships and also the order that these memberships are taken out in. So far I have added in a rank statement to work out the order the memberships were created in, but now want to look at the difference between the dates returned. The SQL I used is:
    SELECT owner_party_id,
    mem_number,
    support_id,
    mem_start_date,
    RANK() OVER (PARTITION BY owner_party_id ORDER BY mem_start_date ASC) MEMBERSHIP_SEQUENCE
    FROM membership_all
    WHERE version_type = 'CUR'
    AND owner_party_id IN ('65051', '65051', '65348', '65348', '65607', '65607', '65607')
    to get:
    "OWNER_PARTY_ID"|"MEM_NUMBER"|"SUPPORT_ID"|"MEM_START_DATE"|"MEMBERSHIP_SEQUENCE"
    65051|318874751|8014747|01-MAR-10|1
    65051|412311060|21502883|15-AUG-12|2
    65348|308672459|3526913|01-MAY-10|1
    65348|409951130|20950524|18-JUN-12|2
    65607|315830192|7510133|17-MAY-10|1
    65607|406448110|20024246|16-MAR-12|2
    65607|409738130|20903556|14-JUN-12|3
    Now I would like to calculate the difference between the start dates of each of the owner_party_id groups, so to get something like this:
    OWNER_PARTY_ID|MEM_NUMBER     |SUPPORT_ID|MEM_START_DATE     |MEMBERSHIP_SEQUENCE|Diff
    65051|318874751|8014747|01-Mar-10|1|     
    65051|412311060|21502883|15-Aug-12|2|898
    65348|308672459|3526913|01-May-10|1     
    65348|409951130|20950524|18-Jun-12|2|779
    65607|315830192|7510133|17-May-10|1     
    65607|406448110|20024246|16-Mar-12|2|669
    65607|409738130|20903556|14-Jun-12|3|90
    I think that I need to use the Lag function in, but I am not too sure if it can be linkited to look at the data within a grouping of owner party id, as it would make no sense to calculate the difference in dates for two different owner party ids.
    Any advice much appreciated.
    Thanks
    Edited by: 992871 on 09-Mar-2013 23:34

    Couple notes:
    1. You wrote you want to get order that these memberships are taken out in, however, both your and Etbin's queries calculate order within each owner_party_id and not across all members. If you want to get rank and difference in time regardless of member's owner_party_id remove PARTITION BY caluse.
    2. You might want to use DENSE_RANK and not RANK depending how you want to display rank. If two people joined at the same time and were second in rank, analytic RANK will be:
    RANK
    1
    2
    2
    4
    5
    .while DENSE_RANK:
    DENSE_RANK
    1
    2
    2
    3
    4
    .SY.

  • OBIEE 11g - Wrong values getting passed in Prompts

    Hi All,
    I am in 11.1.1.6.0
    I have a report, lets say report 1 and following are its properties
    1. it has two columns, one dimension (empname) and one fact (revenue)
    2. on the revenue column, i have applied an action link which takes me to another dashboard page 'empdetails'. On this dashboard page, I have two dashbaord prompts one for empname and other for departmentname
    3. the report has a filter on the departmentname field as departmentname is not equal to/not in 'unknown' and 'unassigned'
    So basically I am looking at the revenue for every employee and excluding the departments which are unknown and unassinged
    Now the issue is when I am navigating from revenue value( by clicking on the revenue) to another dashboard page 'empdetails', it passess the values for empname( which is expected because empname is the column in the report) but it is also passing the values of departmentname not equal to/not in 'unknown' and 'unassigned' to the dashbaord prompts.
    So when it takes me to the dashboard page, i see the empname prompt already populated (with the empname whose revenue i clicked) but also the departmentname prompt with values 'unknown' and 'unassigned'. Why would obiee do that? Why will the values from the report level filter be passed to the dashbaord prompt of another page? Is this a bug?
    I removed the filter departmentname is not equal to/not in 'unknown' and 'unassigned' from the report and then it works fine.
    How can I fix this, i need the departmentname filter in my report
    Thanks, Ronny

    Hi Ronny,
    In case of navigation, the filters too along with the other columns are passed to the target. In your scenario, you can try to change the fx of your departname coloumn in the filter to something like:
    case when 1=0 then 'DummyValue' else DepartNameColumn end
    Now, the fx in the filter and the formula in the prompt would differ. This might help to resolve your issue.
    Thanks

  • Date Difference in OBIEE

    Hi
    I have two date columns and I want one logical column which contains difference of those two DATE columns.
    But I found that we dont have any Date difference or Date Add functions in OBIEE Answers.
    Can anyone tell me any work around for the Date ADD/DIFF functions?
    Thanks
    Radha

    Or if you want database specific date functions, use EVALUATE and then specify the database functions. Check my blog entry here http://oraclebizint.wordpress.com/2007/09/10/oracle-bi-ee-10133-support-for-native-database-functions-and-aggregates/
    Thanks,
    Venkat
    http://oraclebizint.wordpress.com

  • Performance of OBIEE report whereas SQL query behind it executed in 1-2 min

    Facing lot of performance issues in OBIEE reports, whereas SQL query behind the report fetch data in 2-3 minutes. Reprot take around 1-2 hrs. Can anyone help to resolve this please?

    (my 2c worth)... if the physical query runs for a reasonably short time but the report takes much longer to return it suggests the rendering process (ie. pivot view) is lagging.
    To test this theory, go into Answers and remove all views from the request and leave a simple table view on the compound view. Run the report and the report should return around the same time the physical request takes to run because the table view is a very raw, un aggregated rendering process. Table views are nice and fast. If that works then you can focus on tuning your other views, ie. Pivot view. I've seen a simple pivot view take minutes to render what looks like a simple report because the underlying recordset is quite large.
    I hope this helped. another quick trick you could try is applying aggregation in the formulas to aggregate things at the physical sql level so the returning result set isn't 5,000. depends what you're up to with the end report.
    Edited by: user8300108 on 25-Feb-2010 04:40

  • How to model multiple parent hierarchy in obiee

    hi,
    I have product hierarchy with multiple parents for a single level. and i want to display all the levels of hierarchy at a same time.
    Below mentioned is wht data i am getting from product table in OLTP
    current product diamension
    root1--level 1
    child product1--level 2
    child product2--level 3
    child product3 ----level 4
    and
    root2----level 1
    child product4----level 2
    child product2----level 3
    child product3 ----level 4
    If u see we have child product2 belongs to two diff hierarchies.
    My report req is i want to show all the levels of product in single row.Some thing like
    Mb no. level 1 level 2 level 3 level 4
    123 root1 CP1 Cp2 CP3
    123 root2 CP4 CP2 CP3
    How to model this scanario in OBIEE?

    H,
    Refer this
    http://oraclebizint.wordpress.com/2007/11/30/oracle-bi-ee-101332-one-dimension-multiple-hierarchies/
    http://www.rittmanmead.com/2010/11/oracle-bi-ee-11g-parent-child-hierarchies-multiple-modeling-methods/
    Thanks
    Deva

  • How to Identify duplicates in OBIEE Answers.

    Hi Friends,
    Please help me here.
    I am having a secnario in OBIEE Answers.
    How to identify duplicates using combination either first names with Last Name or with DOB in OBIEE.I dont have access to RPD currently.
    Also please let me know using RPD also how i achive this .
    Example :
    Cusomers table:
    First_Name Last_Name DOB
    ABC XYZ 29-Mar-2011
    ABC XYZ 28-Mar-2011
    ABC PQR 29-Mar-2011
    ABC XYZ 29-Mar-2011
    Case 1: Check row 1 & row 2 having First_Name & Last_Name duplicate but DOB is differ.
    Case 2: check row 1 & row 3 having First_Name & DOB duplicate but last name is differ.
    case 3: check row 1 & row 4 having First_Name,Last_name & DOB duplicate.
    Advance Many Thanks.,
    Dak

    Hi Dak,
    option 1:
    go to advanced tab of that particular report...
    You find check box Check this box to issue an explicit Select Distinct
    option 2:
    Uncheck the following item in Physical layer database features.
    DISTINCT_SUPPORTED
    For displaying duplicate rows refer : http://carpediemconsulting.wordpress.com/2008/08/13/displaying-duplicate-values-in-obiee-reports/
    Thanks
    Aravind

  • OBIEE + Essbase slow execution

    Hi,
    I'm using OBIEE version 10.1.3.4.1 and Essbase 9.3.1.3 as a data source. I have an Answers report with a certain number of columns that are using AGO, TODATE functions, etc and they work fine. Now I have a need for a column that would also implement a TODATE funcitionality, but for the previous year – for example, if I choose March 2009, I need to show aggregated data for January, February and March of *2008*.
    Since I did not manage to get this just through the OBIEE functions that are available, the solution was to use the EVALUATE_AGGR function with the following expression:
    EVALUATE_AGGR('AGGREGATE(PeriodsToDate(%1,%2.dimension.currentmember.lag(12)), %3)', Time.Year, Time.Month, Accounts.Sales).
    Here I use the Essbase function “Lag” to shift the aggregation 1 year back (12 months).
    This works fine, in that is gives the correct result, however it is very very slow when used in my report that gives cca. 18 columns and cca. 15 rows back as the result.
    Does anyone know why is such report so slow, is it because of the Evaluate function, because of the Lag function or something else?
    Any ideas?
    thank you

    Hey, thanks a lot for a quick answer!
    You are right on both of your assumptions - multiple MDX are indeed fired and we do not have the possibility of chaning Essbase cubes.
    Can you perhaps think of any other way of implementing this "todate for year ago" functionality?
    Is there any way to control how OBIEE generates MDX? Hints maybe or something like that?
    In addition to my first post, I would just like to add that the query is much much faster when I include, as a column in Answers, all the columns on which I apply a filter - example: I'm filtering by dimension "Segmentation", Generations 2 and 3 - when I don't have these coumns in the report itself so that the chosen segmentations are seen as a column, the report is very very slow (initial issue). But when I include them in the report (not just use them in filter), the report becomes very fast and would do fine for us as such. The problem is that I do not need to show the data 'divided' by segmentation (as it is when the columns are in the report, not just filter).
    Edited by: ivo@cro on Mar 22, 2010 1:01 PM

  • Doing OBIEE with Essbase as datasource, anybody who has experience?

    Hello guys
    Does anybody have good experience dealing with essbase data on OBIEE? Essbase doesn't seem to be a relational database like oracle, data are stored as cube. One cube contains dimesion and fact attributes with hierarchical levels defined in essbase.
    I don't have experience dealing with these type of scenario, therefore I run into a lot of issues when I try to create report on answers..
    Typically, when I apply any conversation functions or "SQL expression" values on date column filters or contents (such as cast(column as date), or filter on current_date on SQL Expressions) and create reports with measures, I get errors: [nQSError: 42043] An external aggregate is found in an outer query block. (HY000)
    If create reports only with date column alone with the above applied, I get errors like inconsistent data type or something..
    I believe that for some reasons when OBIEE sends the query to essbase and get converted into MDX, something got lost in translations.
    With the same environment, I imagine if I were to create some dynamic variables with select statement, it will also not work since there is no "column" and "table" in essbase the same way as in relational database. So how would I define dynamic variables with max sales or something?
    So is there any help I can get in terms of dealing with essbase on obiee?
    Any pointers will be greatly appreciated
    Thanks

    Without access to the rpd you're not going to get far. Yes, you can achieve both things, but it will mean writing MDX and to use MDX in both the filters and the columns is not something I'd recommend since you'll be facing loads of issues.
    Date filter:
    The "normal" function you're using won't work. That's for sure. You will have to wrap the whole thing into an EVALUATE and write MDX...like the Lag function I mentioned before. If your time dimension is just taken over from Essbase in the normal drag-and-drop way, then it won't be a full "time dimension" anyway.
    A column formula along the lines of this:
    EVALUATE('[Time Period].[2009-04-15].Lag(7)')
    Measure calculation:
    Again, without access to the rpd this will be pretty hard to do due to the question where the aggregation actually happens. Venkat wrote about that recently.
    http://oraclebizint.wordpress.com/2009/04/06/oracle-bi-ee-10134-and-essbase-connectivity-understanding-aggregations-part-1/
    http://oraclebizint.wordpress.com/2009/04/07/oracle-bi-ee-10134-and-essbase-connectivity-understanding-aggregations-part-2/
    http://oraclebizint.wordpress.com/2009/04/09/oracle-bi-ee-10134-and-essbase-connectivity-understanding-aggregations-part-3/
    http://oraclebizint.wordpress.com/2009/04/13/oracle-bi-ee-10134-and-essbase-connectivity-understanding-aggregations-part-4/
    Cheers,
    Christi@n

  • On the AGO Function need to Create TODATE function with Diff levels - MTD,Q

    Hi All,
    My Basic Requirement is to Create Time Series Function on AAA ie ( Month To Date , Quarter To Date and Year To Date )
    The Logic for the AAA = XXX / Previous 3 Months Revenue.
    we know that we can use the AGO Function to create Previous 3 months Revenue with Month is Level . But the issue is .... i cant use AGO function since i need to perform Year to Date, QTD and MTD upon 'AAA' this OBIEE doesn't permit to use nested time series functions upon varying levels .
    So How can i Resolve the issue ie creation of TODATE function on the AGO Function with Diff levels
    Thanks,
    Swapna S

    hi,
    for your requirement create three repository variables like
    for previous 3 months create repository variable like
    select to_char(sysdate,'yyyymm') -3 from dual;
    for month to date first calculate first day of the month
    select To_Char(Add_Months(Last_Day(Sysdate),-1) + 1,'MM/DD/YYYY') from dual;
    after put a filter in answers date between first date of the present month and current date
    create the same thing for year to date
    calculate first date in the year like following query
    select To_Char(Trunc(Sysdate,'YEAR'),'MM/DD/YYYY') from dual;
    after that apply filter date b/w first date in the year and current date
    i hope it works for your scenario
    Regards
    Naresh
    Edited by: Naresh Meda on Nov 10, 2008 2:08 AM
    Edited by: Naresh Meda on Nov 10, 2008 2:12 AM

  • How can we differ which is a fact and which is a dimension?

    Hi All,
    I'm a new bee to OBIEE...
    If any one can help me out or provide me a link...
    if we have multiple facts and dimensions? How can we differ which is a fact and which is a dimension?
    Thnkx in Advance.

    Hi ,
    You can identify the facts and Dimension based on the data.
    You have to analyze.
    Generaly the Table with measure column (Max column in the table) we will consider as Fact.
    Table with attribute as Dimensions.
    For the Facts we can apply the aggregate rules.
    Thanks,
    Ananth

Maybe you are looking for

  • Help required for sample and Hold

    Hello, I am working on a project Cerebral Oxygenation Monitoring. The concept is similar to pulse oximetry. I help already developed the hardware that includes the timing circuit , led driver for driving Red and IR Led, Amplifier and Filter Stage. I

  • Bill of Lading (BOL) was not printing properly

    Hi ,      In Production system, Bill of Lading (BOL) was not printing properly. Only a part of BOL is printed. It was happening only for one BOL, where as other BOLs are printing correctly. Even spool was generated successfully. Cananybodytellmewhati

  • If a number is blocked on an iPhone is it also blocked on the iPad it deals with?

    If a number is blocked on an iPhone, is it also blocked on the iPad associated with that number?

  • Bluetooth issues. Found solution thread. Need help applying it.

    Arch can't find my bluetooth controller, as documented in my last post about it here: https://bbs.archlinux.org/viewtopic.php?id=174694 (That was 3 weeks ago, so I'm making a new post now.) Basically, I have the hardware (Bluetooth works in other OSs

  • Why is audio so sluggish in Logic?

    I am wondering if there is a good reason why logic has always been soo sloooow when handling audio. If you do anything, such as move a clip (region) during playback, it takes about 3 seconds to have an audible effect. I allways avoid using audio in l