Viewing 15 posts - 136 through 150 (of 196 total)
February 3, 2010 at 4:31 am
You need to use an aggregate function e.g.
SELECT Agent
,[Jan]
,[Feb]
FROM (SELECT *
...
February 3, 2010 at 4:24 am
For those on SSIS 2008: you might consider using the MERGE statement offering you less work and better performance.
Basically, your package will look like this:
Data Flow Task: Read Data From...
February 3, 2010 at 2:26 am
Here's a great article to get you started.
February 3, 2010 at 1:22 am
Use an Execute SQL Task to read the list with filenames (from a table) and put the result set in a variable of type Object (you can already filter on...
February 3, 2010 at 1:18 am
Did you try sp_recompile?
Take the Estimated Execution Plan (rather than the Actual Execution Plan) to begin with.
February 3, 2010 at 1:11 am
Jason,
You will find some information on the conditional split transformation (CST) in BOL.
You don't have to use an output downstream of the CST, so basically those rows won't go anywhere...
February 3, 2010 at 12:45 am
UPDATE mytable
SET gender = CASE WHEN gender = 'F' THEN 'M'
...
February 2, 2010 at 4:59 am
You need to do an outer join with a table that contains all dates on which you want to report.
Check this topic for some inspiration.
February 2, 2010 at 4:53 am
Assuming the identity column in your table is called version_id, your SP will look like
BEGIN
-- SET NOCOUNT ON added to prevent extra...
February 2, 2010 at 1:00 am
Dave is correct. Use an outer join and don't forget to put the filter on PG_ID in the join condition, not in your WHERE clause!
If you want to replace the...
February 2, 2010 at 12:49 am
February 2, 2010 at 12:11 am
Jason,
Use a conditional split to eliminate the rows with NULLs.
February 1, 2010 at 11:59 pm
Phil Parkin (2/1/2010)
Tidy solution Willem, but with millions of rows of data being involved, perhaps this also introduces quite an overhead?
From my own experience, the overhead of the mutlicast and...
February 1, 2010 at 2:18 am
Viewing 15 posts - 136 through 150 (of 196 total)