Viewing 15 posts - 136 through 150 (of 2,610 total)
I see many people that site things like a lack of training at work, etc, etc.
Tell me... if you have a degree, who paid for it? How did you...
March 15, 2024 at 11:15 pm
One more thing...
The create table and create index code was created before any rows were added to the temp tables. Not sure why the run time grew like that. ...
March 15, 2024 at 6:50 pm
Hello,
I have found the problem, in my indexes i forgot XKRES table I missed that there is difference: XHRES and XKRES.
After preparing the indexes now uses all...
March 15, 2024 at 1:43 pm
I am getting an error
Msg 468, Level 16, State 9, Procedure dbo.WIP_Query_V2, Line 462 [Batch Start Line 2]
Cannot resolve the collation conflict between "SQL_Latin1_General_CP1_CI_AS" and "Latin1_General_CI_AS"...
March 15, 2024 at 5:27 am
You need to remove the drop existing bit, as there is no existing index on a new table.
March 15, 2024 at 4:39 am
The optimiser should be able to simplify the query to remove the nesting so it might not make much difference.
One of the big advantages...
March 15, 2024 at 2:51 am
The optimiser should be able to simplify the query to remove the nesting so it might not make much difference.
One of the big advantages of putting...
March 15, 2024 at 1:00 am
The optimiser should be able to simplify the query to remove the nesting so it might not make much difference.
One of the big advantages of putting you results...
March 15, 2024 at 12:04 am
The optimiser should be able to simplify the query to remove the nesting so it might not make much difference.
One of the big advantages of putting you results into a...
March 14, 2024 at 11:01 pm
You can simplify the query to this:
SELECT COUNT(*)
FROM BSEG I
LEFT JOIN BKPF H
ON...
March 14, 2024 at 3:19 pm
Here is a script for getting the definition of temp tables:
https://www.sqlservercentral.com/scripts/get-temp-table-definition
March 14, 2024 at 11:27 am
like inlinable scalar udfs requiremnts , is there any link which can tell me requiremnts of UDF like this one
March 13, 2024 at 9:59 am
This might be more efficient:
;WITH CTE AS
(
SELECT *,
ROW_NUMBER() OVER (ORDER BY (SELECT...
March 13, 2024 at 12:41 am
SELECT Color,
SampleType,
SUM(SampleValue) SampleValue
FROM #SampleData
GROUP BY Color,
...
March 13, 2024 at 12:16 am
From ChatGPT 4:
The provided deadlock XML contains a lot of information, but let's focus on the core elements to diagnose and address the deadlock issue.
First, let's break down the XML...
March 11, 2024 at 10:41 pm
Viewing 15 posts - 136 through 150 (of 2,610 total)