Viewing 15 posts - 586 through 600 (of 2,278 total)
OK, I think I understand. Would this work for you?
SELECT DISTINCT A.FirstName, A.LastName, A.DepartmentName, A.Title, A.StartDate, A.EndDate,
CASE WHEN ISNULL(A.EndDate, '01/01/1900') <> ISNULL(B.EndDate, '01/01/1900')
THEN 'Y'
ELSE 'N' END AS...
April 4, 2012 at 7:08 am
anthony.green (4/4/2012)
ChrisM@Work (4/3/2012)
anthony.green (4/3/2012)
4DayWeek 😀FollowedByAnother :-))
2DayWeekNextWeek 🙂
Wow, that's almost not worth it. Nice.
April 4, 2012 at 7:00 am
duplicate thread, see:
http://www.sqlservercentral.com/Forums/Topic1276726-1633-1.aspx
April 3, 2012 at 2:03 pm
I said split mistakenly, you were correct to use join.
I see no expressions posted with Join.
However, this is something I have used from a multi valued parameter for column visibility...
April 3, 2012 at 2:00 pm
I am a bit confused. In your initial question you talked about 3 levels of grouping. I don't see data that would have 3 levels of grouping in...
April 3, 2012 at 1:46 pm
Yes, I said SPLIT instead of JOIN. You are correct to use join.
Please post your entire expression.
April 3, 2012 at 1:38 pm
Is your parameter a multi-value parameter? If it is not, you should not be using the (0) or the (1). If it is, you should use SPLIT to...
April 3, 2012 at 8:15 am
In the immortal words of Uniblab (is my age showing?)
Back to work (click), back to work (click). Everybody (click) work work work work (click) work work (click)!"
April 3, 2012 at 8:12 am
You should be able to use a Row_Number or Rank function in your SQL to order your data and build your conditional visibility.
I wrote a blog on using Row_Number to...
April 2, 2012 at 2:59 pm
That looks like it should work. What is the error you are getting?
April 2, 2012 at 2:55 pm
I have following conditions to meet initially.
1. Records will only be created for those recrods if the group has 'C' in IsgroupCorrected.
so I am using conditional spilit to...
March 23, 2012 at 12:33 pm
You add a derived column transformation to your data flow. Using the column where the data is too long create a new column with a meaningful name (I always...
March 23, 2012 at 12:23 pm
There may be several ways to get the data. Does Google Analytics have a web service of some sort you can connect to with SOAP, or download flat or...
March 23, 2012 at 12:14 pm
Viewing 15 posts - 586 through 600 (of 2,278 total)