Viewing 15 posts - 271 through 285 (of 686 total)
Help me understand this scenario... I'm trying to TEST a fix for Implicit conversion on a single update...
sample 1 would be doing a int to nvarchar(255)
sample 2 I try to...
March 4, 2022 at 5:13 pm
Thx,
Do we pay any performance hit when the script reports back that it's seeing:
Table - Design
Column - design
Convertfrom - nvarchar
convertfromlength - 40
converttolength - 240
March 4, 2022 at 2:06 pm
I do have another question as I'm digging into this further to help uncover code needing fixed. When I ran the provided query to uncover IMPLICIT_CONVERSION query's(thx) I started looking...
March 4, 2022 at 1:19 pm
Hope I caught all replies, I'm going with having ORM fix code as suggested..
It looks like someone is generating ORM code but doing it incorrectly. ORM tools can use the...
March 2, 2022 at 6:04 pm
Memory - 32gig
MAXDOP, cost threshold -- Default
Index and stats are current...
It's a VM with backend SAN and no issues with latency..
March 2, 2022 at 5:20 pm
They did throw is at me... what Indexes could be applied to help..
They did throw hardware at it.. which is the wrong approach.. and it only slightly improved overall response..
March 2, 2022 at 4:35 pm
correct not in house generated code..
Solutions\fixes that could be applied?
Thanks for responses..
March 2, 2022 at 4:21 pm
another piece of info there is a non-clustered Index on:
design
version
class
object
Thanks again.
March 2, 2022 at 4:06 pm
Michael L John,
Thanks for script.... help me understand output versus table layout and why slowness is occurring
Script output:
Table - Design
Column - design
Convertfrom - nvarchar
convertfromlength - 40
converttolength - 240
I have attached...
March 2, 2022 at 4:04 pm
Table layout...
CREATE TABLE [dbo].[designerror](
[design] [nvarchar](40) NOT NULL,
[layercode] [int] NOT NULL,
[position] [int] NOT NULL,
[operation] [int] NOT NULL,
[description] [nvarchar](1000) NULL,
[seq] [int] NOT NULL,
[designAlternative] [int] NOT NULL,
[subDesign] [nvarchar](120) NOT NULL,
[subDesignAlternative]...
March 2, 2022 at 3:16 pm
The designError table is small and there are no keys or indexes. I can't see the code that's issuing the call for the delete(package software) .. I can't change any...
March 2, 2022 at 2:27 pm
I ended up with something like this. Do you see any issues I would run into?
Thx for comments...
IF (OBJECT_ID('tempdb..#col') IS NOT NULL) DROP TABLE #col
SELECT IDENTITY(INT,...
February 21, 2022 at 2:30 pm
Viewing 15 posts - 271 through 285 (of 686 total)