Viewing 3 posts - 76 through 78 (of 78 total)
Dear you can use below mentioned code for the same.
Using XML path function you can achieve this task.
-- Datas
DECLARE @jobs TABLE
(
street varchar(100),
seq int
);
insert @jobs VALUES ( 'A',1...
March 16, 2010 at 1:30 am
Will you provide semple script as Mentioned below and your Expected Output from the script.
Create Table #tableA
(
id int,
name varchar(100)
)
DROP TABLE #tableb
Create Table #tableb
(
id int,
f_id int,
ItemName varchar(100),
Date Datetime,
[Status] char(1)
)
Insert...
March 3, 2010 at 2:43 am
Will you provide your sample script with temp table or drieve table?. So it will hepfull to analyze yout problem.
March 3, 2010 at 2:21 am
Viewing 3 posts - 76 through 78 (of 78 total)