Viewing 15 posts - 931 through 945 (of 1,114 total)
Now,i want to split the following string in the below format.
Declare @Str varchar(4000)
set @Str = 'David,karthikeyan'
Expected Format:
D
D A
D A V
D A V I
D A V I D
K A R T...
December 21, 2007 at 2:41 am
Thanks.But,is it possible to get lastmonth's lastdate without using localvariables ?
I mean i want to find last month's last date only ? I don't required the current month's first,last month.Just...
December 21, 2007 at 1:25 am
Jef,
Wow ! Really interesting! It opens my eye broadly.
Thanks for your explanation with good example.Once again,Really i am wondering about your skill.
I didn't check your second code.I am going to...
December 21, 2007 at 12:21 am
Jeff,
Really i am wondering about your skill.
Can you explain me your two different queries in detailed ?Also,
1. What do you mean by @Delim+Remarks+@Delim ?
i.e Why...
December 20, 2007 at 4:43 am
Stephen Lee (12/14/2007)
Subquery returned more than 1 value. This is not permitted when the subquery follows =, !=, = or when the subquery.
Stephen ,before changing your trigger logic,do you...
December 17, 2007 at 3:31 am
how to form setbased query Without using spt_values table ? is there any other way to avoid while loop ?
Say for example i have to write a query to display...
December 17, 2007 at 3:14 am
and you also get it from the syscomments table.
select text
from syscomments
where id = object_id('procedurename')
December 17, 2007 at 3:08 am
Thanks Chris.
December 16, 2007 at 11:49 pm
Jeff,Thanks a lot for your answer.
December 16, 2007 at 11:38 pm
Thanks a lot for all experts. Your suggestions are very useful to me.
December 16, 2007 at 11:33 pm
Jeff,
Sorry for late reply.
Solution:
Create table Extract
(
ID Int,
Remarks varchar(100)
)
insert into Extract
select 1,'123-01,EX,2600'
insert into Extract
SELECT 2,'123-01,EX,2600,123-02,EX,2600'
insert into Extract
SELECT 3,'123-01,EX,2600,123-02,EX,2600,123-02,EX,2600'
For example i have inserted 3 rows.Metnik wants to extract in the below format.
ID...
December 16, 2007 at 11:17 pm
So far i have faced around 20 to 25 interviews.But so far i have attended one client interview only before 1 year. Also i haven't worked in client place.Yes,So far...
December 14, 2007 at 1:15 am
Viewing 15 posts - 931 through 945 (of 1,114 total)