Viewing 15 posts - 16 through 30 (of 35 total)
Could u please tell me how to start the server with traceflag 1400.
July 28, 2008 at 3:53 am
The site you have given is not opening. So
So
Please give me solution.
July 25, 2008 at 12:21 am
Table definition is like that
CREATE TABLE [dbo].[StateDet](
[StateID] [int] NOT NULL,
[StateDetID] [int] IDENTITY(1,1) NOT NULL,
[ItemTypeID] [int] NULL,
[ToStateID] [int] NULL,
[TaxStructureID] [int] NULL,
CONSTRAINT [PK_StateDet] PRIMARY KEY CLUSTERED
(
[StateDetID] ASC
)WITH (PAD_INDEX =...
July 24, 2008 at 5:26 am
But If talk about join then common column should be indexed always.
Its right isn't? whether the table contain data or not.
July 22, 2008 at 3:33 am
I am wrtting a trigger on emp table
and passing the value in empdet table
July 21, 2008 at 6:06 am
I have tried to write as follows but its working...
CREATE TRIGGER LEAVE_TRIGGER
ON EMP
FOR insert,UPDATE
AS
DECLARE @LEAVE INT
DECLARE @EMPID INT
BEGIN
insert into EMPDET values (@empid,@leave)
update emp set emp.leave = emp.leave-@leave
from...
July 21, 2008 at 5:29 am
Hi,
No any message written to the SQL Log/ SQL Agent Log.
yes, the SQL Agent running.
...
June 28, 2008 at 6:54 am
Could u tell me that how I can set datetime datatype in yyyy-mm-dd format.
June 26, 2008 at 7:04 am
I know that query but problem was different.
June 26, 2008 at 6:23 am
Hi ,
I am using sql 2005.
June 19, 2008 at 7:14 am
Hi
I resolved my problem.............
Thanks
June 18, 2008 at 1:26 am
Viewing 15 posts - 16 through 30 (of 35 total)