Viewing 15 posts - 31 through 45 (of 62 total)
No need to follow the "Notes" in the challenge...you can give me any solution which is best....
January 4, 2011 at 8:39 am
Actually i'm trying to solve a challenge posted in one of the websites but was unable to do so.....I seriously want to know that solution cause i have a great...
January 4, 2011 at 8:37 am
Hi Lutz,
I created a function by slightly modifying your query
CREATE FUNCTION [dbo].[udf_TEST_EMAIL] (@String VARCHAR(MAX))
RETURNS @Email TABLE (Email VARCHAR(MAX))
AS
BEGIN
DECLARE @E_mailID VARCHAR(MAX), @delimiter CHAR(1), @sub varchar(max)
SET @delimiter ='@'
WHILE CHARINDEX(@delimiter,...
January 4, 2011 at 7:54 am
Hi vani,
Can you please post the document which helped you acheive this.
thanks
Kevin.
December 21, 2010 at 1:08 pm
CAn you post your final solution.....
thank you
December 16, 2010 at 1:25 pm
there should be a space for the seconds (' 00:00')
December 16, 2010 at 1:15 pm
Try this
declare @lastdate datetime, @startdate datetime
set @lastdate = '12/15/2010'
select @startdate = convert(datetime, datename(month,@lastdate) + ' ' + datename(day,@lastdate) + ' ' + datename(year,@lastdate) + ' 00:00')
print @startdate
December 16, 2010 at 1:12 pm
kevin4u06 (12/15/2010)
Try this out....select columna, columnb, count(*) from Table
group by columna, columnb
December 15, 2010 at 1:13 pm
Try this out....
select columna, columnb, count(*) from Table
group by columna, columnb
December 15, 2010 at 1:09 pm
thank you ver much lowell this your code helps me.....
December 15, 2010 at 8:31 am
I tried the following code
select left('00'+cast(substring('008', 2,2)+1 as varchar(10)),3)
it hold good only for 000 to 008
of i add 009 + 1 using the above code it will give...
December 15, 2010 at 8:29 am
Thanks lowell. I tried using all the string functions to acheive this but canot get the result.
December 15, 2010 at 8:19 am
Thanks Jeff. I finally got the code i need. Thanks evry1 for helping me out.
November 30, 2010 at 7:21 am
Viewing 15 posts - 31 through 45 (of 62 total)