Viewing 15 posts - 16 through 30 (of 56 total)
can you give me as example !!
November 28, 2011 at 6:19 pm
works well thanks guys
November 28, 2011 at 6:01 pm
this is what i am doing
insert into #t1(col1, col2, col3, col4, col5)
select col1 col2 col3 col 4 col5 from R1
where
R1.col1 > 0
and R1.col5...
November 28, 2011 at 5:26 pm
i am trying 5 columns of data from 5 different tables into one table
November 28, 2011 at 8:06 am
tableA ,TableB, tableC , tableD , tableE,
colA. colb ,colc , colD , colE,
s, p, ...
November 27, 2011 at 8:36 pm
table1
col1 col2 col3 col4 col5 col6 col7 col8 col9 col10
tableA tableB tableC tableD tableE
colA ...
November 27, 2011 at 8:15 pm
you can use common table expressions as well
some thing like
; with temptable
as
( select col, col2, row_number() over
( partition by col1,col2, order by col1,col2 )...
November 25, 2011 at 6:13 pm
ohh yeh i got it , never mind
thanks again
November 23, 2011 at 9:20 am
thanks for the quick response , and i forgot to mention i am using two comparisons as well
with the where clause
eg
where
col1 is null
and
col2...
November 23, 2011 at 9:18 am
where can i get that ?
May 27, 2011 at 9:26 am
well i have used the "for xml auto" with the select statement in the query editor of my oledb source and used a flate file destination and directed to a...
May 24, 2011 at 2:26 pm
well got it all figured out ...thanks ny ways
May 24, 2011 at 2:08 pm
sorry for being opaque ...actually they want the work done using the data conversion transformation , so basically i have to use the flate file source and then use the...
May 17, 2011 at 6:37 pm
once converted , it will be stored in the records and they went it in the formate as mentioned above (in a table)
May 17, 2011 at 6:19 pm
Viewing 15 posts - 16 through 30 (of 56 total)