Issue with  OBIEE ROW_NUMBER() OVER (PARTITION BY)

Hi All,
I am facing some issue with the ROW_NUMBER() OVER (PARTITION BY function in the query that is being generated. I am currently on version 11.1.1.6. I have 1 FACT and 1 Dimension table. Within the dimension I have create a level based hierarchy namely REGION -> GROUP - DIVISION etc. Now the problem is that the OBIEE automatically applies *"ROW_NUMBER() OVER (PARTITION BY T9.PRODUCT_TYPE_DESC, T130.DIVISION_DESC, T130.REGION_DESC ORDER BY T9.PRODUCT_TYPE_DESC ASC, T130.DIVISION_DESC ASC, T130.REGION_DESC ASC) "
to the query where in it is not required at it returns with 3 different row numbers. If i remove this line and the where clause I am able to get correct results however its not working whatever I do in the RPD. Please advise.
WITH
SAWITH0 AS (select D1.c1 as c1,
D1.c2 as c2,
D1.c3 as c3,
D1.c4 as c4,
D1.c5 as c5,
D1.c6 as c6
from
(select sum(T157.PL_GRAND_TOTAL) as c1,
sum(T157.TRANSACTION_AMT) as c2,
T130.DIVISION_DESC as c3,
T130.REGION_DESC as c4,
T130.GROUP_DESC as c5,
T9.PRODUCT_TYPE_DESC as c6,
ROW_NUMBER() OVER (PARTITION BY T9.PRODUCT_TYPE_DESC, T130.DIVISION_DESC, T130.REGION_DESC ORDER BY T9.PRODUCT_TYPE_DESC ASC, T130.DIVISION_DESC ASC, T130.REGION_DESC ASC) as c7
from
DIM_ALL_MODULES_REF T9,
DIM_MIS_TREE_REF T130,
DIM_DATE_SERIES T123,
FCT_ALL_MODULES_TRANS T157
where ( T9.SGK_MIS_ID = T130.SGK_MIS_ID and T9.SGK_MODULE_ID = T157.SGK_MODULE_ID and T123.SGK_TIME_ID = T157.SGK_TIME_ID and T123.TRANS_DATE between TO_DATE('2011-01-01 00:00:00' , 'YYYY-MM-DD HH24:MI:SS') and TO_DATE('2011-03-31 00:00:00' , 'YYYY-MM-DD HH24:MI:SS') )
group by T9.PRODUCT_TYPE_DESC, T130.DIVISION_DESC, T130.GROUP_DESC, T130.REGION_DESC
) D1
where ( D1.c7 = 1 ) ),
SACOMMON42934 AS (select T130.DIVISION_DESC as c2,
T130.REGION_DESC as c3,
T130.GROUP_DESC as c4,
T9.PRODUCT_TYPE_DESC as c5,
sum(T258.BEG_NMK_EQ_COST_AMT) as c6,
T123.TRANS_DATE as c7,
sum(T258.END_NMK_EQ_COST_AMT) as c8
from
DIM_ALL_MODULES_REF T9,
DIM_MIS_TREE_REF T130,
DIM_DATE_SERIES T123,
FCT_MODULES_BEG_END_BAL T258
where ( T123.SGK_TIME_ID = T258.SGK_TIME_ID and T9.SGK_MIS_ID = T130.SGK_MIS_ID and T9.SGK_MODULE_ID = T258.SGK_MODULE_ID and T258.PRODUCT_TYPE_ID = 2 and T123.TRANS_DATE between TO_DATE('2011-01-01 00:00:00' , 'YYYY-MM-DD HH24:MI:SS') and TO_DATE('2011-03-31 00:00:00' , 'YYYY-MM-DD HH24:MI:SS') )
group by T9.PRODUCT_TYPE_DESC, T123.TRANS_DATE, T130.DIVISION_DESC, T130.GROUP_DESC, T130.REGION_DESC),

Hi Dhar,
Thanks for replying back. But the ROW_NUMBER thing is inserted with the "WITH SUPPORTED" clause only but that is something which are the default settings. However, I notice that ROW_NUMBER() OVER (PARTITION BY) lines are erratic and are not consistent. So sometimes the drill works properly when no ROW_NUMBER() OVER (PARTITION BY) is generated but other times data is wrong. I am not sure why this behaviour is erratic even though I select the same values.
This is surely a product problem as the condition where c7 = 1 filters the result and does not take into account all values.
Even when I do not use WITH_SUPPORTED clause the stitch does not happen properly. Please advice if this is ever going to be by Oracle or any work around for this?
Thanks

Similar Messages

  • Issue with ROW_NUMBER() OVER (PARTITION)

    Hi,
    Please read the Thread completely, I have created a Report to see Yearly Turnover%, The report works fine but when I take Quarter and Months in it, it restricts the result to only 1 line(i.e., my first year's Turnover) and when I opened the Physical query, I saw the BI Server is using
    ROW_NUMBER() OVER (PARTITION BY)
    which is not at all necessary.
    *I tried disabling WITH_CLAUSE_SUPPORTED and PERF_PREFER_MINIMAL_WITH_USAGE but didn't get any resolution, Could anybody help me out?
    thanks in Advance,
    Anand

    You said 'it restricts the result to only 1 line' means the value is nor drill down to next level?
    In that case Yearly Turnover% is set to Year level?

  • Qualify row_number over(Partition by col order by col) and char2hexint() functions in informatica

    How to implement qualify row_number over(Partition by col order by col) and char2hexint in informatica in a way that is supported by pdo?
    Apart from sql overriding or using stored procedure ,is there any other solution?Can rank transformation help here? ....But, I guess rank transformation cannot be pushed down..
    help please !

    Hi Saichand,
    The links were helpful. But i am not getting how it is working in test and not in live.
    I found one difference while deploying . The column names of the object both in Test and Production had spaces.For E.g: Full Name
    When this column Full Name is pulled to the repsository in test , it automatically put double quotes for the column names in the physical sql when it hits the database.
    But, In production , when I pulled the column the report gave error as Invalid Identifier since OBIEE generated column name as Full Name without double quotes.
    Then I changed the column in Phyiscal Layer repository by having double Quotes for all columns. Afte that report worked fine.
    Whether this has caused any issue in Row Partition.
    Is there any setting to have column name in Double Quotes ?
    Thanks,
    Johnny

  • ROW_NUMBER() OVER (PARTITION

    hi, can anyone explain, especially this part
    ROW_NUMBER() OVER (PARTITION BY A.USER_ID ORDER BY A.TNP_TRACK_ID DESC) RN
    Thanks
    newbie
    SELECT A.TNP_TRACK_ID, A.USER_ID, NVL(A.DELETED,0) DELETED, A.CREATE_TIME, A.DELETE_TIME, B.PRODUCT_CODE, C.LOGIN_NAME,
    ROW_NUMBER() OVER (PARTITION BY A.USER_ID ORDER BY A.TNP_TRACK_ID DESC) RN
    FROM MISPNA.TNP_TRACKABLE_' || TO_CHAR(p_reporting_month, 'YYYYMM') || ' A
    JOIN TMP_VRZ_LATEST_SOC B ON A.TNP_TRACK_ID = B.TRACK_ID
    JOIN MISPNA.TN_LOGIN C ON A.USER_ID = C.USER_ID
    WHERE A.DELETED<>1

    Hi,
    949523 wrote:
    thank you very much, the whole original script is
    SELECT TNP_TRACK_ID, USER_ID, DELETED, CREATE_TIME, DELETE_TIME, PRODUCT_CODE, LOGIN_NAME
    FROM (
    SELECT A.TNP_TRACK_ID, A.USER_ID, NVL(A.DELETED,0) DELETED, A.CREATE_TIME, A.DELETE_TIME, B.PRODUCT_CODE, C.LOGIN_NAME,
    ROW_NUMBER() OVER (PARTITION BY A.USER_ID ORDER BY A.TNP_TRACK_ID DESC) RN
    FROM MISPNA.TNP_TRACKABLE_' || TO_CHAR(p_reporting_month, 'YYYYMM') || ' A
    JOIN TMP_VRZ_LATEST_SOC B ON A.TNP_TRACK_ID = B.TRACK_ID
    JOIN MISPNA.TN_LOGIN C ON A.USER_ID = C.USER_ID
    WHERE A.DELETED <>1
    WHERE RN != 1';I assume the single-quote near the end is just an editing typo.
    >
    so seems like with specified user_id, it will pick greatest tnp_track_id ? ( as it asks RN=1)That's what it would be doing if the last line read
    WHERE  rn = 1; for each user_id, that query (with = on the last line) would display all the SELECTed values from the row with the greatest tnp_track_id.
    Since you're using != , however, then it's doing just the opposite; it's displaying all rows except the row with the greatest tnp_track_id.
    The sub-query is necessary here. All analytic functions, including ROW_NUMBER, are evaluated after the WHERE clause has been applied. To use the results of an analytic function in a WHERE clause, you have to compute the function in a sub-query first.
    Edited by: Frank Kulash on Jan 7, 2013 8:08 PM
    Just noticed you're saying "WHERE RN != 1" ( not equals)

  • Convert SQL Server ROW_NUMBER() OVER(PARTITION BY() Query to Access

    Hi,
    I am having trouble with converting this SQL Server query to Access. If anyone can give me help I would appreciate it.
    SELECT B.AMOUNT_REQUESTED, B.INIT_OFF, B.MBR_NBM, B.STATUS, B.APPLICATION_NBR
    FROM
    SELECT AMOUNT_REQUESTED, INIT_OFF, MBR_NBM, STATUS, APPLICATION_NBR, ROW_NUMBER() OVER(PARTITION BY MBR_NBM ORDER BY MBR_NBM) RN
    FROM LOAN_DATA
    WHERE APPLICATION_DATE BETWEEN '20150420' AND '20150425'
    ) B
    WHERE RN = 1
    ORDER BY B.MBR_NBM

    While there is no equivalent to ROW_NUMBER(), it appears that you are just wanting the first row of each group, and that CAN be accomplished in Access, but I do wonder why you would WANT to do that in Access if your data is stored in SQL Server.  As
    Tom indicated a Pass Through query object is likely your best bet -- or a View in SQL Server, then create a Linked Table object that points to it.
    To get the first of each group ... which is essentially a TOP n, where n = 1 ... so .. the first thing you will want to indentify is a second field to use as a Key in order to define the "first" row you want in the group.  In your SQL
    statement, you are ordering my mbr_nbm, so the secondary sort is unknown -- likely predicable, but unknown with out knowledge of the schema ... so, I will provide samples by using APPLICATION_DATE as the sort key.
    This one is the "first" of a series with the assumption that the one you want is the one with the "biggest"/"most recent" APPLICATION_DATE. 
    SELECT vLoanData.AMOUNT_REQUESTED, vLoanData.INIT_OFF, vLoanData.MBR_NBM, vLoanData.STATUS, vLoanData.APPLICATION_NBR
    FROM LOAN_DATA As vLoanData
    INNER JOIN
    (SELECT MBR_NBM, Max(APPLICATION_DATE) As LastAppDate
    FROM LOAN_DATA As vLast
    GROUP BY MBR_NBM) As vLastApp ON vLoanData.MBR_NBM = vLastApp.MBR_NBM And vLoadData.APPLICATION_DATE = vLastApp.LastAppDate
    Or ... the following is a TOP n query where n = 1.
    SELECT vLoanData.AMOUNT_REQUESTED, vLoanData.INIT_OFF, vLoanData.MBR_NBM, vLoanData.STATUS, vLoanData.APPLICATION_NBR
    FROM LOAN_DATA As vLoanData
    WHERE (vLoanData.MBR_NBM & '|' & vLoanData.APPLICATION_DATE)
    IN (SELECT TOP 1 (vCorrelated.MBR_NBM & '|' & vCorrelated.APPLICATION_DATE) As Key
    FROM LOAN_DATA As vCorrelated
    WHERE vCorrelated.MBR_NBM = vLoanData.MBR_NBM
    ORDER BY vCorrelated.MBR_NBM, vCorrelated.APPLICATION_DATE DESC)
    This second example is not going to win you any points with respect to speed, but is truly a closer model to the TOP N type thing you are doing in SQL Server.
    Hope that helps!
    Brent Spaulding | Access MVP

  • How can use row_number() over partition by plz provide some doc.

    row_number() over (partition by)
    what is this and how can use it in sql query.
    if ur have any documentation of it. plz give...me..
    thanx sir
    thanx in advance.

    http://download-uk.oracle.com/docs/cd/B10501_01/server.920/a96540/functions105a.htm
    SELECT empno, deptno,
    row_number() over (partition by deptno order by empno) rn
    from scott.emp
         EMPNO     DEPTNO RN                                    
          7782             10     1
          7839             10     2
          7934             10     3
          7369             20     1
          7566             20     2
          7788             20     3
          7876             20     4
          7902             20     5
          7499             30     1
          7521             30     2
          7654             30     3
          7698             30     4
          7844             30     5
          7900             30     6Regards
    Dmytro

  • Google Chrome/Apple Safari Browser Issues with OBIEE

    We are having issues rendering images, charts and dashboards in Google Chrome and Apple Safari. Everything is working correctly in IE and Fire Fox.
    We are on OBIEE version 10.1.3.3.1 running on Solaris 10 and Oracle DB Version 10g.
    I understand that these browsers are not supported, but I have seen several screenshots and threads with OBIEE being accessed with Chrome and Safari.
    Has anyone run into this issue before and over come it? Are any configuration changes needed in order to make this work?
    Edited by: user3560357 on Oct 22, 2010 6:53 AM

    Sorry to chime after a long time, but I am having this issue as well. When i look in the webserver logs (iPlanet 7) I see that OBIEE is trying render images but appending "Missing_" to them. This only happens with Chrome and Safari. Any input would be appreciated.
    iplanet logs:
    [10/Nov/2010:15:52:19] config ( 6450): for host 10.10.10.10 trying to GET /analytics/saw.dll, Client-Auth reports: HTTP4034: get-client-cert requires that security and SSL3 be enabled.
    [10/Nov/2010:15:52:21] warning ( 6450): for host 10.10.10.10 trying to GET /analytics/Missing_logon.css, send-file reports: HTTP4142: can't find /opt/iplanet/servers/https-anlt311-saw/web-app/anlt311-saw/analytics/Missing_logon.css (File not found)
    [10/Nov/2010:15:52:21] warning ( 6450): for host 10.10.10.10 trying to GET /analytics/Missing_common.js, send-file reports: HTTP4142: can't find /opt/iplanet/servers/https-anlt311-saw/web-app/anlt311-saw/analytics/Missing_common.js (File not found)
    [10/Nov/2010:15:52:21] warning ( 6450): for host 10.10.10.10 trying to GET /analytics/Missing_browserDOM.js, send-file reports: HTTP4142: can't find /opt/iplanet/servers/https-anlt311-saw/web-app/anlt311-saw/analytics/Missing_browserDOM.js (File not found)
    Thanks,
    RG

  • Issue with OBIEE 10.1.3.4.2 in MUDE mode

    Can any one help me in getting bug list of OBIEE 10.1.3.4.2?
    Actually we are experiencing issues in using MUDE. When creating any new logical or use any physical objects by creating alias to it we get issue with the newly created objects. Hence we are not able to merge the changes to the original RPD. Though we are able to achieve the same in non-MUDE mode (offline).
    Is there any restriction in 'Projects' that we create for using MUDE that no new objects are to be created and only existing objects to be used? Or is this a fresh bug in 10.1.3.4.2?
    Edited by: Vishnu Ramakrishnan on 02-Apr-2013 08:12

    Mud Check In Fails [ID 1271010.1]
    BUG:9968358 - OBIEE MUD CONSISTENCY ERROR WHEN MERGING
    Hope this helps.
    Thanks,
    SVS

  • Weird issue with OBIEE Server

    Hi All,
    There is a scenario in obiee 10.1.3.4.1 need some help with this, where a sas service is restarting because of the hanging sessions in the rpd. Let me explain this in detail
    recently we were seeing lot of server bounces during the busiest usage of the application, when we digged into the details, we found that some of the hanging sessions were causing the server restart. This is wierd right, i thought so too, so whats happening basically is there is a cache file that is created by this hanging session that the obiee is not able to delete during the event poll trigger to dump the cache. so if we manually kill any such sessions by opening the rpd online, the server restart doesnot happen, but the real question is why would a session hang in the rpd and stay there in rpd for 3 or 4 days, even if the user did not login to the application in the last 3 days.
    We have a 60 min idle session timeout at the presentation layer, which is exactly the same as SSO timeout
    Does anyone have faced such scenario with OBIEE
    Thanks
    Vikram

    Hi Kurt,
    Bug 13359653 exists for this (presentation server side) and has itself spawned 13639704 (server side). The former was addressed in 11.1.1.5.0 BP2 (or patch 13359653), but 13639704 hasn't progressed yet.
    Cheers.
    C.

  • Issue with OBIEE 11.1.1.5.0 Installation on Windows 2008 64-bit machine

    Hi
    I'm following the below steps to install OBIEE 11.1.1.5.0 Installation on Windows 2008 64-bit machine. However the installation is unsuccessful as it fails at the "Domain Creation" step. It would be very helpful and greatly appreciated if any workaround is provided. Thanks!
    1.JRockit Windows 64 bit Version jrockit-jdk1.6.0_24-R28.1.3-4.0.1-windows-x64
    2. Oracle 11G Database
    3. RCU Installation
    4. WebLogic 10.3.5.0 Generic Version
    5. Weblogic patch
    6. OBIEE 11G 64 bit version (11.1.1.5). Software only
    7. Execute Configure.bat in :\Middleware\Oracle_BI1\bin
    Thanks

    Hi,
    Kindly refer my blog link:
    http://obieeelegant.blogspot.com/2011/10/windows-7-home-premium-edition-is-not.html
    from exp..with obiee11g installation with win 7 64bit i have face so many issues..
    http://obieeelegant.blogspot.com/2011/09/obiee-11g-111150-software-only.html
    obiee11.1.1.5.0(Software Only Install) windows 7  64bit Installation Error
    OBIEE11g software only install configuration get hangover on win 2008 64
    ==========
    Note: some time it works with simple install option then rebooting mechine/restarting mechine it's not working.then i had OWC and discussed with MY Oracle Support team...they confirmed it's not support. please refer the certification matrix excel file in my blog link
    Hope it's clear...
    Thanks
    Deva
    Edited by: Devarasu on Nov 25, 2011 11:18 AM

  • A huge issue with a shared ntfs partition between Arch and Win8.1

    Dear Community,
    I've recently had to install 8.1 in order for my CAD/CAM software to work. I've a PC with two drives, a 64G OCZ SSD and a 300G HDD. The motherboard is BIOS based, and both filesystems are MBR. I've had Arch rootfs on the SSD for a long time, thus I've created three partitions on the 300G drive, one for windows, one for ext4-/home and one for ntfs-/dropbox, which is designed to be a ntfs-3g filesystem that is supposed to be shared between the operating systems. I've already done the same thing on my laptop, but the difference is that it was done on a single drive. And now the catch - Windows Explorer does not see the /dropbox partition, however it is visible in the management software (right click on my computer, then manage, and then drives or something alike).  Plus, using the drive manager, I cannot assign the drive a name - the option is blacked out. I've noticed that the drives were visible on the first launch of Windows, afterwards I've launched linux in order to set up Dropbox, afterwards the drives were not visible in windows anymore. I shall post screens of the situation and the partition table as soon as I get back home.
    I don't really know what logs or info should I post here in order to properly diagnose the issue, so I'd like a helping hand. I've noticed that similair issues are widespread within the ubuntu community, however, none of the resources I've found yielded a working solution. I'd like to methodically get to the bottom of this. Thanks in advance!

    Sure thing,
    The problem is that Linux sees the shared partition, and windows is "blind" to the partition. Blind in the sense that I cannot access or see the partition from Windows Explorer, but the partition is visible but not manageable in the Drive Manager of Windows. As soon as I get back home I'll be able to upload some actual screenshots.
    Sorry for the aux info, it's kinda of  walk in the dark for me.
    Last edited by piotroxp (2013-12-15 14:16:13)

  • How to test issue with accessing tables over a DB link?

    Hey all,
    Using 3.1.2 on XE, I have a little app. The database schema for this app only contains views to the actual tables, which happen to reside over a database link in a 10.1.0.5.0 DB.
    I ran across an issue where a filter I made on a form refused to work (see [this ApEx thread| http://forums.oracle.com/forums/message.jspa?messageID=3178959] ). I verified that the issue only happens when the view points to a table across a DB link by recreating the table in the local DB and pointing the view to it. When I do this, the filter works fine. When I change the view back to use the remote table, it fails. And it only fails in the filter -- every other report and every other tool accessing the remote table via the view works fine.
    Anyone know how I can troubleshoot this? For kicks, I also tried using a 10.2.0.3.0 DB for the remote link, but with the same results.
    TIA,
    Rich
    Edited by: socpres on Mar 2, 2009 3:44 PM
    Accidental save...

    ittichai wrote:
    Rich,
    I searched metalink for your issue. This may be a bug in 3.1 which will be fixed in 4.0. Please see Doc ID 740581.1 Database Link Tables Do NoT Show Up In Table Drop Down List In Apex. There is a workaround mentioned in the document.
    I'm not sure why I never thought of searching MetaLink, but thanks for the pointer! It doesn't match my circumstances, however. The Bug smells like a view not being queried in the APEX development tool itself -- i.e. the IDE's coding needs changing, not necessarily those apps created with the IDE.
    I'm working on getting you access to my hosted app...
    Thanks,
    Rich

  • Time Capsule issue with backing up Windows partition via Boot Camp

    I just bought the macbook pro and time capsule. I set up a 25GB Windows partition using Boot Camp and I have set up a Time Capsule to handle the backups. Time Capsule seems to backup the OSX hard drive partition fine, with the historical versions of the drive displayed correctly. However, with the Windows partition the Time Capsule appears to be backing up any files that change, however there is no version control showing up in Time Machine. In other words, I ONLY see the Windows partitioned drive as backed up in the "Today (Now)" screen. Any historical dates the drive shows up shaded and I cannot access it. Is there a way for Time Machine to manage the Windows partition in the same way as it does for MAC OSX drives?
    John

    Why is it so hard?
    1000 and 1 times: the drive must have FREE contiguous unfragmented space and some files are blocking and preventing.
    Some are able to find and delete, some by booting from another hard drive or OS X DVD to repair and/or run iDefrag.
    Or.... backup; erase; and restore.
    ie, CLONE your hard drive in both directions. My choice would be SuperDuper or Carbon Copy Cloner. They tend to work. Defrag tends to be slow and if there is no backup and there is an error.... well, you'll find out.
    Apple error message is badly and poorly worded. Said so for over 3 yrs and it has not changed or improved though.
    Paragon CampTune 9.5 $19 is great for Boot Camp. And resizing. And Windows 7 may need 2 or 3x what the base minimums listed. 32-48GB at least to be safe. And those are conservative numbers.

  • Issue with OBIEE 11g(11.1.3) Installation

    I have installed OBIEE 11g last evening. I was able to connect to the dashboard and run a simple report also – all before shut down. Now when I try to access OBIEE 11g thru port :9704 after starting the BI services, I am getting the following error.
    “Error 404–Not Found
    From RFC 2068 Hypertext Transfer Protocol — HTTP/1.1:
    10.4.5 404 Not Found
    My Weblogic server is working fine but im not able to access EM or ANALYTICS.
    When I click Programs > OBI > Start BI Services it opens 3 wndows and says weblogic server is started and Im able to login to Weblogic server via “http://localhost:7001/console”.
    When i start my machine the following services are started automatically:
    1) Oracle WebLogic node Manager
    2) OracleDBConsole
    3) Oracle Service
    4) OracleOraDB11g_home2_TNSListener
    The following services are not started:
    1) OracleDB11g_home2_ClrAgent
    2) OracleJobScheduler
    3) Oracle Process Manager(instance1)
    4) Oracle VSS Writer Service
    can you pls let me know how to start the Weblogic Admin Server?
    I have even tried to reinstall and when the installation completes im able to login to “EM”, “weblogic” and “Analytics” also, but once i restart my machine im not able to login to “Analytics” as well as to “EM”.
    The process im following is:
    When i start the BI Services from Start->Programs->Oracle Business Intelligence->Start BI Services, i get a popup window where it asks for weglogic user and password, then i have entered the user as “weblogic” and has give the password entered at the time of installation, then 2 popups opens and it runs several java files, then im able to login to weblogic but no luck with “em” or “analytics”.
    If i try to login to weblogic and try to start the “bi.em”, “biadminservices” i get java error message.
    Even i dont get Oracle Logo on the Admin tool also.
    Can you pls let me know the repository password also as i have tried with “Admin123? but no luck.
    Every time when i do the installation im able to access all the services for the first time but once i restart the machine then only weblogic will be working.
    I have installed OBIEE 11.1.3 on Windows 7 Ultimate N(32 bit) OS with Oracle11g Database
    Pls let me know if im missing anything here?
    Appreciate your help

    This is a really basic question... but how much memory do you have, and how long have you waited for all the processes to load? On a Windows XP Virtual Machine with 3GB, I have waited 20 minutes before being able to access. And until then, you will see the error you have received.
    Just a thought...

  • Issue with OBIEE 11g Deinstall

    Hi All,
    While trying to uninstall OBIEE 11g 6.8 (Simple Install), I guess I did a wrong step, by mistake I unistalled Weblogic Server before deinstalling the Oracle Instance and now while trying to deinstall the instance using "Deinstall Managed ASInstance", it gives me an error "INS- Unable to connect to Oracle WebLogic Administration Server" which makes sense because there is no admin server running now without weblogic.
    What should I do now ?
    1. Should I proceed with deleting the binaries and then manually delete the instance folder later on - If I do this, will I get an error while doing a fresh installation again?
    2. Is there a way to install weblogic server again and then I can start again by deleting the Oracle Instance again
    I realize that I should have uninstalled Weblogic Server at the end but now I am stuck, can anybody please help me on this?
    Thanks,
    Ronny

    Ronny , No where you can't install weblogic to start with uninstall again !
    just go with the option #1  if it is linux just rm directory should work otherwise delete the binaries, folders manually & environment variables
    thanks,
    Saichand

