Viewing 15 posts - 151 through 165 (of 1,244 total)
One thing I don't see anyone addressing is DRI (declared referential integrity)... AKA Foreign Key Constraints.
This information is crucial (at least IMHO) if mapping relationships between tables is part...
February 7, 2019 at 11:33 am
December 17, 2018 at 2:53 pm
Lot's of people have been doing that trick with RowNumber. Thinking about the...
December 11, 2018 at 1:05 am
Here's an idea that I've been kicking around for a little while now but haven't had the chance to torture test yet...
It's one of those "not guaranteed to work...
December 10, 2018 at 10:39 pm
December 6, 2018 at 11:32 am
December 5, 2018 at 11:35 pm
Here's a quick test to verify...
USE tempdb;
GO
CREATE TABLE dbo.SomeTest (id INT NOT NULL PRIMARY KEY CLUSTERED);
WITH
cte_n1 (n) AS (SELECT...
December 5, 2018 at 12:32 pm
It is doing an index scan but it isn't doing a full index scan. It's doing a VERY limited range scan.
SQL Server knows that ID is the clustered key......
December 5, 2018 at 12:19 pm
December 2, 2018 at 8:05 pm
December 2, 2018 at 7:43 pm
@rockys - Is it possible that the same EmpID could have multiple updates for the same column, at the same time? If so, how would you determine which...
December 1, 2018 at 11:11 pm
I think you may have just picked an off day. I don't think anyone intentionally ignored your question. If people don't like how you phrased a question, they are usually...
December 1, 2018 at 10:56 pm
Scott - Looking at the CleanString function... You currently have a "DELETE" option that would allow you output the "bad" characters... How important is it that you keep that functionality?
December 1, 2018 at 10:42 pm
November 30, 2018 at 12:32 am
Viewing 15 posts - 151 through 165 (of 1,244 total)