Viewing 12 posts - 31 through 43 (of 43 total)
First of all thanks for yr quick reply.
I updated following code in trigger :
set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
go
ALTER TRIGGER [trg_EmpMasterBfNo] ON [dbo].[EmpMaster]
FOR INSERT, UPDATE
AS
IF UPDATE(ContactNo)
BEGIN
IF EXISTS ( SELECT 1 FROM...
February 8, 2012 at 10:29 pm
Here my Trigger Code :
set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
go
CREATE TRIGGER [trg_EmpMasterBfNo] ON [dbo].[EmpMaster]
FOR INSERT, UPDATE
AS
IF UPDATE(CantactNo)
BEGIN
DECLARE @EntryNo varchar(50)
SET @EntryNo = (select EntryNo from inserted)
DECLARE @OldCantactNo varchar(50)
DECLARE @NewCantactNo varchar(50)
SELECT @OldCantactNo=d.CantactNo,@NewCantactNo=i.CantactNo FROM...
February 8, 2012 at 4:30 am
Thanks a lot.
i did it as per your suggestion, it made a difference.
what if i change CompanyName,Region,Source to numeric ID instead of this long string ? does it make any...
August 30, 2011 at 10:57 pm
Hi Chris,
here i am attaching actual execution plan of View and Main query as you requested.
thanks for help me
August 30, 2011 at 5:17 am
Pls help me
i am at critical situation.
August 29, 2011 at 11:57 pm
HI,
Here i have attached index definitions as you have asked for.
I want to tell you that i have created index only for those fields which are used in my query....
August 28, 2011 at 11:35 pm
I got the query how to get index details. here my index details
August 27, 2011 at 3:54 am
Hi,
Thanks for helping me.
Here the execution plan and definition of 3 tables which are used in my query. I don't know how can i give you index details.
August 26, 2011 at 2:58 am
Hi, Jim.
replying after bit of time. but it was due to my IT (Networking) personnel who is not able to open port.
is there any other thing to see ? or...
March 24, 2011 at 3:04 am
Hi Jim,
Thanks for reply
i saw configuration settings in my sql server, Default TCP/IP port is 1433.
but i am not able to find 1433 port on firewall.
i tried the following procedure...
March 15, 2011 at 10:56 pm
Thanks man, for helping me
in answer to your questions :
1. I did not changed anything except indexing on a table. (query,table,data,fields all are as it is)
2. b.fid field is numeric...
November 15, 2010 at 11:42 pm
Viewing 12 posts - 31 through 43 (of 43 total)