Maybe you are looking for

  • "Too Many Real Instruments"

    I am posting this in the '09 topic, but my question really dates back to Garageband '08. I rely on Garageband often, and I'm a big fan of it. However, it contains a serious problem which I need fixed. I create a new project, drop a single iTunes song

  • How can I create a teaser with pictures on imovie?

    I would like to use the tool that help you create amazing teasers, but seems like we can only use videos! Is there a way, or should I forget about doing a teaser, because I only have pictures in the movie I want to do a teaser for. Thanks a lot for y

  • M-Audio MIDISPORT UNO USB Not Working With Snow Leopard

    My Snow Leopard installation worked fine except until I plugged in my MacBook to my Casio Privia with the M=Audio MIDISPORT UNO USB cable to run GarageBand. I'm getting a MIDI error which states it can't work with the latest operating system. It does

  • Support for smart-card authentication in PowerBuilder based application

    Hi, I have an application on PB11.5 with an Oracle DB back-end (11.2g). My DoD customer wants the application to use their DoD CAC Card (Smart Card) to authenticate against the Enterprise - Windows Active Directory domain, currently the application u

  • WET610N and streaming Netflix or Windows 7 Media Center

    I am trying to find out if I can use the WET610N to stream Netflix, my Windows 7 Media Center and DirecTV VOD to my HDTV. Also, what is the best way  to configure: 1) use the CD or 2) let the DirecTV HD DVR  Hardware: Linksys Router, wireless PC with