Alienware M14x with Windows 8 – USB 3.0 ports and Corsair thumb drives issue

alien

I have an Alienware M14x laptop and a few Corsair USB 3.0 thumb drives.  The thumb drives most of the time would not get recognized by Windows.  They throw an “unrecognized device” error when they are plugged in.  I can plug the same thumb drives into a USB 2.0 port on the same laptop and they work fine just not at USB 3.0 speeds which is not cool.  I can plug other USB 3.0 devices, like a Western Digital external hard drive, and they work just fine at USB 3.0 speeds.

After some searching I found some rather lengthy instructions here that fixed the problem perfectly for me and a co-worker with the same laptop.  Essentially the instructions walk you through getting Windows 7 drivers installed for the USB 3.0 hub and ports.

I imagine this applies to more than just the Alienware M14x and would work for other laptops as well.

SQL Server Reporting Services get a percentage of group total from column value

I have rows from a query such as:

Name                  Type            Quantity

Customer01       A N              5
Customer01       A P               4
Customer01       O N              3
Customer01       O P               2
Customer02       A N              3
Customer02       A P               9
Customer02       O N              5
Customer02       O P               7

So, I can do a grouping and get the total for each customer:  (using sum(Fields!Quantity.Value))

Customer01     14
Customer02     24

What I needed is on the report to then show what percentage of the total each line represented.

I finally found that the sum function has a scope you can define to do this.
So I ended up with an expression added to a new column out to the side of the Quantity column on the report that looked like this:

=Fields!Quantity.Value/sum(Fields!Quantity.Value,”table1_group_code”)

The “table1_group_code” is the name of the grouping where I needed the percentage calculated from.

You can find this name in the Row Groups area of the reports designer.

Capture