Viewing 15 posts - 166 through 180 (of 7,602 total)
DECLARE @intID BIGINT
,@bridgeid BIGINT = 1
;
UPDATE dbo.bridge
SET @intID...
June 10, 2024 at 5:50 pm
Cluster STXL on ( MANDT, TDOBJECT, TDNAME ) instead of creating all those separate non-clus indexes. If those key columns are not inherently unique, and you can add...
June 7, 2024 at 7:58 pm
In case you want it, here's a function to prep the string as we discussed:
DECLARE @string nvarchar(max);
SET @string = '"A1","A2","A3","A4","A5"
"000066666XYZ",00002,"","","1,000,000"';
SET @string = REPLACE(@string, CHAR(13) + CHAR(10), ',');
SELECT @string, dbo.prepare_string_for_split(@string, DEFAULT,...
June 7, 2024 at 7:49 pm
I look at missing index stats quite frequently. Very often I don't add or update index based on them, but I still review the stats just in case. Sometimes a...
June 7, 2024 at 6:44 pm
Cluster STXL on ( MANDT, TDOBJECT, TDNAME ) instead of creating all those separate non-clus indexes. If those key columns are not inherently unique, and you can add a single...
June 7, 2024 at 6:36 pm
When I had to do something like this, I created a custom function that would replace commas if, and only if, they were enclosed in double quotes. Using a function prior...
June 6, 2024 at 5:49 pm
You can't really accurately consider one index in isolation. You need to look at all indexes on the table AND at all uses of the table.
sys.indexes will give you the...
June 6, 2024 at 5:00 pm
The clus index must be unique, and it is a lot of overhead for SQL to force uniqueness, which it must do if you don't. You then will often also...
May 31, 2024 at 1:39 pm
No, if the combination of all three columns would always be unique if CHANGENR were added:
dbo.CDPOS ( OBJECTCLAS, OBJECTID, CHANGENR )
May 30, 2024 at 1:49 pm
You've got the correct clustered index on CDPOS, except perhaps that it's not unique. If adding CHANGENR to the clus index will make it UNIQUE, you should do that.
Either way,...
May 29, 2024 at 2:11 pm
If you are putting NOLOCK on an INSERT, UPDATE, or DELETE query, that's not going to do anything. SQL doesn't allow NOLOCK on data change operations as it doesn't...
May 21, 2024 at 9:58 pm
... but is using surrogate keys really that bad? ...
Surrogate keys are not necessarily bad, if chosen after proper analysis, but just automatically defaulting to using a surrogate...
May 21, 2024 at 1:41 pm
IF the most critical lookup on the table is the one you've posted, and since you're deleting rows frequently, I'd suggest you consider re-clustering the table to allow clus index...
May 21, 2024 at 12:33 am
The ERD is nice, thanks for that.
But I think you need to step back and do the logical design first (designing using Entities and Attributes rather than tables and columns),...
May 20, 2024 at 6:35 pm
Viewing 15 posts - 166 through 180 (of 7,602 total)