Problem solving pivot or not to pivot

Problem: my current code is not viewing data as expected
will come back re-write the question

SELECT student AS [Examinee Name],
Language_ AS [Language],
Max(COALESCE(class_cd, '-')) AS [Class#],
Max(Cast([OPI Date]AS DATE)) AS [OPI Test Date],
Max(COALESCE(Final, '-')) AS [OPI Score],
--ELSE [DLPT Score] ELSE [DLPT Test Date]
Max(CASE
WHEN Rn = 2 THEN
CASE
WHEN [Test level] = 'L' THEN [DLPT Score]
END
END ) AS [LR RC Score],
Max( CASE
WHEN Rn = 2 THEN
CASE
WHEN [Test level] = 'L' THEN [DLPT Test Date]
END
END ) AS [LR RC Test Date],
Max( CASE
WHEN Rn = 1 THEN
CASE
WHEN [Test level] = 'L' THEN [DLPT Score]
END
END ) AS [LR LC Score],
Max( CASE
WHEN Rn = 1 THEN
CASE
WHEN [Test level] = 'L' THEN [DLPT Test Date]
END
END ) AS [LR LC Test Date],
Max(CASE
WHEN Rn = 1 THEN
CASE
WHEN [Test level] = 'V' THEN [DLPT Score]
END
END ) AS [VLR LC Score],
Max( CASE
WHEN Rn = 1 THEN
CASE
WHEN [Test level] = 'V' THEN [DLPT Test Date]
END
END ) AS [VLR LC Test Date],
Max(CASE
WHEN Rn = 2 THEN
CASE
WHEN [Test level] = 'V' THEN [DLPT Score]
END
END ) AS [VLR RC Score],
Max( CASE
WHEN Rn = 2 THEN
CASE
WHEN [Test level] = 'V' THEN [DLPT Test Date]
END
END ) AS [VLR RC Test Date],
Rn
FROM cte
WHERE pn IN ( '927531231', '446026429' )
GROUP BY student, Language
ORDER BY [OPI Test Date]

Similar Messages

  • Problem solving pivoting

    Code
    CREATE TABLE [dbo].[ind_subject_scores]
    [pn_id] [char](9) NULL,
    [name] [char](20) NULL,
    [skill_id] [char](2) NULL,
    [test_level] [varchar](2) NULL,
    [subj score] [char](2) NULL,
    [class] [char](12) NULL,
    [lang] [char](2) NULL,
    [test_dt] datetime
    INSERT INTO [dbo].[ind_subject_scores]
    [pn_id],
    [name],
    [skill_id] ,
    [test_level] ,
    [subj score],
    [class],
    [lang] ,
    [test_dt]
    VALUES (
    '897841239'
    ,'Justin bieber'
    ,'1'
    ,'L'
    ,'1+'
    ,null
    ,'AD'
    ,'20140602'
    INSERT INTO [dbo].[ind_subject_scores]
    [pn_id],
    [name],
    [skill_id] ,
    [test_level] ,
    [subj score],
    [class],
    [lang] ,
    [test_dt]
    VALUES (
    '897841239'
    ,'Justin bieber'
    ,'2'
    ,'L'
    ,'1+'
    ,null
    ,'AD'
    ,'20140528'
    INSERT INTO [dbo].[ind_subject_scores]
    [pn_id],
    [name],
    [skill_id] ,
    [test_level] ,
    [subj score],
    [class],
    [lang] ,
    [test_dt]
    VALUES (
    '897841239'
    ,'Justin bieber'
    ,'2'
    ,'L'
    ,'2+'
    ,null
    ,'AD'
    ,'20140820'
    INSERT INTO [dbo].[ind_subject_scores]
    [pn_id],
    [name],
    [skill_id] ,
    [test_level] ,
    [subj score],
    [class],
    [lang] ,
    [test_dt]
    VALUES (
    '897841239'
    ,'Justin bieber'
    ,'1'
    ,'L'
    ,'3'
    ,'21601DG00113'
    ,'DG'
    ,'20140527'
    INSERT INTO [dbo].[ind_subject_scores]
    [pn_id],
    [name],
    [skill_id] ,
    [test_level] ,
    [subj score],
    [class],
    [lang] ,
    [test_dt]
    VALUES (
    '897841239'
    ,'Justin bieber'
    ,'1'
    ,'L'
    ,'2+'
    ,'21601DG00113'
    ,'DG'
    ,'20140819'
    Problem: 
    Reformatting table headers to the following columns such that skill_id = 1 is LC, skill_id=2 is RC, test_lvl=L is LR and V is VLR.  
    pn_id |name| L LC | L LC test_dt | L RC |
    L RC test_dt |VR LC | VLR LC test_dt | VLR RC |
    VLR RC test_dt |class | lang 
    The following code doesn't list all the records right. It should list 3 records here :/. Furthermore, theresults are wrong or doesnt match. what i could do differently to fix the code
    ;WITH cte
    AS (SELECT *
    ,DENSE_RANK() OVER (
    PARTITION BY pn ORDER BY language_, rola, [Test level] ) AS Rn
    FROM
    Select pn_id as pn, name,skill_id as rola,test_level as [Test level],[subj score],lang as language_,test_dt from dbo.ind_subject_scores
    )x
    SELECT MAX(pn) as pn, MAX(name) as name, MAX(language_) as [lang],
    MAX(CASE WHEN Rn = 2 THEN CASE when [Test level]='L' THEN [subj score] end END) as [LR RC Score],
    MAX(CASE WHEN Rn = 2 THEN CASE when [Test level]='L' THEN test_dt end END) as [LR RC Test Date],
    MAX(CASE WHEN Rn = 1 THEN CASE when [Test level]='L' THEN [subj score] end END) as [LR LC Score],
    MAX(CASE WHEN Rn = 1 THEN CASE when [Test level]='L' THEN test_dt end END) as [LR LC Test Date],
    MAX(CASE WHEN Rn = 1 THEN CASE when [Test level]='V' THEN [subj score] end END) as [VLR LC Score],
    MAX(CASE WHEN Rn = 1 THEN CASE when [Test level]='V' THEN test_dt end END) as [VLR LC Test Date],
    MAX(CASE WHEN Rn = 2 THEN CASE when [Test level]='V' THEN [subj score] end END) as [VLR RC Score],
    MAX(CASE WHEN Rn = 2 THEN CASE when [Test level]='V' THEN test_dt end END) as [VLR RC Test Date]
    from cte
    group by language_,pn

    Sounds like this is what you're after
    ;With CTE
    AS
    SELECT *,CASE WHEN skill_id = 2 AND [test_level]='L' THEN 'LR RC'
    WHEN skill_id = 1 AND [test_level]='L' THEN 'LR LC'
    WHEN skill_id = 1 AND [test_level]='V' THEN 'VLR LC'
    WHEN skill_id = 2 AND [test_level]='V' THEN 'VLR RC'
    END AS Category
    FROM dbo.ind_subject_scores
    SELECT [pn_id],
    [name],
    MAX(CASE WHEN Category = 'LR RC' THEN [subj score] END) AS [LR RC],
    MAX(CASE WHEN Category = 'LR RC' THEN [test_dt] END) AS [LR RC test_dt],
    MAX(CASE WHEN Category = 'LR LC' THEN [subj score] END) AS [LR LC],
    MAX(CASE WHEN Category = 'LR LC' THEN [test_dt] END) AS [LR LC test_dt],
    MAX(CASE WHEN Category = 'VLR RC' THEN [subj score] END) AS [VLR RC],
    MAX(CASE WHEN Category = 'VLR RC' THEN [test_dt] END) AS [VLR RC test_dt],
    MAX(CASE WHEN Category = 'VLR LC' THEN [subj score] END) AS [VLR LC],
    MAX(CASE WHEN Category = 'VLR LC' THEN [test_dt] END) AS [VLR LC test_dt],
    lang,class
    FROM CTE
    GROUP BY [pn_id],
    [name],
    Skill_id,lang,class
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • Dreamweaver CS4 start-up problem solved; shutdown crash not solved

    FYI - I learned very quickly that Dreamweaver CS4 will not launch at all (no splash screen, nothing) with setpoint.exe running in the background. Setpoint.exe is a Logitech mouse/keyboard manager. Shut it down and DW launches fine.
    Shutdown, however, is driving me crazy. When closing out DW (File > Exit or X-out), the app closes, then about fifteen seconds later, I get an error dialog that DW has crashed. 0xc0000005 error (memory access violation).

    Hi Stan,
    Thanks for responding.
    Truth be told, I got so focused on the Encore problem, it didn't occur to me to see whether Media Encoder was still functioning properly on my machine.
    At any rate, I did byte the bullet, and re-install Encore, and the problem in question went away.  Interestingly enough, when you opt to re-install Encore, CS4 automatically re-installs Media Encoder as well, so I guess the two programs are pretty tightly joined at the hip.  Not surprising, perhaps, since I suspect that Encore is in some ways just a special case of Media Encoder, at least as far as the transcoding is concerned.
    Of course, once I got Encore up and running, I tried to bring over a very, very small sequence from Premiere Pro and build it, and Encore crashed again (In PproHeadless.exe call to  ImageRender.dll).  Frustrating, since as a newbie all I'm trying to do is understand how the sequence settings I'm using in Premiere translate into final DVD output.  The project I am working on involves a mixture of still images and short video clips culled from many sources in many formats, and my first renders in Premiere yielded lots of letterboxing (I'm learning the hard way about pixel aspect ratios and the like).  As such, I figured before I built too many sequeneces, I should find a set of settings and work procedures that yield good results.
    I used dynamic linking to bring over my sequence from Premiere, and I'm thinking that perhaps having both Encore and Premiere open at the same time requires too many resources on my limited system.  Time to go figure out other options for moving sequences from Premiere over to Encore to see if that is in fact the issue.
    -PtCruiser105

  • PREY - Sound Problem Solved - SLI related, not SB related -

    Hi Folks,
    I have posted this in a few places on the web to help out people with PREY now that it has hit the shelves so they don't have the same issues I did. My story:
    I just spent $ 75 bucks I didn't need to. I have a MSI K8N Diamond Plus running a AMD 4800+ Dual Core, with 2 gigs of RAM in dual channel, and two EVGA E-Geforce 7900 GTX 52MB running SLI. The mobo comes stock with onboard sound, which is a Audigy SE w/ EAX-HD. Turns out the sound is based on a Li've 24-bit chip soldered onto the main board. It is a 6 bit card, meeting the minium requirements on the box.Bought Prey, loaded it, and the game looked perfect but vocals were totally distorted and there was horrible static. I did everything, tried reloading vid drivers, sound drivers, nforce drivers, the game three times and still no joy. I came on this site and played with the hardware acceleration etc etc etc that I have read so often in many posts. No joy.So my buddy convinced me I needed a Creative X-FI card. So I went out and bought a X-FI Extreme Music. I went into the CMOS and disabled onboard sound, uninstalled the old Creative drivers, even uninstalled my nforce and vid drivers. Put in the new card, rebooted, installed newest nforce 6.86, rebooted, installed newest vid card drivers, rebooted, installed newest drivers for X-FI with the Fatality OpenAL support, rebooted. Defragged. Re-installed the game. Went to play it expecting to reap the beautiful sound goodness I worked for, and the same frickin problem. All that work, new card, same vocal distortion and static. At this point I started looking over my shoulder expecting to see my wife standing there with her arms crossed giving me the hairy eyeball with one eyebrow up and tapping her foot. You know how that is....So I went online, scoured 6 dozen mainstream and obscure sites all the way to Russia and found ONE site where one guy on the 0th page on the 5th post on it was talking about the DEMO he tried of PREY and he mentioned in passing that he disabled SLI and ran the game in single card mode because SLI interfered somehow with the sound.So I thought to myself, no way. I right clicked my desktop, went to Settings, Advanced, clicked on Nvidia, went to the SLI tab and cleared the box for "Enable SLI".Rebooted. Game runs perfect. Now I gotta explain to my wife why I spent $ 75 bucks on a sound card I didn't really need.But all that doesn't matter now, cuz I spent 5 hours on it last night. Words cannot describe this game. I've played them all - and I just have to say I want to meet the designers and shake their hands. This is the most beautiful, imaginati've, NON-repetiti've, refreshing, eye-candy drop dead georgous FPS I ever saw. The musical score is genius. The imagination that went into the storyline, and artwork is astounding. Most importantly, the gameplay is none other than spectacular.Enjoy it fellow SLI'ers. I hope this post helps you.Grog

    You're late to the party. I am currently running almost the exact same setup as you with the exception of my 7900GTXs in SLI being from XFX, but that part obviously doesn't matter and the sound board being an X-FI Elite Pro.
    Anyway, the onboard Audigy SE works great in everything with SLI enabled, but I obviously want to use the X-FI and that's where I run into the problems with SLI enabled. However, SLI isn't the problem given how it works for many other sounds boards and on top of that, the SLI architecture was around before the X-FI, so Creative needed to test against this more stringently.
    Regardless, it's been known for a while about disabling SLI, it's just not a good answer. Thanks for the input though.
    I agree about Prey, very entertaining!Message Edited by zcaa0g on 07-8-2006 2:23 PM

  • Problem with PIVOT statement and ORA-56901

    Hi,
    I am having a problem with PIVOT in Oracle.
    I have a view in an oracle 11g database
    that returns me data in the format:- (... indicates left out text)
    DefinitionID ... AttributeValue FieldID
    ============ ============== =======
    ... 3000 X30a9...
    ... JohnN X4674...
    I am then trying to use a PIVOT statement to hopefully give me data
    in the format
    COLUMN1 COLUMN2
    ======= =======
    JohnN 3000
    The PIVOT statement I am trying is
    SELECT X4674... AS Column1,
    X30A9... AS COLUMN2
    FROM (SELECT instanceid, definitionid, attributevalue, FIELDID
    FROM PI_ENTITY_INSTANCE_VIEW) up PIVOT (MAX(ATTRIBUTEVALUE)
    FOR FIELDID IN (X4674...,X30A9... ) )
    where definitionid = hextoraw('7353C67A56C74B5A8234CD16064399E8')
    I have used a very similar VIEW and PIVOT statement for sql server
    (with necessary changes for Oracle applied) and the
    data returns in SQL Server as expected.
    Unfortunately I am getting the Oracle error
    ORA-56901: non-constant expression is not allowed for pivot|unpivot values
    Is there anyway to get a PIVOT working on Oracle where I use the
    fieldid's like I do above or is there some other way to supply the vales to the
    IN clause to overcome this error?
    Thank you for any help you can provide
    John Nugent

    Hi, John,
    Welcome to the forum!
    X4674, X30A9 and os on are the literal values that you're looking for, right?
    In Oracle, string literals need to be enclosed in single-quotes, like this:
    FOR FIELDID IN ('X4674', 'X30A9') You might find it more convenient to assign column aliases in the PIVOT clause, like this:
    PIVOT   (     MAX (attributevalue)
         FOR     fieldid       IN ( 'X4674'     AS column1
                        , 'X30A9'     AS column2
         ) Remember that anything inside quotes is case-sensitive, so 'X30A9' is not equal to 'X30a9'. Use UPPER (or LOWER) to do case-insensitive string comparisons.
    I hope this answers your question.
    If not, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only) for all tables, and also post the results you want from that data.
    Explain, using specific examples, how you get those results from that data.
    If you can use commonly available tables (such as those in the scott or hr schemas) to show your problem, then you don't have to post any sample data; just the results and explanation.
    Always say which version of Oracle you're using. You did say you were using Oracle 11g, but there's no 11f or 11h, and sometimes the difference between, say 11.1 and 11.2 can be significant. Why not say exactly what you're using, e.g. 11.1.0.7.0?
    You'll get better answers faster if you always supply this information whenever you post a question.
    Edited by: Frank Kulash on Sep 22, 2011 2:09 PM
    Added allliterative alias alternative
    Edited by: Frank Kulash on Sep 22, 2011 4:04 PM

  • When I close my iPhone and I want to open it to use it again, the opening process takes more than an hour, I regretted to buy the iPhone because of this problem that you do not suffer at all with Nokia,how I can solve this problem?

    When I close my iPhone and I want to open it to use it again, the opening process takes more than an hour, I regretted to buy the iPhone because of this problem that you do not suffer at all with Nokia,how I can solve this problem?

    mostafa182 wrote:
    ... how I can solve this problem?
    The Basic Troubleshooting Steps are:
    Restart... Reset... Restore from Backup...  Restore as New...
    Restart / Reset
    http://support.apple.com/kb/ht1430
    Backing up, Updating and Restoring
    http://support.apple.com/kb/HT1414
    If you try all these steps and you still have issues... Then a Visit to an Apple Store or AASP (Authorized Apple Service Provider) is the Next Step...
    Be sure to make an appointment first...

  • I can not write in Hebrew And create effects It shows all distorted  When This problem solved?

    I can not write in Hebrew
    And create effects
    It shows all distorted
    When This problem solved?

    roeisarusi wrote:
    When This problem solved?
    Nobody knows.  iWorks apps have always had bugs that make them unsuitable for Hebrew/Arabic for most people.  Tell Apple here:
    http://www.apple.com/feedback/keynote.html

  • Problem with Pivot Table with Graph: Line Bar Combo

    Hello people!
    I have a problem with pivot table and line bar combo (all in the same view (pivot table))
    I have some measures and one dimension in my report.
    --------------measure1---measure2---measure3
    Dim A.1
    Dim A.2
    Dim A.3
    If I choose my graph line bar combo automatically choose "line" measure 3 (last measure in "Show Controls"). How can I do if I want my measure1 for line and I don't want modify my pivot table?
    Thank you very much!

    Ok, I'll explain my problem again. In my pivot table I add graph vision and I want in the same view (Pivot table). My graph is "Line Bar Combo" and I don't know how but the last of my measures belongs to right AXIS, if I change order of my measures I can see in my graph the measure that I want in my right axis BUT also it changes the order of my pivot table.
    This is my problem. I think that I can do that with different views but I lose my selector view to view graphic and my pivot table at the same time.

  • Hello... the airport (wifi) connection on my imac is oftenly "freeze" and need to reconnect again. Can everyone help to solve this problem? It's not happened to other computer on the same network in the same area (distance). Thanks a lot.

    Hello... the airport (wifi) connection on my imac is oftenly "freeze" and need to reconnect again. Can everyone help to solve this problem? It's not happened to other computer on the same network in the same area (distance). Thanks a lot.

    Hello,
    Make a New Location, Using network locations in Mac OS X ...
    http://support.apple.com/kb/HT2712
    10.5, 10.6, 10.7 & 10.8…
    System Preferences>Network, top of window>Locations>Edit Locations, little plus icon, give it a name.
    10.5.x/10.6.x/10.7.x/10.8.x instructions...
    System Preferences>Network, click on the little gear at the bottom next to the + & - icons, (unlock lock first if locked), choose Set Service Order.
    The interface that connects to the Internet should be dragged to the top of the list.
    If using Wifi/Airport...
    Instead of joining your Network from the list, click the WiFi icon at the top, and click join other network. Fill in everything as needed.
    For 10.5/10.6/10.7/10.8, System Preferences>Network, unlock the lock if need be, highlight the Interface you use to connect to Internet, click on the advanced button, click on the DNS tab, click on the little plus icon, then add these numbers...
    208.67.222.222
    208.67.220.220
    (There may be better or faster DNS numbers in your area, but these should be a good test).
    Click OK.
    If that doesn't work try changing channels on your Router.

  • HT4085 I has a problem and I am not able to solve that when I use sound effect it is showed only headphone even I did not installing the headphone I has a problem and I am not able to solve that I am. Not able to hear the sound without headphone please he

    I has a problem and I am not able to solve that when I use sound effect it is showed only headphone even I did not installing the headphone I has a problem and I am not able to solve that I am. Not able to hear the sound without headphone please help guys

    Sounds to me like a hardware issue or maybe something is stuck in the headphone jack. When you plug in headphones, the jack in the iPad is switched to play only through the headphones and not the iPad's speakers. Sounds like either the jack is faulty or there is something stuck in the headphone jack. Get a flashlight & look inside the jack for anything that looks like it doesn't belong in there.
    Regardless, I'd take it in to an Apple Store if you have one nearby to have it checked.
    EDIT: "Ocean20" had an excellent suggestion above. While doing that, you may also want to rotate/twist the plug in the jack back & forth a few times as well. Dirty contacts can often times be cleared by doing this.

  • [Problem Solved] On screen display not working on T60

    I replace my xp with a Vista Business.
    All the drivers are installed. But the on screen display is not working well. Nothing display when I press the volume up/down/mute button. However, other buttons like Fn+F3, Fn+F5 do display on screen.
    Anyone  knows how to solve this?
    Thanks a lot. 
    Message Edited by szsy on 10-02-2008 08:11 PM
    Solved!
    Go to Solution.

    problem solved.
    looks like I need to install a  Lenovo System Interface Driver. This is just for ATI graphic card users and nVidia users don't need it.
    Thanks a lot. 

  • Solved the comment not showing problem: info for anyone else

    I have finally solved my problem regarding my comments not showing up on blogs and websites. I changed my email address and that seems to have done the trick. Just in case anyone else runs into the same thing. Thanks Miriam for trying to help me.

    jcrash2000 wrote:
    My question is; Is there anyone else having this same problem?
    "yahoo is my email provider"
    Judging by the number of other threads on this, yes many people have been having Yahoo mail issues with push, and it appears to be on Yahoo's side, not Apple's.

  • Problem with permissions after NOT installing 10.5.3

    A few weeks ago when Software Update asked me if I wanted to install 10.5.3 I said no, since I wanted to wait for a while to see if there were any problems first before I went ahead with it. According to Software Update, 10.5.3 has been downloaded on my computer, but not installed, although I can't find it anywhere.
    Ever since then things have been getting increasingly weird. I thought I had most of the problems solved after booting from the Leopard disk and repairing ACLs and permissions. However, after I shut my computer down for the night, and rebooted the next morning, all my problems were back and a few new ones. Now I have to log in each time I reboot the computer. I have to log in each time I open Mail. I can't unlock anything. I click the lock and nothing happens. Time Machine has stopped working again and is no longer backing up my data. When I click on "Get Info" for my HDs or apps, Sharing and Permissions says I have custom access - all the rest is greyed out, and I can't unlock anything. I seem to have lost permission to make any changes! Very frustrating!
    Any suggestions would be appreciated.

    Yes, I can access the Time Machine application.
    Following up on your previous suggestion, even though I'm listed as admin in the Accounts pane, I thought it was worth a shot, so I followed the steps set out in the Apple article TS1278: "Mac OS X 10.5: Administrator user changes to standard".
    After booting from my Install DVD, and resetting the password for the System Administrator (root), I restarted from my Mac, selected "Other" in the login window, and tried to log in as System Administrator (root) with the password I'd chosen, but it wouldn't log me in. All that happened was the login window trembled a bit, then cleared, and that was that. I tried a number of times, with the same result. Do you have any idea what I can do to correct that? Because it sounded like the process described in this article could very well fix my permissions problems.
    Thanks for your help.

  • [SOLVED] Sound (snd_hda_intel) not working after resume from suspend

    Using the latest kernel 2.6.30.4, On HP2133, whenever I get back from resume, sound is not working.
    Running the following brings back the sound, but that is obviously a hack:
    fuser -k /dev/snd/*
    rmmod snd_hda_intel
    modprobe snd_hda_intel
    /etc/rc.d/alsa start
    I have on my /etc/modprobe/50-sound.conf:
    options snd-hda-intel model=laptop
    alias snd-card-0 snd-hda-intel
    alias sound-slot-0 snd-hda-intel
    Here's the exact hardware specification:
    # lspci -nnv|grep Audio
    80:01.0 Audio device [0403]: VIA Technologies, Inc. VT1708/A [Azalia HDAC] (VIA High Definition Audio Controller) [1106:3288] (rev 10)
    Any idea where to look for this?
    Last edited by yhager (2009-08-21 16:54:00)

    [SOLVED]
    I downgraded to kernel 2.6.29 and the problem is gone.
    Note: I also had X VT problems with 2.6.30.4 (xf86OpenConsole: VT_WAITACTIVE failed: Interrupted system call). Those were solved too by downgrading to 2.6.29.

  • I have a Macbook pro 2009 with Snow Leopard.  Which system can I install without running into complicated problems which I will not be able to solveby myself? (Mountain Lion, Mavericks, Yosemite?)

    I have a Macbook pro 2009 with Snow Leopard.  Which system can I install without running into complicated problems which I will not be able to solve by myself- a person with limited problem solving abilities. (Mountain Lion, Mavericks, Yosemite?)

    It will make it easier to help you w/ your problem to know the  size and RAM installed.
    "Yesterday I couldn't update the maps on my Garmin because it said the OS I had wouldn't work"
    What OS will your Garmin work with? Funny there was someone else that did that and upgraded to Yosemite and regretted it.
    I'd say Lion if your Garmin is compatible.
    Both Lion and Mountain Lion are downloadable from the Apple Store:
    http://store.apple.com/us/product/D6106Z/A/os-x-lion
    http://store.apple.com/us/product/D6377Z/A/os-x-mountain-lion
    The OSs will get more resource hungry the higher you go.

Maybe you are looking for

  • Issue while scheduing report in Infoview

    Hi All, I need to scheduled a report where i have send it to 15 email id and there might be some more addition. when i tested report i found it is sending to everyone but it doesn't show all the email id's in the "TO" list. Please let me know if need

  • How do I resolve error 10057 when trying to set up my airport express to extend the range of my wireless network

    I have a Dell XPS running on Windows 7 and use an AirPort Extreme 802.11n Wi-Fi to get wireless internet access for other laptops in the home. I want to connect an AirPort Express 802.11n into the network to wirelessly extend the range of my wireless

  • IMovie export version 6.0.3?

    What's happened to iMovie 6.0.3? Everything was fine until I upgraded to OS 10.4 It seems like every time I upgrade my OS, I run into a whole new set of problems with iMovie. I now find out that I can no longer export by clicking on the time line and

  • Getting Apps Onto Second Display Easy ??

    i have recently purchased the new macbook pro 2.5 ghz i7 with 8gb mem and an external 27" tunderbolt display with osx lion.  does anyone know how to open final cut pro 7 and with a simple stroke of genious get it onto the large display rather than ha

  • How to give permissions?

    HI, I have created a iView with WebDynpro and i have added the iView to a page in my case test_page.I am able to see the preview with the iView. Then I have created a role and added my page and iView  to it. Then I have created a new user TestOne and