Statistical calc with MDX question (Mode function as an excel)

Hi All,
  I need to create an MDX Calc to Returns the most frequently occurring, or repetitive, value in an array or range of data.
  For example, the mode of 2, 3, 3, 5, 7, 10 is 3.
  In Excel I use the MODE() function but I don't know how to do this in MDX and add it as a measure in Universe.
  I can't do the formula in WEBI because we have big data volume and I can't retrieve all the customers in WEBI.
  We have SAP BW 7.0 and SAP BusinessObjects XI 3.1 fix pack 1.3
Thanks in advance.

Hi,
it looks like you created the entry twice so I would suggest you close on of them:
Statistical calc with MDX question (Mode function as an excel)
I don't think that those kind of statistical functions are available in MDX. you can always go to se37 and use the bapi_get_functions to see the list of supported functions.
Ingo

Similar Messages

  • How to write a large amount of measured results with "write to spreadsheet " function in an Excel file?!

    I am going to measure more than 100,000 sampls and I have to write it in an document. I would like to use Excel to present it much more easier but the problem is here that excel can have just 60,000 samples. also using text file is not desired one.
    do you have any solution that helps me ?!?!
    Solved!
    Go to Solution.

    <fullDisclosure> I am a National Instruments employee.  But I was an industrial physicist for 12 years before coming to National Instruments. </fullDisclosure>
    I find Excel to be difficult to work with when you have more than about 2000 points.  With 100,000, you are way over that limit.  Before I joined NI, I would have used Mathematica to do analysis and plotting of that sort of data.  But LabVIEW will do it very easily, as well.  Other NI software which can help are DIAdem or the report generation toolkit (as mentioned above).  For specific types of analysis, you can also check out Wikipedia's list of open source analysis programs.
    This account is no longer active. Contact ShadesOfGray for current posts and information.

  • Calculated member - Mode function

    Hello,
    I need some help. I am quite new to MDX; I've created a cube and the measure needs to behave same as the MODE function in Excel (the following
    link
    describes what the function does). Apparently the only way of achieving this is by MDX (calling the MODE function directly from Excel is not an option for me). Practically the member should return a single value, that represents the price that appears
    most times. There are 4 dimensions in my cube: dates, stores, products and client products. I need the following calculations:
    1. MODE(price) for specific Date, Product and Client Product. There will be multiple lines returned for this set, as there are multiple stores.
    2. MODE(price) for specific Store, Product and Client Product. There will be multiple lines returned for this set, as there are multiple dates.
    I found the below code online, that I've adapted to work against my cube, currently the query returns correct results for the first part, Mode(price) for multiple stores. I can change it to do the same for date. 
    What I need is to create 2 calculated measures using the last select and I am unsure how this can be achieved. Any help will be much appreciated or any other approach in achieving this.
    WITH 
    --Count how often each value appears
    MEMBER [Measures].[ValueCount] AS 
    SUM(  Union([Dim Stores].Store].CurrentMember.Level.Members,       {[Dim Stores].[Store].CurrentMember} AS CurrentStore),
    IIF( ([Dim Stores].[Store].CurrentMember, [Measures].[Price]) = 
    (CurrentStore.Item(0).Item(0), [Measures].[Price]) , 1, null))
    --Only get the items that appear the most
    SET [MaxModes] AS     
    ORDER(FILTER(NONEMPTY([Dim Stores].[Store].Members, {[Measures].[Price]}),    
    [Measures].[ValueCount] = MAX(NONEMPTY([Dim Stores].[Store].[Store].Members, [Measures].[Price]),    
    [Measures].[ValueCount])), [Measures].[Price], ASC)
    SELECT   {[Measures].[Price]} on 0,        
    [MaxModes]       
    --Filter out the duplicates        
    HAVING [MaxModes].CurrentOrdinal = 0 OR [Measures].[Price] <>             ([Measures].[Price], [MaxModes].Item([MaxModes].CurrentOrdinal - 2)) ON 1
    FROM [old_Prices_v2]
    WHERE {[Dim Date].[Date].&[2013-06-23T00:00:00]}*{[Dim Client Products].[Client Product].&[13]}*{[Dim Products].[Product].&[551]}

    I'm describing below what exactly is required:
    The cube has 4 dimensions (Date, Store, Product, Client Product) and one measure (Price). I need a measure to behave same as the MODE function in
    Excel (value that occurs most often). Practically the member should return a single value, that represents the price that appears most times. 
    While browsing the cube I need, for any combination of dimensions/hierarchies, to get the MODE of the price at its lowest grain (that is Date, Store,
    Product, Client Product). No need to aggregate the measure in any way. 
    For example if someone looks at a specific combination of Product & Client Product, the calculated measure would show the price that appears most
    times against that Product+Client Product, in any of the stores and in any of the dates.
    Example:
    Date
    Store Product
    Client Product
    Price
    05-Feb-2013
    Store1 Prod1
    ClProd1 50
    05-Feb-2013
    Store1 Prod1
    ClProd1 60
    06-Feb-2013
    Store2 Prod1
    ClProd1 60
    06-Feb-2013
    Store2 Prod1
    ClProd1 70
    05-Feb-2013
    Store1 Prod1
    ClProd2 80
    05-Feb-2013
    Store1 Prod1
    ClProd2 50
    06-Feb-2013
    Store2 Prod1
    ClProd2 50
    06-Feb-2013
    Store2 Prod1
    ClProd2 70
    Case1: If one looks at Prod1 & ClProd1 then the MODE(Price) is 60 as there are 4 rows to be aggregated and the value that repeats most is 60
    Case2: If one looks at Prod1 & ClProd1 & Store1 then the MODE(Price) is either 50 or 60 as there are 2 rows to be aggregated and both 50 and
    60 repeat 1 time. I this case any of them can be returned (act like TOP 1 in TSQL)
    Case3: If one looks at Prod1 & Store1 then the MODE(Price) is 50 as there are 4 rows to be aggregated and the value that repeats most is 50
    Case3: If one looks at Prod1 & 06-Feb-2013 then the MODE(Price) is 70 as there are 4 rows to be aggregated and the value that repeats most is 70.
    Any guidance will be much appreciated!
    Thank you in advance.
    Mihai

  • Subpartition with MOD Function in Oracle 11g

    Hi All,
    Can we create Subpartition based on MOD Function in Oracle 11g ?

    Hi!
    What are you refering with "MTS"? Anybody knows a term like this (except MultiThreaded Server).

  • Question about function with in parameters

    Hello,
    I have a question about functions with in-parameters. In the HR schema, I need to get the minimum salary of the job_id that is mentioned as an in-parameter.
    this is what I am thinking but I dont know if it's correct or not or what should I do next!
    create or replace function get_minimum_salary (i_job_id in varchar2)
    return number
    as
    begin
    SELECT min_salary INTO min_sal
    FROM jobs
    where job_id = get_minimum_salary(xy);
    RETURN i_job_id;
    end get_minimum_salary;
    thanks in advance
    EDIT
    Thanks for your help all.
    Is it possible to add that if the i_job_id which is the in type parameter does not have a minimum salary then use the following function to register an error:
    create or replace procedure insert_error (i_error_code in number,
                                                      i_error_message in varchar2)
    as
    begin
    insert into error_table (error_user, error_date, error_code, error_message)
    values (user,sysdate,i_error_code,i_error_message);
    end insert_error;
    This function is basically to say that an error has occured and to register that error, at the same time I need to print out the error using the dbms_out.put_line.
    Any ideas of how to do that?
    Thanks again
    Edited by: Latvian83 on Jun 1, 2011 5:14 AM

    HI
    I have made little bit changes in ur code. try this
    create or replace function get_minimum_salary (i_job_id in varchar2)
    return number
    as
    v_Min_sal jobs.salary%type=0;---- Variable declaration
    begin
    SELECT min_salary INTO v_ min_sal
    FROM jobs
    where job_id = i_job_id;
    RETURN v_Min_sal;
    end get_minimum_salary;
    Regards
    Srikkanth.M

  • App-V 5.0SP2 question with SCCM 2012 CU4 (functionality vs full support with R2)

    I understand that for App-V 5.0 SP2 and SCCM 2012 SP1 integration at least CU4 is required but R2 with CU1 for full functionality.
    I’ve attached an image from some session that someone else gave me. I have questions after looking at the slide since there are no details on what is not fully supported with CU4 pre R2.
    Since we have immediate plans to add CU4 to our SCCM 2012 SP1 environment can anyone please give us a break down of what functionality is not available in App-V 5.0 SP2 before we go all the way up to SCCM 2012 R2?
    On another note does anyone have any clue what TechED session that was from so I can see the replay?
    Thanks very much for any info on this.

    Hello,
    As per the slide - CU1 is required for full support with R2.
    See this article;
    http://support.microsoft.com/kb/2938441
    Application Virtualization
    This cumulative update adds support for Microsoft Application Virtualization (App-V) 5.0 Service Pack 2 (SP2). The following issues are seen only in App-V 5.0 SP2 environments earlier than CU1:
    With App-V 5.0 SP2, when a new version of an App-V package supersedes an earlier version, and when that earlier version is being used, the package is listed as not published. Errors that resemble the following are logged in the AppEnforce.log and the AppDiscovery.log
    files.
    AppEnforce.log
    Publish-AppvClientPackage : A publish operation has been scheduled, pending
    the shutdown of all applications in the package or the connection group.
    Publishing Package is successful but one one of the Virtual Package is currently in use. Close this Virtual Package to get the changes into effect
    Performing detection of app deployment type TestApp - Microsoft Application Virtualization 5(ScopeId_0C7279F0-1490-4A0E-A7A3-32A000CEF76D/DeploymentType_d1adf427-ac14-4ee1-9e51-415af7675383, revision 2) for system.
    AppDiscovery.log
    Required component [{AppVPackageRoot}]\TestApp.exe is not published
    With App-V 5.0 SP2, App-V packages that are being used cannot be uninstalled. Errors that resemble the following are logged in the AppEnforce.log file:
    CVEWorker::UninstallConnectionGroup() failed
    Nicke Källén | The Knack| Twitter:
    @Znackattack

  • I have noticed an issue with utilizing the "stream" function on iOS 7. If you choose to just stream the movie by hitting the play button it seems to actually start downloading (which is fine) but if you are say halfway thru the movie and stop you can clea

    I have noticed an issue with utilizing the “stream” function on iOS 7. If you choose to just stream the movie by hitting the play button it seems to actually start downloading (which is fine) but if you are say halfway thru the movie and stop you can clearly see that storage has been reduced under the usage, yet under the “videos” tab it still states “No Data” the only way to delete what you have partially downloaded is to fully download the video, which is fine but there is no way to tell what videos have been partially downloaded (I.e which occurs a lot when your child switches between movies using the so called “stream” function). This becomes troublesome once the capacity of the ipad is almost met and you have no way to delete this data since you may have several videos that have started to be viewed (hence partially downloaded). Apple needs to somehow make it truly streaming or provide an update so the storage can be managed. The only way I have been able to remove partially downloaded videos is by doing a total software restore. (The video data that is in question when connected to my MacBook shows up in iTunes as “other”) if you have any insight into this issue it would be greatly appreciated. Thanks.

    Here are the screenshots for what it's worth.
    Not sure why I can't post them in the original post.<br>
    <sub><b>Mod edit: See [https://bugzilla.mozilla.org/show_bug.cgi?id=718813 bug 718813]</b></sub>
    '''Again, when I set my DNS server to automatically detect the servers both problems disappear and I have no issues at all.'''
    IMO opendns is either doing this on purpose (unlikely) or they're under some sort of attack/being used to attack the specific torrent sites although I'm open to other explanations. I believe using the automatic setting for DNS is using my own ISP's DNS servers (which again, work fine... but still...)
    I'd rather not use Google's public DNS servers as Google is to commercial these days and I think there's potential privacy issues.
    '''Again I have changed the setting for DNS servers back and forth several times to duplicate/verify the issue(s)... and the issues only happen with the opendns servers.'''

  • Aperture with iPhoto questions

    Hi gang,
    The new integration of iPhoto and Aperture 1.5 sounds very appealing. I have a couple of questions regarding functionality. Let's assume that I have Aperture set to use my iPhoto library in referenced file mode.
    1) Will Aperture keep the two libraries in sync automatically? If I add photos to iPhoto, will they show up in Aperture?
    2) If I tag photos with keywords or ratings in Aperture, do those changes show up in iPhoto?
    3) If I make changes to a photo with Aperture, do those changes show up in iPhoto?
    Cheers!

    Hi gang,
    The new integration of iPhoto and Aperture 1.5 sounds
    very appealing. I have a couple of questions
    regarding functionality. Let's assume that I have
    Aperture set to use my iPhoto library in referenced
    file mode.
    1) Will Aperture keep the two libraries in sync
    automatically? If I add photos to iPhoto, will they
    show up in Aperture?
    2) If I tag photos with keywords or ratings in
    Aperture, do those changes show up in iPhoto?
    3) If I make changes to a photo with Aperture, do
    those changes show up in iPhoto?
    Cheers!
    I asked this same question and got total silence. I have/use Aperture and I don't see a way to make this work, that is the answer to all your questions is: No. While I praise the changes made in Aperture 1.5 I am surprised and disappointed that while Apple added iPhoto/Aperture integration they missed this most obvious requirement (to keep the Aperture and iPhoto databases in sync).
    Copying the entire library in Aperture everytime you add a few photos to iPhoto (for example) is ridiculous.
    -Tom

  • TS3775 Hi I am trying to connect my mba mid 2011 with an imac 27" 2011 with target display mode tdm. When I am using a thunderbolt cable nothing will work. When I use a minidisplay cable, both screens turn blue but eventually nothing happens. What is the

    Hi I am trying to connect my mba mid 2011 with an imac 27" 2011 with target display mode tdm. When I am using a thunderbolt cable nothing will work. When I use a minidisplay cable, both screens turn blue but eventually nothing happens. What is the problem

    Your answer is likely in Target Display Mode: Frequently Asked Questions (FAQ) - Apple Support If you are familiar with this document, please re-read it and I suspect you may find something you either missed or are doing incorrectly.

  • How do I get rid of the flashing file with a question mark in it?

    I wanted to start clean on my MacBook Pro osx 10.9.4. So I did the command r and erased what I thought was the right one. I restarted my computer and did the command r again and what came up was internet recovery. It can't find my internet because it's WEP and I don't know to change it to wpa. So I restarted my computer again and I didn't do the command r but just let it load itself to see what would happen and all I get is a flashing file with a question mark. I don't know what to do. Someone please help me.

    Do you get this display?
    If so, you have to select an Internet connection.  Do not expect quick response time in this mode.  All activities in this mode will be lengthy.
    Ciao.

  • RFC hangs with a call to function module SSFC_PARSE_CERTIFICATE

    Hello ,
    We are working on BI 7.0  SP9 .
    When we try to test the RFC connection from the WAS Abap to the portal ( WAS JAVA ) using  SM59  , the test is hanging but we can read in the bottom of the screen 'Connexion bcv51sf2... OK' !!!
    The test connection works sometimes .
    But when it’s not working  , with the debug mode , I can see that the program SAPLSSFG/LSSFGU19 is hanging in the function module  SSF_GET_PARAMETER with a call to the function SSFC_PARSE_CERTIFICATE
          CALL FUNCTION 'SSFC_PARSE_CERTIFICATE'
            EXPORTING
              CERTIFICATE               = PABCERT
            IMPORTING
              SUBJECT                   = STR_PROFILEID
            EXCEPTIONS
              SSF_KRN_ERROR             = 1
              SSF_KRN_NOMEMORY          = 2
              SSF_KRN_NOSSFLIB          = 3
              SSF_KRN_INVALID_PAR       = 4
              OTHERS                    = 5.
             ENDIF.
           ENDIF.
         ENDFUNCTION.
    The variable STR_PROFILEID has the value of the field ID of the table SSF_PSE_H
    STR_PROFILEID =’CN=QWO, OU=XXXXX, O=YYYY, C=FR’
    Due to this error , we can’t transport BI Web templates  because at the end of the import in the method execution of the transport there is a call to the portal with the RFC. And the transport is hanging …
    Thanks in advance for you help .
    Happy new year.  Milan.

    Hi Frank ,
    See below the result of the test :
    Test for function group      SSFG
    Function module              SSF_GET_PARAMETER
    Export parameters
    Value
    APPFOUND
    <SYST>
    SSFTOOLKIT
    SAPSECULIB
    STR_FORMAT
    PKCS7
    STR_PAB
    /usr/sap/QWO/DVEBMGS01/sec/SAPSYS.pse
    STR_PAB_PASSWORD
    STR_PROFILEID
    CN=QWO, OU=XXXX, O=YYYY, C=FR
    STR_PROFILE
    /usr/sap/QWO/DVEBMGS01/sec/SAPSYS.pse
    STR_PROFILEPW
    STR_HASHALG
    SHA1
    STR_ENCRALG
    DES-CBC
    B_INCCERTS
    X
    B_DETACHED
    B_DISTRIB
    X
    But my problem now , it's that 1 of the 2 RFC is working fine and the other one after 1 good rfc test , is hanging now at the end of the function 'CONVERSION_EXIT_ISOLA_OUTPUT'  line 14 !!!
    See below the ABAP stack just before the hanging .
    1     FUNCTION CONVERSION_EXIT_ISOLA_OUTPUT.
    2     *"----
    3     ""Lokale Schnittstelle:
    4     *"       IMPORTING
    5     *"             VALUE(INPUT)
    6     *"       EXPORTING
    7     *"             VALUE(OUTPUT)
    8     *"----
    9       OUTPUT = SAVE_INPUT(1) = INPUT.
    10       CHECK SAVE_INPUT(1) NA ' *'.
    11       SELECT SINGLE * FROM T002 WHERE SPRAS = INPUT.
    12       CHECK SY-SUBRC = 0.
    13       OUTPUT = T002-LAISO.
    14     ENDFUNCTION.
    Stack Dep     Event type     Event     Program     Include     Line
    10     FUNCTION     CONVERSION_EXIT_ISOLA_OUTPUT     SAPLLANG     LLANGU04     14
    9     FORM     CONVERSION_EXIT     SAPCNVE     SAPCNVE     107
    8     EVENT     SYSTEM-EXIT     SAPLDSYA     <SYSINI>     20
    7     FUNCTION     DOKU_OBJECT_EXIST     SAPLDSYA     LDSYAU09     43
    6     FORM     FILL_EXCL_TAB     RSDBRUNT     RSDBRUNT     5.664
    5     FORM     %_INIT_PBO_LAST     RSDBRUNT     RSDBRUNT     4.061
    4     FORM     INIT_PBO     RSDBRUNT     RSDBRUNT     3.666
    3     FORM     %_INIT_PBO_NEW     RSRFCPIN     RSRFCPIN     496
    2     MODULE (PBO)     %_INIT_PBO     RSRFCPIN     RSRFCPIN     496
    1     EVENT     SYSTEM-EXIT     RSRFCPIN     <SYSINI>     20
    As i said in the first post , the RFC test is hanging sometimes but now it seems that it's not  hanging everytime at the same line of the abap code , if i can trust the debugger !
    ...and after another RFC test , now all the RFC to the portal are working ...
    It seems that when it's hanging , it's at the end of the functions ( SYSTEM_CALLSTACK
    or CONVERSION_EXIT_ISOLA_OUTPUT or SSF_GET_PARAMETER ) .
    A memory or OS problem ?
    Best Regards.  Milan.

  • Install Captivate 4 on Windows 7 64-bit machine with Windows XP mode?

    Hi,
    I have been searching the web to find out the best way/place in which to load Captivate 4 on my Windows 7 64-bit machine. Seems some people have issues with recording, others don't. I have Windows XP mode on my machine.
    My question is... what's the best way to load Captivate 4 on Windows 7 - should I install to Windows 7 and see how it goes. Or should I install under Windows XP mode?
    Thank you!
    Michele

    Yea it works in XP mode
    Daniel Wooden
    Systems
    U.S. District Court Middle District of Tennessee
    615-736-7485
    From:   RodWard <[email protected]>
    To:     DEW45 <[email protected]>
    Date:   09/24/2011 12:01 AM
    Subject:        Install Captivate 4 on Windows 7 64-bit
    machine with Windows XP mode?
    Re: Install Captivate 4 on Windows 7 64-bit machine with Windows XP mode?
    created by RodWard in Adobe Captivate - View the full discussion
    Try running Cp4 in WinXp compatibility mode on Win7.  Also make sure
    you're set to Run as Administrator.
    I run Cp4 on Win7 without issues.  But other users report similar problems
    to yourself.  In the end, it may or may not work for you because Adobe has
    never claimed Cp4 was compatible with Vista or Win7 64bit.
    Replies to this message go to everyone subscribed to this thread, not
    directly to the person who posted the message. To post a reply, either
    reply to this email or visit the message page: [
    http://forums.adobe.com/message/3935593#3935593]
    To unsubscribe from this thread, please visit the message page at [
    http://forums.adobe.com/message/3935593#3935593]. In the Actions box on
    the right, click the Stop Email Notifications link.
    Start a new discussion in Adobe Captivate by email or at Adobe Forums
    For more information about maintaining your forum email notifications
    please go to http://forums.adobe.com/message/2936746#2936746.

  • Start-Up: Folder with gray question mark / Disk Utility: Invalid Sibling Link

    Yesterday, I was working on my computer and it froze up. My only option was to reboot by holding down the power key. When the computer restarted, the screen was all grey with a folder in the middle of the screen with a question mark.
    I tried the following:
    1) Boot up computer while holding down the "Option" key. - Didn't work.
    2) Boot up the computer while holding down the "Shift" key. - Didn't work.
    Since the first two options didn't work I inserted the original system install disk and booted up while holding down the "C" key. I selected "English" as the language and then opened "Disk Utilities." I pressed "Repair disk" within First Aid. The message I am getting is as follows:
    "First Aid failed. Disk Utility stopped repairing "Macintosh HD" because the following error was encountered: Filesystem verify or repair failed."
    The details screen shows the following:
    "Verify and repair volume "Macintosh HD"
    Checking Journaled HFS Plus volume.
    Checking Extents Overflow file.
    Checking Catalog file.
    Invalid sibling link.
    Rebuilding Catalog B-tree.
    The volume could not be repaired.
    Error: Filesystem verify or repair failed."
    I ran the "Repair disk" function about 6 times but it was not successful.
    I was then going to try to do an "Archive and Install" from the original system disk but when I go to do that no destination options appear at the "Select Destination: Where do you want to install Mac OS X?"
    I have not backed up my data very recently (and a lot of what I have stored on this computer is work - I am a freelance designer) so I would like to do something that at least allows me to transfer my data off of my hard drive before reformatting or anything like that. Of course, if there is a less intrusive fix that can leave my hard drive in tact, that would be ideal.
    Any advice? Tips? Solutions? I have a MacBook Pro, 15" that I purchased 3 years ago (my 3 year Apple Care plan just expired about a month ago).     

    You are in a tough situation.  The disk appears unusable according to Disk Utility.  As was suggested you may (only may) be able to salvage it with Disk Warrior (not sure about Data Rescue).  DW can sometimes recover a drive that DU can't.  But nothing else can be suggested. 
    If you can get that disk recovered then back it up ASAP, wipe the disk, reinitialize it, and verify it.  But I'm the paranoid type, and with the kind of errors you show for that disk, I am not sure I would ever trust it again.  At most I would relegate it to a scratch disk.
    Note, if it is a drive that you bought, most drives have a 3 to 5 year warrantee period, so you could get it replaced by the manufacturer if it is within that warrantee period.

  • My MacBook Pro Hard Drive recently gave me the gray folder with the question mark of death. Even as

    My MacBook Pro Hard Drive recently gave me the gray folder with the question mark of death. Even as a Mac Newbie/Novice, I successfully installed a new hard drive and the OS (10.6.8) software from my installation discs. I have, however, lost the ability to play video using the spacebar and I have no idea on the steps necessary to correct this seemingly simple technical blip. .Here's my system overview:Model Name:     MacBook Pro Model Identifier:     MacBookPro6,2 Processor Name: Intel Core i5 Processor Speed:     2.4 GHz Number Of Processors:     1 Total Number Of Cores:     2 L2 Cache (per core):     256 KB L3 Cache:     3 MB Memory:     4 GB Processor Interconnect Speed:     4.8 GT/s.
    I am using the Premiere Pro CS5 NLE (with the 5.0.4 updates), and I have tried to reinstall the software (which is actually the Production Premium package) several times, but I still cannot use the spacebar (or any method) to play any of my imported videos.
    PLEASE HELP in any way you can!
    Prior to having to replace my hard drive, my software was working just fine. No problems at all. But now, it seems that I can't get it to play whatever type of file I import.
    Again, I am a newbie to the Mac, so any and all correctional/repair assistance needs to be expalined as if I were a child :  ) 
    I would hate to try to revert to considering the sophmoric Final Cut Pro X editing software package, but I've got to do something to be able to get back to my editing activities.
    zionhall
    [email protected]

    Jorge242 wrote:
    @FatMac the internet recovery doesnt work. It goes into recovery mode and then when i try to reinstall it cant find a disk to install it to. So what would be a good choice to take now?
    Recovery Mode presents you with, among other things, Disk Utility. When you open that, if the internal shows up at all, first try to "Repair DIsk." If that doesn't work but if the "Media" line is present, try to format and partition it with a GUID partition table (understand that you will be erasing the contents of your internal). Then try to reinstall the OS. If that doesn't work, and since your Retina MBP didn't come with a DVD drive or DVDs, you'll need to try a hardware test using these instructions from Apple (short version: shut down, press the power button and hold down the "D" key). If none of those things work, let's hope you either have AppleCare or your warranty has some life left because the SSD in your rMBP is proprietary and expensive. You'll need to bring it to an Apple Genius for evaluation.

  • Tomcat vs Apache with Tomcat connectors (mod/jk)

    Is there any advantage (security, performance etc.) of running a Java web application on Apache HTTP Server with Tomcat Connectors (mod/jk) rather than directly running it on Tomcat.

    This question is already answered, see here:
    http://tomcat.apache.org/faq/connectors.html
    Also for Tomcat/ Apache related questions, post them to the relevant mailing lists.

