Viewing 15 posts - 16 through 30 (of 542 total)
Thanks Johan.
Any way to get to know what -2 spid is doing within sql server? I want to know what query is being run through an MSDTC txn?
March 20, 2024 at 6:33 pm
Try these and see if they help. Be sure to review the query plan to verify:
INDEX ON mq: ( TABLE_NAME, ROWID_MQ_DATA_CHANGE )
UPDATE mq
SET mq.sent_state_id = 6,
UPDATED_BY...
March 20, 2024 at 6:29 pm
Current VLF count info and AG properties.
AG properties
March 20, 2024 at 6:46 am
700GB log file for a 5TB database? Have you determined what caused it to grow that large and, if you reduce the size, will it grow to be that...
March 20, 2024 at 6:45 am
If Jeffrey, thanks for your inputs. Have some doubts. please clarify.
For a 5TB database - a 700GB transaction log isn't out of the ordinary, and the fact that you only...
March 20, 2024 at 6:30 am
One question application team/dev team had is, is there an option available to automatically commit txn's which are opened by the application when using Explicit txn? is there any option...
March 20, 2024 at 5:39 am
After doing some research, got this query. For explicit transact, it will show "user_transaction" as txn_name,
if implicit_transaction is ON , then it is showing up as "implicit_transaction" as txn_name.
March 20, 2024 at 5:33 am
is there way or using DMV we can tell an explicit transaction has been started by the session? we see so much blocking because of such sessions?
I am trying to...
March 19, 2024 at 6:22 pm
maxdop is set to 1 at instance level and at database level it is set to 4. looks like each operator within plan is taking 4 threads
February 16, 2024 at 7:25 am
maxdop is set to 1 at instance level and at database level it is set to 4. looks like each operator within plan is taking 4 threads
February 13, 2024 at 5:17 pm
Thanks for your valuable inputs.
November 27, 2023 at 8:52 pm
Stored proc code.
create procedure [dbo].[usp_domain_matching_idl]
as
begin
SET NOCOUNT ON
drop table if exists #domainextract
drop table if exists #party
drop table if exists #customers
drop table if exists #Prospects
drop table if exists #hyphenandsuspects
drop...
November 22, 2023 at 6:51 pm
Thanks a lot frederico and Jeffrey. It means a lot !!
Felt that I have uploaded the stored procedure code. Uploading it now. I see lot of anti-patterns in this stored...
November 22, 2023 at 6:45 pm
Viewing 15 posts - 16 through 30 (of 542 total)