Viewing 15 posts - 931 through 945 (of 2,863 total)
Not sure I can help, but first thing I'd do is change the C# you posted to exclude the username and password and smtp client name. don't need people from...
August 10, 2021 at 7:21 pm
If I remember right with R (it's been a while since I touched it as it isn't really related to my job), the file you create is essentially just a...
August 9, 2021 at 4:22 pm
I'm a little late to this reply, but with respect to my comment about service broker - if you set it up, I'd check to make sure you are following...
August 9, 2021 at 4:01 pm
As far as I know there is no way to do that nicely inside SQL.
If doing it inside SQL is a requirement, you could modify the code you are running...
July 30, 2021 at 3:42 pm
Easiest way - change the division to handle when 0 may be the result. How you handle that is up to you, but my approach would be to set it...
July 29, 2021 at 8:26 pm
It includes them becuase the Prod Line is different.
Your original requirement (original post) says:
" I only want to include ME# where there are 2 different Prod Lines associated with single ME"
So...
July 29, 2021 at 5:52 pm
I must be misunderstanding. When I run the example you gave above, I get the expected output you gave above minus the Total and Grand Total values.
When I run the...
July 29, 2021 at 4:20 pm
Can you provide some sample data where this happens?
Giving the text explanation that you did, I am not able to reproduce the problem.
If I had to guess, I would say...
July 29, 2021 at 3:03 pm
My understanding of the error - the particular database file has no room to shrink. If there is 0 bytes free in that database file (or near 0), then it...
July 28, 2021 at 10:10 pm
I agree with Scott and I have a question for you Ram too - how often do these jobs run?
This is relevant because if you run the jobs nightly (for...
July 28, 2021 at 9:15 pm
I am pretty sure you cannot do this with UNION. UNION is for combining 2 data sets, not for filtering or reducing a data set. Using your query, you would...
July 28, 2021 at 8:38 pm
I could be mistaken, but a value of ".247888" is going to be interpreted as a string as it doesn't start with a numeric value. What I mean is in...
July 28, 2021 at 5:33 pm
As a thought (probably not the most efficient resolution), but toss the above query into a CTE (or nested select) and add a WHERE clause onto the final select where...
July 28, 2021 at 3:20 pm
Your query will give you the channel, MEID and the sum of the charges, which is half the battle. But I would take the approach I suggested with windowing functions...
July 27, 2021 at 8:47 pm
That was a code formatting error... I have corrected the code.
July 27, 2021 at 7:40 pm
Viewing 15 posts - 931 through 945 (of 2,863 total)