Viewing 15 posts - 466 through 480 (of 686 total)
I didn't want to use:
$oleDbConn.ConnectionString="Provider=Microsoft.ACE.OLEDB.12.0;Data
THanks.
June 30, 2021 at 6:50 pm
Sorry it left them as Comma(,) delimted in the newly created csv.
June 30, 2021 at 5:53 pm
I tried didn't seem to work..
function ConvertFrom-XLx {
param ([parameter( Mandatory=$true,
... June 30, 2021 at 5:42 pm
Or are you simply looking for guidance relating to how to handle queue processing and concurrency (which can be a little tricky if you have multiple instances of the same...
June 30, 2021 at 5:06 pm
@Phil I was thinking on the queue also do you have any examples or suggestions to get me started...
Thanks.
June 29, 2021 at 6:54 pm
There are multiple sql agent jobs processing from the queue, but I tried to break them out so they where only picking up
individual records from the queue.
If I have records...
June 29, 2021 at 1:24 pm
The processing can't keep up with the amount of records hitting the queue...parallelism ?
Based upon design do you think pulling records from the table using cursor is efficient ?
June 29, 2021 at 1:12 pm
Got it...
cast((Select concat(', Format(coalesce(sum(Case When ft.Entity = ', h.Entity, ' Then ft.total End), 0),''C'', ''en-US'' ) As td
Thanks again...
June 28, 2021 at 2:06 pm
THis is where I believe I need to make a change to get into the Description and the Column totals..
concat(', coalesce(sum(Case When ft.Entity = ', h.Entity, ' Then ft.total End),...
June 27, 2021 at 4:01 pm
I update a piece in the Row totals section to format for Currency, but I couldn't get it to work for total amounts for each description
and column totals.
Any chance you...
June 25, 2021 at 9:48 pm
Will upload shortly...
Thanks again to you Both...
June 25, 2021 at 5:08 pm
Totally Awesome!!!!
Many Thanks!!!!
June 25, 2021 at 4:33 pm
That worked perfect except if there is no value for a description can it put a 0(zero) than the total at the end of the line should populate.
currently if not...
June 25, 2021 at 4:13 pm
Won't the header record have to be built dynamically?
Set @tableHeader = cast((Select html.hdr1 As th, ''
, html.hdr2 As th, ''
, html.hdr3 As th, ''
From (
Values ('Entity', 'Description', 'Total')
) As html(hdr1,...
June 25, 2021 at 12:37 pm
@jeff When I ran your code and seeing what @sql has in it, that's exactly what I was trying to achieve. How to you get that into an
email to be...
June 25, 2021 at 12:26 am
Viewing 15 posts - 466 through 480 (of 686 total)