Viewing 15 posts - 76 through 90 (of 542 total)
Thank you Scott.
August 23, 2023 at 11:12 am
August 17, 2023 at 1:25 pm
Hi Johan, Thank you. Actually, I wanted to know the reason the difference between the two methods.
August 17, 2023 at 1:14 pm
Thank you everyone. It turned out to be a network issue.
July 21, 2023 at 9:58 am
Thanks a lot Johan and Jeffrey.
One thing, I wanted to ask. Is there a way to run deletes in small batches to minimize blocking especially when child tables are involved...
June 16, 2023 at 6:34 am
Have you tried pasting it into ChatGPT? It will explain it.
just created a login and tried it. It gave some good layman explaination. Once thing, I wanted to ask, why...
April 8, 2023 at 6:40 pm
From the nature of some of the code, it looks like all parameters are being passed as NVARCHAR(4000).
It doesn't matter how well code may be written, that generally means...
April 8, 2023 at 6:28 pm
vsamantha35 wrote:Can anyone explain what this mean?
ChatGPT is really good at explaining things like that. Just paste the error message into it.
This isn't an...
April 8, 2023 at 6:22 pm
without even knowing which CRM vendor this is I would suggest the following
but your locking is typical of readers blocking writers (which RCSI "solves") - and fact that that...
April 8, 2023 at 6:15 pm
Created a table in such a way, each rowsize is one 8K page.
Now when I execute this
SELECT
T.name as 'Table',
ix.index_id,
ix.[name] AS IndexName,
ix.type_desc AS IndexType,
[ips].[index_level],
ips.page_count AS [PageCount]
FROM sys.dm_db_index_physical_stats (DB_ID(), NULL, NULL, NULL,...
April 4, 2023 at 6:57 pm
Is there a way what queries caused the data growth and what tables grown big during that time frame? Any ideas?
March 27, 2023 at 6:27 am
Data movement will be always there as it is synchronous commit replica and this logic works for doing index rebuilds without any issue. But for update stats why it is...
March 19, 2023 at 7:23 am
Viewing 15 posts - 76 through 90 (of 542 total)