Viewing 15 posts - 46 through 60 (of 89 total)
So what it is doing is inserting the line break every 2033 characters. I am trying some work arrounds but no solution yet.
September 12, 2018 at 10:58 am
I was able to execute the code column by column as I have not figured how to include all column in one statement. It is still not removing the characters...
September 12, 2018 at 10:34 am
This is what I have but I am still getting an error. I am slowly understanding it.
Msg 208, Level 16, State 1, Line 106
Invalid object name 'dbo.Event_Total'.
September 11, 2018 at 11:54 pm
Here is what I think it should be since the @score is the last columnSelect *
From #Event_Total
REPLACE(@score, CHAR(13)+CHAR(10), ;'');
FOR JSON...
September 11, 2018 at 5:19 pm
So I upgraded to 17 express so I can get the JSON output function. I then found a program that will create an app from the JSON output (Jasonette
September 11, 2018 at 2:22 pm
also for some reason it is not sorting. SELECT *
INTO dbo.Event_Total
FROM dbo.#Event_Total
ORDER BY CompNum
September 5, 2018 at 12:46 pm
Ok, I took a look at the code and made some modifications and had some questions.
Here I needed to make a change for backwards compatibility
[code...
September 5, 2018 at 12:27 pm
Ok, so the summer is finally over and everyone is back to school and I can devote more time to the script. I have been going over everything and I...
September 4, 2018 at 4:47 pm
June 1, 2018 at 1:54 pm
So I was looking at the PARTITION BY here https://stackoverflow.com/questions/9315070/trying-to-understand-over-and-partition-by. So I need to fix it so the ScoresID is a valid number and then do the sorting. The...
June 1, 2018 at 1:46 pm
June 1, 2018 at 1:34 pm
I added this sorting function and it is working but it seams to be sorting on some other value. GROUP BY CS1.ScoresID, CS1.[Type], CS1.AG, CS1.CompNum, CS1.LastName,...
June 1, 2018 at 1:07 pm
Having one table would be the best but one of the issues we have is the place order is not correct. Since the software does not include the age groups...
June 1, 2018 at 1:05 pm
June 1, 2018 at 12:43 pm
June 1, 2018 at 12:39 pm
Viewing 15 posts - 46 through 60 (of 89 total)