Viewing 15 posts - 361 through 375 (of 7,597 total)
Take a look at sys.dm_db_index_usage_stats, it should give you what you want.
September 6, 2023 at 3:12 pm
With the exception of random but evenly distributed indexes, I wouldn't use logical fragmentation to determine if an index needs to be rebuilt. In the case mentioned, you actually...
September 5, 2023 at 3:09 pm
Wrap the value in a: FLOOR, CEILING or ROUND(,0) function, depending on how you want to handle the decimal part of the value.
August 31, 2023 at 3:42 pm
There's not a lot of data left in the file, so I'm rather surprised it would take that long to shrink it, since SQL wouldn't need to move that much...
August 28, 2023 at 6:08 pm
The first command might not shrink the file at all, because of the "TRUNCATEONLY" option.
The second command should work, but shrinks can take a long time.
August 28, 2023 at 2:11 pm
For best performance, you want to stop using NULL so you don't have to do ISNULL() as part of the WHERE. Yes, you will have to go back...
August 25, 2023 at 8:08 pm
Once you get rid of the LOWER on the vehicle type, then the clustering key could be ( VehicleType, ValidFrom, ValidUntil ).
August 24, 2023 at 6:24 pm
For best performance, you want to stop using NULL so you don't have to do ISNULL() as part of the WHERE. Yes, you will have to go back and change...
August 24, 2023 at 6:14 pm
SELECT LEFT(devicename, month_in_date - 2) AS device, MAX(CAST(devicedate AS datetime)) AS max_device_date
FROM #test1
CROSS APPLY (
SELECT PATINDEX('%[0-9]/%', devicename) AS month_in_date_prelim
) AS ca1
CROSS APPLY (
...
August 23, 2023 at 5:45 pm
I think CHARINDEXes might be somewhat more efficient here:
;WITH data AS (
SELECT rl_event_id = 'AB123456_BlahBlah_BESTSELLER_blahBlah'
)
SELECT rl_event_id, SUBSTRING(rl_event_id, pos_of_second_underscore + 1, pos_of_third_underscore - pos_of_second_underscore...
August 23, 2023 at 3:05 pm
The db that table was in already had space allocated but that had not been used yet. Therefore, SQL can allocate that space to a table without having to get...
August 22, 2023 at 7:54 pm
RAM doesn't look too short there, but personally I'd add more if you could. RAM is the cheapest overall performance boost you can get. And bump up tempdb size if...
August 22, 2023 at 2:53 pm
Update T --<<-- *must* use T here (the alias and NOT the table name) to be safe
SET ACTIVE=CASE WHEN S.user IS NULL THEN 'N' ELSE 'Y' END
FROM...
August 22, 2023 at 2:47 pm
(1) Cluster the "FF" table on ( FileDate, ISIN ) (if it's not already clustered that way).
(2) Some of the JOIN conditions are out of place. Change this code:
August 22, 2023 at 2:41 pm
Viewing 15 posts - 361 through 375 (of 7,597 total)