Viewing 15 posts - 46 through 60 (of 7,608 total)
More technically, you need permissions for whatever account SQL Server is running under.
January 2, 2025 at 6:42 pm
... How does the @SINGLE_RETURN cause the messages to accumulate? ...
Steve
It doesn't. It's the "+=" that causes the msgs to "accumulate" (concatenate).
For example, if you do this:
DECLARE @msg varchar(max);
DECLARE...
January 1, 2025 at 11:16 pm
You can check for NULL as well in either format:
DECLARE @LATEST_DATE date;
SELECT @LATEST_DATE = ISNULL(MAX(MY_DATE), ...) FROM DBO.TABLE
December 27, 2024 at 3:06 pm
I think you'll have to check for that yourself, maybe something like this:
SELECT CASE WHEN TRY_CONVERT(DECIMAL(9,6),'6.125') <> TRY_CONVERT(DECIMAL(5,2),'6.125') THEN 'Loss of precision error' ELSE 'Good' END
SELECT CASE...
December 26, 2024 at 10:29 pm
Either below; the first is more typical:
DECLARE @LATEST_DATE DATE;
SELECT @LATEST_DATE = MAX(MY_DATE) FROM DBO.TABLE
--or:
SET @LATEST_DATE = (SELECT MAX(MY_DATE) FROM DBO.TABLE);
December 25, 2024 at 7:36 pm
It depends. If the unused space is significant and is embedded in pages that are being read, i.e. contain live data, then it could slow down access (somewhat) because more...
December 23, 2024 at 7:17 pm
(1) If you have a lot of dbs, make the $IDENTITY column a primary key in the table, so you have a seek instead of a scan
(2) DBCC CHECKDB can...
December 21, 2024 at 8:09 am
And, that is the correct method for moving dbs to a new drive.
December 17, 2024 at 7:34 pm
IF you're on SQL 2022, you can add "IGNORE NULLS" to the LAG function.
Otherwise you can use an OUTER APPLY with a SELECT TOP (1). For example:
SELECT...
December 16, 2024 at 3:31 pm
First, you need to correct the query to use the alias in the UPDATE, not the original table name. Other things to consider if still having problems:
(1) How large is...
December 11, 2024 at 6:51 pm
AFTER UPDATE is the more current syntax, so I would go with that.
I would also (1) take advantage of the UPDATE() function and (2) allow the trigger to properly set...
December 9, 2024 at 3:42 pm
It depends. You'd need to look at the available indexes and whether SQL uses them for the query. So, look at the query plan and see what it "tells" you. ...
December 9, 2024 at 3:21 pm
To reduce space usage in that db, you can specify SORT_IN_TEMPDB = ON in the index create.
Also, to save time, pre-allocate additional log space, if needed. If you must get...
December 9, 2024 at 3:18 pm
The CostKeyDeletes tables should be clustered on CostKey, not on ID. It's best for it to match the original table's key. You can keep the ID, if you want, just...
December 6, 2024 at 7:19 pm
Viewing 15 posts - 46 through 60 (of 7,608 total)