Viewing 15 posts - 3,751 through 3,765 (of 5,111 total)
May 7, 2017 at 10:09 am
May 7, 2017 at 9:33 am
Sounds like your IDENTITY column has been reseeded at some point. This, like it sounds, resets the seed. So it might have reset back to a prior available number. This...
May 7, 2017 at 9:11 am
May 7, 2017 at 9:04 am
Eirikur Eiriksson - Sunday, May 7, 2017 7:19 AM
Had a look at that one earlier,...
May 7, 2017 at 7:51 am
From your data, how do you know what courses Student 3 attends? Is there a StudentID column in Courses as well,or does a student attend all courses within a registration?...
May 7, 2017 at 5:15 am
Do you have to do this in T-SQL? Pivoting a data in T-SQL can be quite a costly process, and if you require it to be dynamic, even more so...
May 7, 2017 at 5:07 am
I've not been able to find anything on this topic (thus no solution sorry). It might be worth raising a connect item, if it is a "feature" then someone might...
May 6, 2017 at 10:00 am
May 6, 2017 at 9:58 am
Do you need to write VBA for something like this? Would it not be simplier, if this is a one off, to right click the tab, move/copy it to a...
May 5, 2017 at 1:14 pm
Is the last line always Total? if so then just why note use an a conditional split with the expression:[ID] <> "Total:"
Assuming that the total value is...
May 5, 2017 at 9:26 am
Ahh, now I see what you want.
Try something like this:WHERE DateColumn >= DATEADD(MONTH, DATEDIFF(MONTH, 0, DATEADD(DAY, -1, GETDATE())),0)
AND DateColumn < CASE...
May 5, 2017 at 8:07 am
A better question at this stage is what are you actually trying to achieve? I don't mean the conversion of your values, but where is this information going to be...
May 5, 2017 at 7:47 am
Your Boolean expression needs to go in your WHEN clause, not in your THEN (which returns the value).
For example:CASE WHEN Number BETWEEN 0 AND 9...
May 5, 2017 at 7:40 am
Are you expecting to return more than one value back at a time? A simple dataset like this is something to cause you problem if so:
MyType MyValue
------ ...
May 5, 2017 at 7:33 am
Viewing 15 posts - 3,751 through 3,765 (of 5,111 total)