Viewing 12 posts - 16 through 27 (of 27 total)
Nope, ID's are actually system assigned so they never go over 9 characters. Beyond that though, in the error email it showed the data the user was trying to submit...
February 12, 2019 at 12:52 pm
Interesting. Thank you
October 19, 2018 at 1:35 pm
Thank you! I have rewritten it and it is working as intended.
July 18, 2018 at 1:03 pm
I just needed to think outside of the T-SQL box and use a non-ANSI join. I have it working now
ALTER PROCEDURE [dbo].[BobReport]
AS
October 26, 2017 at 3:36 pm
Thanks chef but command line wont cut it either. btw she not he.
October 26, 2017 at 2:44 pm
Well crap... I was afraid of that. It is not a simple query which is why I showed the 2nd sproc. This Manager is in charge of a number of...
October 26, 2017 at 2:42 pm
I believe so. The CASE statement says if there is no value to enter 0
July 24, 2017 at 12:41 pm
Jeff Moden - Thursday, June 29, 2017 7:59 PMSo you're all set then?
Yes.
June 30, 2017 at 8:06 am
it is working needed to aggregate the data. so my final query is
SET @PivotQuery = 'SELECT QuestionText, '+ @Cols +' FROM (SELECT QuestionText, AverageAnswer, ResponseText...
June 29, 2017 at 5:13 pm
I found one thing wrong in how I am enclosing the columns. so instead of using apostrophes I am using brackets like so
SET @Cols =...
June 29, 2017 at 2:09 pm
June 27, 2017 at 9:03 am
Viewing 12 posts - 16 through 27 (of 27 total)