Viewing 15 posts - 46 through 60 (of 1,243 total)
I think you've got what I mean and that kind of query would be my first choice. But here's the rub, there will be rows in the main table like...
March 5, 2021 at 2:45 pm
January 15, 2021 at 10:10 am
So we have this third party shipping system that is...well...user hostile at best. To add insult to injury for the users the system has been suffering increased performance...
January 15, 2021 at 7:38 am
You can use sp_update_jobstep. Are you sure you can't do it in SSMS? If you open the properties tab of the step in question you can edit the Step...
December 24, 2020 at 7:26 am
My boss manually deleted the backlog in chunks on Friday and things appear to have been fine over the weekend. I'll know a bit more definitely when the...
December 15, 2020 at 7:29 am
Found out the other week, we're likely to be working from home to the end of June 2021...
So I splurged and bought myself a new, more adjustable desk chair...
December 15, 2020 at 7:14 am
Well, that took a tangent...
Thanks for your input gents. I'd done some poking about and I'd couldn't find what was calling the task anywhere. I did find the proc that...
December 14, 2020 at 7:47 am
Typical WYPIWYG, what you pay is what you get.
😎
The number of rows limitation just tells us that someone is using an old version of...
October 8, 2020 at 6:39 am
October 6, 2020 at 6:50 am
WITH Numbers AS
(
SELECT CAST(ROW_NUMBER() OVER(ORDER BY(SELECT NULL)) AS decimal(8,2)) AS N
FROM
(VALUES(1),(1),(1),(1),(1),(1),(1),(1),(1),(1))t(N)--10 Rows
CROSS JOIN (VALUES(1),(1),(1),(1),(1),(1),(1),(1),(1),(1))t1(N) --100 Rows
CROSS JOIN (VALUES(1),(1),(1),(1),(1),(1),(1),(1),(1),(1))t2(N) --1000 Rows
/**********Add these lines in if...
June 1, 2020 at 1:32 pm
You're welcome Paul.
That query will produce up to 1000 rows if needs be just by changing the '<=500' to what you want.
June 1, 2020 at 1:13 pm
Have you copied all of the query? It should be returning 500 rows. The last line is 'WHERE N<= 500'.
June 1, 2020 at 1:04 pm
Thanks Neil, unfortunately not. It just gives back the numbers 499.01 for lower and 500.00 for upper but I need the numbers from 1.00 onwards
Thank you
Paul
I'm not sure what...
June 1, 2020 at 12:58 pm
WITH Numbers AS
(
SELECT CAST(ROW_NUMBER() OVER(ORDER BY(SELECT NULL)) AS decimal(8,2)) AS N
FROM
(VALUES(1),(1),(1),(1),(1),(1),(1),(1),(1),(1))t(N)
CROSS JOIN (VALUES(1),(1),(1),(1),(1),(1),(1),(1),(1),(1))t1(N)
CROSS JOIN (VALUES(1),(1),(1),(1),(1),(1),(1),(1),(1),(1))t2(N)
)
SELECT
N-0.99 AS Lower
,NAS Upper
FROM
Numbers
WHERE N<= 500
Does that work?
June 1, 2020 at 12:48 pm
I've done a bit of research and experimenting on this and I think I've worked out what's happening. I've got a theory as to why but I shouldn't take as...
May 26, 2020 at 1:02 pm
Viewing 15 posts - 46 through 60 (of 1,243 total)