Viewing 15 posts - 1 through 15 (of 365 total)
Can you please advise how I can fix this blocking?
May 7, 2018 at 4:40 pm
Trigger1:
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TRIGGER [dbo].[DIM_BILL_INV_ITEM_GAD] ON [dbo].[DIM_BILL_INV_ITEM] FOR DELETE AS
SET NOCOUNT ON;
UPDATE l SET [ACTION_CODE] = 'D'
May 3, 2018 at 11:26 am
Thanks,
Here is the DDL script for the table DIM_BILL_INV_ITEM. Please advise.
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[DIM_BILL_INV_ITEM](
[BILL_INV_ITEM_DID] [int] NOT NULL,
[BILL_INV_ITEM_KEY] [varchar](100) NOT NULL,
May 3, 2018 at 11:22 am
I have used sp_WhoIsActive to find more info on blocking. Can you please advise what I can do to fix this blocking issue.
EXEC sp_WhoIsActive @get_task_info = 2, @get_additional_info =...
May 2, 2018 at 11:32 pm
Session locks for SELECT query:
Lock... |
May 2, 2018 at 6:23 pm
January 11, 2018 at 10:41 am
January 10, 2018 at 2:24 pm
Here is my understanding of this deadlock. But I'm unable to get a solution to resolve this issue. Because of this, ETL load is failing and I have to re-run....
January 9, 2018 at 1:06 pm
January 4, 2018 at 3:52 pm
January 23, 2017 at 10:07 pm
is there way to find concurrent users connecting to a particular database?
March 13, 2016 at 10:14 pm
Hi Jeff and Ed,
I was able to get procedure name and its code (line 39). But my question is:
1. how to find what was running in SSMS using the login...
February 28, 2016 at 8:05 pm
Thank you very much Jeff,
It's a vendor application and we don't own their code and the application update will happens through exe.
My main worry is to find out if something...
February 28, 2016 at 9:54 am
Thanks Jeff,
I was not running any queries in SSMS. We were running bunch of sql scripts which will do some updates (it's a vendor application, will get an .exe...
February 27, 2016 at 4:36 pm
Viewing 15 posts - 1 through 15 (of 365 total)