Viewing 15 posts - 46 through 60 (of 60 total)
su_kumar11 (7/21/2008)
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 =...
July 21, 2008 at 5:52 am
Actually yes , it is the Monday article and though I had made a comment on the grammar being annoying, I wasn't too pleased to see so many comments on...
July 10, 2008 at 11:13 pm
How do I delete this post. Doesn't seem to be right to ask this question.
July 9, 2008 at 1:36 am
Good article but the typos/spellings were a little annoying.
July 8, 2008 at 2:31 am
How do I raise an exception/error if one of the files doesn't execute properly.
Rosh
May 27, 2008 at 5:42 am
"If there are common patterns to how you call this, then you could try splitting it into multiple subprocs based on the values passed in."
This is what I am looking...
May 13, 2008 at 1:22 am
Its a search query ..........so we need not get all the inputs. or we might get all....
if it is a numeric data and not to be searched then we...
May 13, 2008 at 12:54 am
Tried the Index Tuning Wizard. Just recommends an existing index. Not much help that.
May 12, 2008 at 11:31 pm
Does Employee table have any existing data?
May 6, 2008 at 10:53 pm
The query used in the article is what I was planning to use in the function. My problem is that the client doesnt want to be database centric, though...
February 5, 2008 at 5:48 am
Nope no temp tables. I guess will have to rely on the front end to get this done.
February 5, 2008 at 5:33 am
On the contrary performance is the key criteria here. I guess the data I have provided is quite simplistic to assume that. I know how to get this done without...
February 5, 2008 at 5:08 am
I need it in sql server 2000.
But thanks!!!
February 5, 2008 at 4:49 am
I guess I was so time pressed to get the answer that I didnt frame the question well. I have a database which will be set for replication later. I...
January 23, 2008 at 1:53 am
Viewing 15 posts - 46 through 60 (of 60 total)