Viewing 15 posts - 16 through 30 (of 91 total)
Thanks for responses, here is the answers to questions.
Jeff - Destination is unknown, we just need to place file in network location in specific format requested by destination team
Phil -...
May 11, 2019 at 1:55 am
Thanks Thom, I have thought of LAG function to use, it will work for sure. the only worry is need use same function 200 times as 200 columns in a...
May 1, 2019 at 11:39 am
It does look good, it worked almost 98%, but issue is here with order, the few columns are added to table later - I mean not with original table creation,...
April 13, 2019 at 8:50 am
You got it Thom, That's correct, Am looking for dynamic, my table contains more than 100 columns and also 90-92 rows for Each ID - EX: table contains 3months data...
April 12, 2019 at 4:13 pm
Good Catch 🙂 I have updated code now, Yes i need cross tab query. Please let me know if any questions.
April 12, 2019 at 3:43 pm
I can use cast/convert to change data type of column while doing pivot/unpivot. Can above solution is feasible?
April 2, 2019 at 6:08 am
I see it, i have added extra number in first line, which is incorrect. Below is the corrected output.
one ID can have multiple rows
224A ‘1/1/2012’ ‘2/1/2012’
224A 1000...
April 1, 2019 at 1:45 pm
We can convert to float, it will take care.
Select TRY_CONVERT(FLOAT,[Call Length]) FROM AAAJFJunk
March 11, 2019 at 1:09 am
January 29, 2019 at 9:34 am
Correct Jeff, I don't want to export to excel due to CSV is much faster than Excel exporting. It's not one file to open and format data in...
December 6, 2018 at 11:21 pm
SELECT *,
CASE
WHEN MAX(S_DATE) OVER(PARTITION BY...
September 19, 2018 at 3:17 am
September 18, 2018 at 11:21 am
select a.ID
,b.*
from
#TEMP a
left join #TEMP1 b on
b.ID...
September 16, 2018 at 10:53 pm
September 16, 2018 at 10:51 pm
Viewing 15 posts - 16 through 30 (of 91 total)