Viewing 15 posts - 16 through 30 (of 30 total)
I need to know the identity column (EventId) When the Trigger Got Fired i know tha can be done by Select EventId From inserted But what i am not...
January 11, 2004 at 4:38 am
There is one point that i forgot to tell that the rows insertions are done by more that one appliication running simultaneously
January 11, 2004 at 4:06 am
just i need dynamic exectution of query that i didnt get
January 2, 2004 at 9:24 am
Thank you all for your valuable responses
Jonathan' s Method has solved my problem.
Thank you again
jonathan
January 2, 2004 at 2:25 am
Hello Thomas,
Thanks for your valued comments.
this solves my problem to some extent
agin i am not able to fix the problem completly because when i create function like i have...
December 20, 2003 at 3:39 am
anayone can help me to get that its urget
December 19, 2003 at 9:55 am
Can be used this way also
quote:
Create Function DateOnly(@dt DateTime)returns Datetime
as
begin
return Cast(convert(varchar(8),@dt,1) AS datetime)
end
CREATE Function TimeOnly(@dt DateTime)
returns datetime
as
begin
return Cast(convert(varchar(8),@dt,8) AS...
December 19, 2003 at 2:36 am
Let me correct myself
i need the result like this
Select *,fnTest123(SomeTable.SomeField) Result From SomeTable
December 17, 2003 at 1:51 am
there is much more than Points that i earned by answering the question that in future i can think this thing in my mind that i am always not wrong...
December 17, 2003 at 1:47 am
quote:
That's correct, you can't use sp_executesql inside a UDF. Why do you need a function? You could wrape this code...
December 16, 2003 at 2:09 am
But Somehow i am again where i was before
when i create the function using same statements
Example:
Create Function fnTest123()
Returns varchar(255)
As
Begin
declare @sql nvarchar(4000)
declare @params nvarchar(4000)
declare...
December 15, 2003 at 3:01 am
quote:
use sp_executesql with an output parameter, like this:declare @sql nvarchar(4000)
declare @params nvarchar(4000)
declare @name varchar(255)
select @sql =...
December 15, 2003 at 2:55 am
page designing is not in layout tables or anything used for formatting the pages is not correct also left navigation menu must have z-index greater than the ad displayed benethe
where...
November 30, 2003 at 8:11 pm
Hi Venkata,
can u be give me details
November 12, 2003 at 8:53 pm
Hi to all,
Thanks for your response
but the problem still persist
i need to know that is their any way to convert from one time zone to anoyther without hampering the...
November 7, 2003 at 8:08 pm
Viewing 15 posts - 16 through 30 (of 30 total)