Viewing 15 posts - 2,806 through 2,820 (of 3,505 total)
If SSRS is seeing the value as a string and not a date, you could create a calculated field in your dataset and set the value to something like this:
=DATESERIAL(CInt(LEFT(Fields!SomeDate.Value,4)),CInt(MID(Fields!SomeDate.Value,5,2)),CINT(RIGHT(Fields!SomeDate.Value,2)))
If...
November 10, 2014 at 10:41 pm
A picture may be worth a thousand words, but some sample data is priceless. Can't test what we can't model, so please post some. Otherwise, I doubt you...
November 7, 2014 at 6:10 pm
Anything new and exciting in the new version (like screen captures/video that you can actually read)? Shame, because the rest of the book looks pretty good.
November 7, 2014 at 5:56 pm
I have that book... the only thing I am not thrilled about is the quality of the videos. Going to see if it will work okay with SSIS 2012....
November 6, 2014 at 5:30 pm
Maybe this will help... or not...
http://www.sqlservercentral.com/Forums/Topic1411242-149-1.aspx
November 5, 2014 at 10:52 pm
From your description and table definition, I have no clue how to get what you want. What's the logic to accomplish that? To me at least, there's no...
November 5, 2014 at 10:36 pm
I searched for "JSON" + "insert" here and found a ton of articles. Did you read any?
November 5, 2014 at 3:47 pm
Did you add a parent row group on Itemname?
November 5, 2014 at 3:29 pm
(I must be learning! I was close!)
November 4, 2014 at 12:43 pm
some create table and insert scripts would go a long way to getting you a tested solution, but I would use ROW_NUMBER() to do this and not a totals query.
Something...
November 3, 2014 at 9:27 pm
If a converted lead is just a property_id where there exists a move-in for that leadID, then you should be able to use EXISTS(), right?
Something like this:
SELECT lead_id
, property_id
, MIN(date_value)...
November 3, 2014 at 9:16 pm
Buy a copy of Developer. It's basically the same as Enterprise, but the connections etc are limited. And it's super cheap for what you get.
November 3, 2014 at 3:59 pm
If you create another calculated value in your dataset, you could do this:
=IIF(Fields!EnrollWeek.Value<=5,0
,IIF(Fields!EnrollWeek.Value<=10,6
,IIF(Fields!EnrollWeek.Value<=15,"11-15 days",16))
Because this returns an integer, you can sort on it (and it will work).
The only difference is...
November 3, 2014 at 2:55 pm
WHERE fields.Name NOT IN ('sale payment', 'initial transaction')
November 3, 2014 at 2:49 pm
You could do it by creating a calculated field in your dataset. Something like this:
=IIF(Fields!EnrollWeek.Value<=5,"0-5 days",IIF(Fields!EnrollWeek.Value<=10,"6-10 days",IIF(Fields!EnrollWeek.Value<=15,"11-15 days","16+ days")))
I had a dataset with numbers (EnrollWeek), so that that's what...
November 3, 2014 at 1:24 pm
Viewing 15 posts - 2,806 through 2,820 (of 3,505 total)