Viewing 15 posts - 1,846 through 1,860 (of 7,616 total)
CASE, ISNULL and COALESCE are all an integral part of SQL Server and follow its general syntax. It's because IIF is so unlike other other functions and expressions...
March 1, 2021 at 9:36 pm
A clustered index would be the best chance to avoid deadlocks. So there are roughly 60K rows for each column1 value? And you want to change all of them in...
March 1, 2021 at 9:22 pm
If there's no index at all, might as well make it a clus index on column1. Yes, an index should help, since it will avoid scanning the whole table for...
March 1, 2021 at 6:36 pm
CASE, ISNULL and COALESCE are all an integral part of SQL Server and follow its general syntax. It's because IIF is so unlike other other functions and expressions in SQL...
March 1, 2021 at 6:30 pm
Does the table have an index with column1 in it, or preferably where column1 is the first column in an index? If no, SQL would have to scan the table...
March 1, 2021 at 6:17 pm
If the main table is really that narrow (few bytes), then compress the non-clus index to reduce the pages more:
CREATE UNIQUE NONCLUSTERED INDEX IX1_IattribINT ON dbo.AttribINT (...
March 1, 2021 at 4:07 pm
I'd suggest first try creating a non-clustered index on ( OID, AID ). Cluster the temp table on ( OID /*and AID if available*/ ).
CREATE UNIQUE NONCLUSTERED...
March 1, 2021 at 3:07 pm
Need to see the DDL for AttribINT, including all index definitions.
March 1, 2021 at 2:36 pm
I dislike IIF ... its "familiar" for people that use similar functions in Excel, but I think CASE is better in SQL
IIF only has two outcomes, true/false, and to...
February 28, 2021 at 3:38 am
Yeah, that code should do it.
But if you're using the column name "ClientNotes" directly in a SELECT you will get the original column value, not the one after the REPLACEs. ...
February 28, 2021 at 3:19 am
Most typically:
select name,count(*) as name_count
from dbo.table_name
where name like '%ra[jm]%' and P = 1
February 27, 2021 at 5:47 pm
IIF([var1Title] != '', [var1Title] + ISNULL(' - ' + [var1Topic], '') + ISNULL(' - ' + [var1Name], ''), '') AS Item1
February 26, 2021 at 4:28 pm
I'd avoid a guid if at all possible.
Make sure you have an index keyed first on c1, so that determining the max(c1) is a single, quick seek. An INSERT of...
February 26, 2021 at 4:25 pm
SELECT
phone_string,
phone,
--LEN(phone) AS phone_len,
CASE WHEN
CASE WHEN...
February 26, 2021 at 4:20 pm
I wouldn't make the Status a key column, since it's likely to change so often, at least in the earlier life stage of the row. The rows are small anyway,...
February 26, 2021 at 8:17 am
Viewing 15 posts - 1,846 through 1,860 (of 7,616 total)