Maybe you are looking for

  • XML Publisher report stuck at Calling XDO Data Engine...

    Hi ! I am upgrading a custom report from 11i to R12 , the report works fine in 11i but when moved to R12 the report is stuck at "Calling XDO Data Engine..." and then it doesnot parse the Template. Below are the logs from the request: XDO Data Engine

  • SOAP ADAPTER TIME OUT ISSUE

    We are getting the data from sql server into PI through Soap adapter. Till day before yesterday everything is running fine .But now it has started giving us the below error. there were no changes done in the interface. I am not able to see any error

  • TS3320 Try Firefox/Mozilla browser

    I had the same issue when trying to access a sub page of finance.yahoo.com and found that many others had a similar issue with too many redirects.  It appears as "Error 310: Too Many Redirects" The solution I found via a Firefox support page: Open a

  • Could not initialize photoshop because there is not enough memory

    Hello there i am using Windows XP in Bootcamp on a MacBook Pro. This system goes phantastic without any problems since more than half a year now. Now i decided to use this MacBook for my work as well, but unfortunately my CS2 Photoshop can not be ins

  • Try to deploy the SOA SHARED REPOSITORY to DB

    jdbc/mds/mds-ApplicationMDSDBDS]] [ecid: 0000IaelFasBT85xrO6ESY1CCyKW000002,0] [APP: oracle.security.apm] [[ oracle.mds.exception.MDSRuntimeException: weblogic.common.resourcepool.ResourceDeadException: 0:weblogic.common.ResourceException: Could not