Viewing 15 posts - 346 through 360 (of 2,610 total)
Thank you, Phil - the execution plan is the same. And same as with my tally table, 94% of it goes on INSERT INTO @t table
You don't need to...
June 13, 2023 at 4:16 pm
;WITH CTE AS
(
SELECT oven,
T.Hours,
...
June 6, 2023 at 1:16 am
Got no idea if this will work as you haven't posted any consumable data:
;WITH CTE AS
(
SELECT System,
...
June 5, 2023 at 10:03 pm
Python needs indentation to work.
June 5, 2023 at 10:07 am
Thanks for the reply. This query took over 3 minutes to run and it still didn't produce a result so I cancelled it. The run time on this one...
June 5, 2023 at 1:09 am
This is an equivalent query
SELECT T4.UNDERLYING_SYMBOL,
T4.QUOTE_DATE,
T4.EXPIRATION,
T4.ROOT_SYMBOL
...
June 4, 2023 at 10:30 pm
Your SQL looks a bit odd. There is no point in ordering by something you are partitioning by. You have Car, Direction in the partition and also in the order...
June 2, 2023 at 5:43 pm
SELECT y.ArriveDate, y.Car, x.arrival, x.direction, x.totalIn, x.totalOut, x.StationId, x.StationName
FROM [Ridership].[dbo].[Rail2019] x
INNER JOIN (SELECT DISTINCT ArriveDate, Car
...
June 2, 2023 at 1:12 am
SELECT rp.*
FROM returned_products rp
WHERE rp.returned_products_reason NOT LIKE '%reason_[2-3]%'
;
June 1, 2023 at 1:01 am
As C compiles into an Assembly File it can't be faster than Assembler, at best the same.
Assembly instructions are the instructions on the CPU.
Johnathan that was not my...
May 31, 2023 at 4:13 pm
In fact C can be as fast or faster than Assembler and I think this is partially because of highly advanced compilers for C.
As C compiles into an Assembly...
May 31, 2023 at 2:39 pm
If you ever had to deal with Assembler then COBOL would look like the futuristic flying car. When I was in college they taught us both Assembler and COBOL. ...
May 31, 2023 at 2:33 pm
Maybe this?
DROP TABLE IF EXISTS #Data;
CREATE TABLE #Data
(
CLNUM INT
,Model INT
,CLSTATUS CHAR(1)
,CLSTATDATE DATE
...
May 31, 2023 at 9:17 am
COBOL is no different and is barely older than Oracle and SQL Server.
COBOL 1959, Oracle 1979, SQL Server 1989
For computing 1959 is very early, in 1960 there were fewer than 2,000...
May 30, 2023 at 10:29 pm
Viewing 15 posts - 346 through 360 (of 2,610 total)