Viewing 15 posts - 5,311 through 5,325 (of 6,486 total)
I agree with Andras. Also - if you simply add in the extra fields from Employee that you need to actually see in the final query to the CTE...
January 11, 2008 at 7:42 am
Brandie Tarvin (1/11/2008)
Have 2 datasets. DataSet1 is the detail. DataSet2 is the totals.
Write some sort of expression or...
January 11, 2008 at 7:36 am
Have you looked at using the WITH ROLLUP option? It will allow you to put in sub-total lines "inline" with the rest of the query.
you might need to play...
January 11, 2008 at 7:30 am
What exactly happens?
Put an index covering the ID and amount, so that you're not hammering the table with scans.
Something like:
Create index ix_tblExtract_ID on tblExtract(ID) include (amount)
Otherwise - just...
January 11, 2008 at 6:56 am
Download and install the "Advanced Services" version of SQL Server express, and you will see it included in the options for what you can install (in the client tools stuff)....
January 10, 2008 at 2:27 pm
Adam Skelton (1/10/2008)
licensing is by processor not core I believe
correct - but notice this little time-bomb:from "how to license"
A license is required for each physical or virtual processor accessed by...
January 10, 2008 at 2:24 pm
noeld (1/10/2008)
By the way the "free" "Instances" are only for Enterprise Edition...
Under 2005 - that's not actually correct. Multi-instancing is allowed in a single OS instance under the same...
January 10, 2008 at 2:21 pm
Rog - if you have the "correct version" of SQL Serve Express installed, you should then either have something called Business Intelligence Design Studio (BIDS), or (if you already had...
January 10, 2008 at 2:15 pm
The SSRS designer is called BIDS (Business Intelligence Designer Studio), which is a limited version of Visual Studio (if you don't already have it installed). If you have a...
January 10, 2008 at 2:05 pm
Gary -
Do you have SSMS for SQL Express? If you do - if the Database is set up to be attached at all times, you should see the...
January 10, 2008 at 1:58 pm
So affinity mask set to 0 for a specific processor core means - don't use it? It's worded so very awkwardly. I hate when they tap-dance around the...
January 10, 2008 at 1:40 pm
Also -
depending on how you set the DB up (e.g. if you had Visual Studio create the database for you), you might have ended up with the DB being set...
January 10, 2008 at 1:25 pm
Here here on getting the accountant to help you set up the taxes.
that being said - if you're going on a 1099 basis, using your previous salary as a benchmark...
January 10, 2008 at 1:16 pm
Or - it's a "red herring posting" and someone in the recruiting business is trying to cast a wide net....
That being said - it seems to be leaning towards the...
January 10, 2008 at 1:08 pm
Adam Skelton (1/10/2008)
January 10, 2008 at 1:05 pm
Viewing 15 posts - 5,311 through 5,325 (of 6,486 total)