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

Similar Messages

  • 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]

  • 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

  • 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

  • How to problem solve adf issue in the mx340 model

    how to problem solve adf issue in the mx340 model

    Alex,
    the missing thing in your example is the fact, that if only one value is selected, the parameter has exact this value like BOSTON. If you choose more than one value, the parameter includes the *'*, so that it looks like *'BOSTON','NEW YORK'*. So you need to check in the package, if there's a *,* in the parameter or not. If yes there's more than one value, if not it's only one value or it's null.
    So change your package to (you need to expand your variables)
    create or replace package bip_departments_2_parameters
    as
    p_dep_2_param varchar2(1000);
    p_loc_1_param varchar2(1000);
    p_where_clause varchar2(1000);
    function beforereporttrigger
    return boolean;
    end bip_departments_2_parameters;
    create or replace package body bip_departments_2_parameters
    as
    function beforereporttrigger
    return boolean
    is
    l_return boolean := true;
    begin
    p_where_clause := ' ';
    if p_dep_2_param is not null then
    if instr(p_dep_2_param,',')>0 then
    p_where_clause := 'WHERE DNAME in ('||p_dep_2_param||')';
    else
    p_where_clause := 'WHERE DNAME = '''||p_dep_2_param||'''';
    end if;
    if p_loc_1_param is not null then
    if instr(p_loc_1_param,',')>0 then
    p_where_clause := p_where_clause || ' AND LOC IN ('||p_loc_1_param||')';
    else
    p_where_clause := p_where_clause || ' AND LOC = '''||p_loc_1_param||'''';
    end if;
    end if;
    else
    if p_loc_1_param is not null then
    if instr(p_loc_1_param,',')>0 then
    p_where_clause := p_where_clause || 'WHERE LOC in ('||p_loc_1_param||')';
    else
    p_where_clause := p_where_clause || 'WHERE LOC = '''||p_loc_1_param||'''';
    end if;
    end if;
    end if;
    return (l_return);
    end beforereporttrigger;
    end bip_departments_2_parameters;
    I've written a similar example at http://www.oracle.com/global/de/community/bip/tipps/Dynamische_Queries/index.html ... but it's in german.
    Regards
    Rainer

  • WiFi connection problem solved

    My intel iMac and MBA had no problem but iPods 3g and 5g did.  I had an old Netgear router connected and sitting next to my Airport Express.  On a hunch I diconnected the Netgear and created a guest network to replace the one on the Netgear.  PROBLEM SOLVED! 
    Evidently our iPods and boarder's iPhone had problems sorting out the signals and finding the right addresses.  Moving the AE to a higher and slightly more central position also helped.
    Jim

    Same here on a Vodafone PocketWiFi 2.
    Tried NetworkManager, wicd, wifi-menu but all have the same issue.
    I recently installed Aptosid on another machine and it has the same problem... It also has kernel version 3.9.
    All the live CDs I've tried work, even an Arch CD from May works, though a current install does not.
    I have no problems connecting to another (wpa2 enterprise) network yet can't on this 3G modem.
    I'm hoping this isn't a permanent issue and perhaps an update very soon will fix this.
    It seems the only way to fix this for now is to use an old version of Linux. I'm currently running a virtual machine only for the purpose of Internet sharing, very annoying.

  • Bug fix for Mac book wireless - problem solved!

    Aparantly there is a rather large number of folks out there who've discovered this dillema with wireless not working very well at this point on the Macbook.
    Well, I can attest there is one very good solution out there for this issue. This application called Sonar Theater from www.sunray.tv includes a bug fix for the wireless connection issues with Macbook in their latest 1.5 release of Sonar Theater.
    I downloaded it, put it into my start up folder and waalaa! problem solved. I've haven't any more issues with dropped wireless since - it's been running constantly for over 2 weeks now.
    I haven't even attempted to touch my router configuration - don't need to.

    Welcome to the better life of Macs. I am using Sonar Theater too and it's been working very well for me. In fact, I'm getting hooked on just texting a message to my Mac book to fire up user sessions now. I think if you give the Mac Book some time however, you'll find that there really is no comparison to PC's. Your life overall is going to just keep getting better as you dig in to the resources available to new Mac users.
    I'm sure it seems confusing to PC users at first, but here's how to set up any application as part of your startup sequence. It really is extremely easy and simple compared to the PC world. Oh and by the way, in reality, Mac users refer to this as your login sequence. So, at login time, you can do a multitude of different things for each user account you might want to set up. Naturally, you can choose to share or not share applications and data between these user accounts on your Mac too....
    Mac OS X 10.3 or later
    1. Log in as the user who wishes to have a login item or as an admin user.
    2. Choose System Preferences from the Apple menu.
    3. Choose Accounts from the View menu.
    4. Click the name of the user.
    5. Click the Startup Items button
    6. Click the "Add {+}" button.
    The item you selected will automatically open the next time you log in.
    there are several ways to get good info from the apple community on tips and tricks as well. you should just try the apple os x web site...here,
    http://www.apple.com/macosx/resources/
    happy mac-ing!

  • Mediawiki, mysql, php? problems [SOLVED]

    On Sunday my Arch install that is hosted by Slicehost became unresponsive to them so they had to do an emergency reboot. After it came back up my install of mediawiki was (and still is) only returning a blank page (at least in Firefox). After some digging I found out that part of the problem was that mysqld wasn't starting so I managed to get that fixed by commenting out the lines relating to innodb and putting in skip-innodb into my.cnf. But I'm still getting a blank page.
    According to Mediawiki's manual, "A blank white page indicates a PHP error which isn't being printed to the screen." They give two lines to put into LocalSettings.php to force error messages but after doing that I'm still getting a blank page. Changing display_errors in php.ini to ON didn't have any effect.  When I load the wiki in Safari I get the following error: "Got java.io.EOFException (Server closed connection while sending the HTTP header.): http://some_url.com/mediawiki/index.php/Main_Page". I have no idea what this error means and googling java.io.EOFException doesn't bring up anything very helpful. My PHP Test Page indicates that PHP is up and running.
    Any ideas on fixes or where I can find more clues?
    [EDIT]
    Mysql was definitely the root of the problems with Mediawiki. I tried nearly every suggestion listed in the forums for fixing a mysql install that wouldn't start but nothing worked. I even completely uninstalled mysql and reinstalled it but it still refused to start. I switched over to postgresql and switched mediawiki to run with that. Problem solved.
    Last edited by k_odoma (2009-05-23 01:48:35)

    There are some other things that must be done to connect to
    the database
    (such as passing the usernamee, password, and host info to
    mysql_connect()
    and storing the connection resource), and those might be in
    the include
    files. I generally place all of the connection parameters in
    a separate file
    that is located in a folder that can't be accessed by a
    browser, for
    security purposes.
    Paul Swanson
    Portland, Oregon, USA
    "Amy Blankenship *AdobeCommunityExpert*"
    <[email protected]>
    wrote in message news:edk6ui$69c$[email protected]..
    > What's in the include(s)?
    >
    > "83Dons" <[email protected]> wrote in
    message
    > news:edk5s5$4uk$[email protected]..
    > > Here is the php code for the 'read' and 'write'
    parts:
    > >
    > >
    > >
    > > <?php
    > > include '......';
    > > mysql_select_db('clinskills') or die("UNABLE TO
    CONNECT TO
    DATABASE");
    > > $sql = "select A1Answer from authorware where id =
    '13'";
    > > $result = mysql_query($sql);
    > > $answer1 = mysql_result($result,0,"A1Answer");
    > > print $answer1;
    > > ?>
    > >
    > > <?php
    > > include '............';
    > > mysql_select_db('clinskills') or die("UNABLE TO
    CONNECT TO
    DATABASE");
    > > $newdata = $_GET['data'];
    > > mysql_query("insert into authorware (A1Answer)
    values('$newdata')")
    or
    > > die(mysql_error());
    > > mysql_close(); ?>
    > >
    >
    >

  • 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.

  • Acrobat printing problems (solved)

    Hi Folk
    I'm getting on well with Arch apart from one problem, I can not print from Acrobat reader, it accepts the command and does precisely nothing, the jobs are appearing in cups but not being printed, I can print from Open Office and test print from cups but no cooperation with acrobat,  anyone have any ideas? thanks
    Pete
    Last edited by pete051 (2009-09-29 19:14:12)

    I don't know what DE are you using. In my case, I use xfce and when acroread starts with his stupidity I just change the print command to 'xfprint'. That forces acroread to redirect the print job to xfce's printing frontend, and problem solved.
    Now, if you're using kde, I guess there is something named 'kdeprint', 'kprint' or similar. For gnome, I've no idea.
    I hope this helps.
    p.s. Sometimes, cups takes his time to print. When its taking too long I purge cups' temp files and restart the daemon.
    Last edited by kjon (2009-09-25 00:32:23)

  • Stuck with grub problem (SOLVED)

    Today i tried to upgrade my Arch Linux, it downloaded everything that should be downloaded, it was installing upgrades but at the installing grub it stucks as like this
    "Copying /boot/grub/grub.cfg.pacsave to /boot/grub/grub.cfg"
    I've waited it for about 15 minutes, it didn't move on. So i did ctrl+z to break. Then i tried to update again. But it gives an error which is:
    error: failed to commit transaction (conflicting files)
    python: /usr/bin/2to3 exists in filesystem
    Error occured, no packages were upgraded.
    Please help me guys!
    Last edited by bilgee0629 (2011-03-21 10:36:28)

    Problem solved by moving 2to3 to other directory.

  • Dr.Watson problems solved.

    DR.WATSON PROBLEMS SOLVED:
    System:
    WLS 5.1 with SP11 running on NT4 Using OCI817_8.
    Oracle 7.3.4 running on NT4.
    Problems:
    Dr.Watson exceptions in native code...
    # An EXCEPTION_ACCESS_VIOLATION exception has been detected in native code outside
    the VM.
    # Program counter=0x60239689
    When asking BEA and Oracle:
    "Use the latest OCI available. It is backward compatible !"
    What have been done to solve the problem:
    Going through all SQL code (and doing some rewriting), configuring connection
    pools (TestOnReserve / TestOnRelease, refresh, etc) and several other configurations...
    At last, we tried to change to the OCI version matching the Oracla versions we
    were connecting to (from OCI817_8 to OCI734_7).
    Voila ! NO MORE DR.WATSON EXCEPTIONS !
    Our conclusion:
    If possible, use the OCI version that matches the Oracle version you are running
    on.

    Hi Abhijit
    Couple of pointers which could resolve the issue:
    1. Since you are using the JDBC-ODBC bridge what occurs internally is that your JDBC API through the Virtual Machine make calls into the ODBC API on your Windows system. So the Watson error that you are getting is probably an illegal access by one of the methods in the ODBC API - this is for the Diagnosis part.
    2. The Solution part -
    a. Should I change my JDBC-ODBC driver? Not necessarily because the problems could be with the ODBC interface implementation and changing the driver might not help.
    b. Should I change my programming style? This is one thing which could really help. The problem with creating connections each time is that it takes a lot of resources to do it, So there is a performance degradation. What you could do inyour code is use a Java Bean to create the required Connection. You can also think of using a prepared statement appropriately encapsulate it since you are invoking a particular query repeatedly. In your JSP page you can retrive(create) this bean through the jsp:useBean tag with the session as the scope attribute. The <jsp:setProperty methods could also be used to set the DSN name and the driver.
    Once this bean is successfully created you have an open connection.
    Now for the part you have pasted - replace the create connections with getting a new Statement object which would hold your Query. At the end of the JSP just close the Statement object.
    Once you are done updating the page you may transfer the control to a different JSP - Let that transfer trigger the connection close in the Java bean.
    This should solve the Dr.Watson problem.
    Good Luck!
    Eshwar Rao
    Developer Technical Support
    Sun microsystems inc
    http://www.sun.com/developers/support

  • Am I able to find my iTunes serial number? I need it for the problem solving as my problem is solely bad on my iTunes.

    For the Apple problem solving section I need a serial number, my issue is that my problem regards missing contents within my iTunes. Do I have an iTunes serial number? And if so, where can I locate it? If there is not a serial number for iTunes, advice on what to do next is much appreciated.

    iTunes has no serial number. If you are trying to get to Apple phone support, that is linked to the purchase of Apple hardware, so you need to enter in the serial number of an Apple device. Otherwise, for assistance with problems with iTunes itself you would need to call Apple Support and they would almost certainly charge for the call. I would instead suggest you post the issue you're trying to address here in detail. Someone here can probably offer suggestions.
    If your issue is with the iTunes Store, not the iTunes application, go here:
    http://www.apple.com/support/itunes/contact/
    and follow the instructions to report your issue to the iTunes Store.
    Regards.

  • Aperture to export photos either TIFF or JPEG files, highlight and shadow transition has obvious faults, this problem solved!?

    Aperture to export photos either TIFF or JPEG files, highlight and shadow transition has obvious faults, this problem solved!?

    What problem?
    You will have to be _a lot_ more specific if you'd like responsible feedback.
    I export thousands of TIFF and JPG files a week with no obvious faults.
    (Sent from my magic glass.) 

  • HOTSYNC PROBLEM SOLVED -between Palm TX using desktop version 6.2 & Windows 7 64 bit

    I to struggled with performing hotsynch between my Palm TX and my new Windows 7 64 bit computer.  After 2.5 hours of palm tech support on my pc they gave up and deemed the task not solvable.  I spent hours trying various options-nothing worked until this.
    I performed a google search for Toshiba bluetooth x64 drivers.  This took me to the following link:
    http://aps2.toshiba-tro.de/Bluetooth/?page=download
    I downloaded PC Bluetooth Stack version 7.00.10 for Windows 7 x 64.  After downloading this suddenly the palm syncing software on my pc gave me the option to connect via bluetooth and I was on my way.  My bluetooth dongle (cirago BTA-3210) was not a toshiba, but did use the toshiba driver stack.  The driver that came with the bluetooth was not up to date- even though it was just purchased at newegg.  The driver update that my pc found was also not 64 bit compatible.  The only fix was to download the driver from Europe- hooray!!!!!  PROBLEM SOLVED
    Post relates to: Palm TX
    Post relates to: Palm TX

    Thanks for reporting your success! 
    WyreNut
    I am a Volunteer here, not employed by HP.
    You too can become an HP Expert! Details HERE!
    If my post has helped you, click the Kudos Thumbs up!
    If it solved your issue, Click the "Accept as Solution" button so others can benefit from the question you asked!

Maybe you are looking for

  • N-up workaround not working

    Having upgraded from iPhoto 07 to 09, I found myself without N-up. A quick search pointed me to workarounds described in threads such as http://discussions.apple.com/thread.jspa?threadID=1178557 and http://discussions.apple.com/thread.jspa?threadID=1

  • Book printing and sharpening

    Hello, I am currently building my first Aperture book. I am wondering what level of sharpening I should apply to my images. Or does the book printing process automatically apply some level of sharpening ? Thanks for sharing your experience, Pierre

  • HT201364 im running on 10.7.5 and want to upload to mavericks.

    I purchased mountain lion from the app store and i cannot use it because my computer isn't compatible. I have a white 24 inch mac, I am running off a 3TB drive, how can i upgrade via the disk drive?? My mac wont run alone, if i unplug the disk drive

  • Is it possible to change timezones without changing time of all your old calendar entries?

    moved cities and when I use local timezone all my old calendar entries shift 5 hours.  anyway to stop that?

  • C# System.OutOfRangeException Error

    Ok I'd firstly like to tell you i'm absolutely new to C# so I'm probably going to need real indepth support into my issue. I tried asking on stackoverflow but they where not as supporting there. So I'm wanting to have a proxy option in my project wha