Viewing 15 posts - 181 through 195 (of 668 total)
Not sure why you would need this, but here is an example of how to put 3 records into comma separated values.
drop table if exists...
December 26, 2018 at 6:44 am
That's what I get for guessing 😉 You see the DDL and sample data that I provided. That is what we need along with what you are expecting as a...
December 21, 2018 at 7:23 am
December 20, 2018 at 4:48 pm
I'm pretty sure I already responded to this in another forum, but here's what I guessed at based on what you've provided (no DDL, data, etc...)
[code...
December 20, 2018 at 3:37 pm
how about posting ddl, data and expected result
December 20, 2018 at 1:51 pm
as long as the data in the AuditDate column is xml, you can try this to see if it works.
drop table if exists #Audit
December 20, 2018 at 1:17 pm
there's alot of things wrong with this. First and foremost is what happens if it fails? You will have records skipped. Second, why? This would probably be better as an...
December 20, 2018 at 10:41 am
I'm not sure how you would ever get inner and your data is really bad. here's an example of what I think you want, but again only guessing here
December 5, 2018 at 3:10 pm
HappyGeek - Wednesday, December 5, 2018 9:39 AMHomework!!
Slow day 😉
December 5, 2018 at 10:38 am
You can execute the proc into a temp table, then use that to parse the string.
Drop procedure if exists sp_test
go
create proc sp_test...
December 5, 2018 at 9:26 am
This looks like it works, although GW's dod is incorrect in sample data
select ( SELECT count(1) N
FROM #President p
WHERE IsNull(p1.DiedDate,'1/1/2020')...
December 5, 2018 at 7:15 am
not sure what the issue is. The rowcount variables should be populated once the data flow task runs
November 27, 2018 at 7:08 am
Did you look in Integration Services Catalog?
November 21, 2018 at 10:16 am
declare @t table (TRAID int, POT int, ATTID char(4), WC date, LH_MON int, LH_TUE int, LH_WED int, LH_THU int, LH_FRI int, TOTAL int...
November 17, 2018 at 1:05 pm
Luis,
with over 6100 points, you've been around awhile. You know we need DDL and data with expected results to help.
November 17, 2018 at 8:37 am
Viewing 15 posts - 181 through 195 (of 668 total)