Viewing 15 posts - 376 through 390 (of 59,041 total)
Msg 402, Level 16, State 1, Line 11 The data types text and varchar are incompatible in the greater than operator.
I am getting above error when i am trying...
August 29, 2024 at 5:22 pm
Duplicate post removed.
August 29, 2024 at 4:56 pm
select * from dbo.resolutions r where R.documentid = 828222222 and DATALENGTH(r.resolution_text) > 0
resolution_text Text column is taking More time while Querying,
Need to Replace DATALENGTH, when i replace datalength condition
as ...
August 29, 2024 at 4:56 pm
Surely if there are fewer junior developers because most of the junior work is being done by AI, there will also be fewer juniors available to become experienced developers....
August 26, 2024 at 9:07 pm
What is the correct answer?
If you tell me I'll see if I can drag it out of one of the AI sites with an improved prompt.
I'd like to hold...
August 26, 2024 at 8:16 pm
To date, I'm the least impressed with BING AutoPilot and Claude 3.5 Sonnet. I'm especially disappointed in Claude 3.5 Sonnet because it doesn't seem to provide references like the others...
August 26, 2024 at 6:49 pm
posting the query plan as a zip.
Neither of those are an "Actual" execution plan. They're both "Estimated". While that's close, it misses certain nuances. It does appear...
August 25, 2024 at 1:43 pm
I know you are after how to estimate X - that is not really a good way to go as there are way to many unknowns, and without looking...
August 22, 2024 at 1:26 pm
I have nothing good to say about SQL Server 2022. Any benefits have been outweighed by things like you describe and some seriously slow running code. MS broke things starting...
August 22, 2024 at 8:47 am
This is the query with the plan (names have been changed):
DECLARE @DateColumn DATE = '2024-07-01';
DELETE s
FROM [Schema].TableName s
INNER JOIN #WorkingTable q
ON q.Column1 =...
August 22, 2024 at 8:04 am
This won't tell you if a table is "empty" or not but it will tell you if it has been used by users since the last restart or not. I...
August 19, 2024 at 4:31 am
Please post the Actual Execution plan for the DELETE of just ONE row. Attach the ACTUAL execution plan so we can take a look at it. A graphic of the...
August 19, 2024 at 3:06 am
Before you mess with those things...
... try setting the following...
August 17, 2024 at 4:35 am
Also, put the variable name in a QUOTENAME() function... just to be safe two ways.
August 17, 2024 at 4:28 am
Lordy. My apologies. I just noticed that the table you posted has no Clustered Index.
I have to assume that you're not rebuilding the HEAP with Ola's Code, correct?
Also, you said...
August 14, 2024 at 4:03 pm
Viewing 15 posts - 376 through 390 (of 59,041 total)