Viewing 15 posts - 3,571 through 3,585 (of 59,067 total)
I am thinking about the negative consequences of provisioning free space drastically high.
2. Restoring to the test...
April 23, 2022 at 9:22 pm
Thanks. That was awesome. Told me a lot.
Random GUIDs are GOOD... But not like THAT!
First and as a bit of a sidebar, you good folks have done yourselves a pretty...
April 23, 2022 at 7:22 pm
Maybe do the P*Q for the lowest priced fruits, sort that way, then do a running total. Filter for running total less than your threshold?
Spot on early suggestion, Piet!
April 23, 2022 at 3:00 am
Thanks Jeff, well spotted, I totally missed it.
The first time I looked at it, SO DID I. 😀
Again, nice use of the "Relational Multiplication" method! I'm still thinking about...
April 23, 2022 at 2:59 am
Jonathan AC Roberts solved this problem very nicely using the fnTally() function to due the "Relational Multiplication of Rows". If we tweak his good code just a little bit, it...
April 23, 2022 at 2:33 am
;with cte as
(
select sum(t.price) over (order by t.price asc, v.N) RunningTotal, *
from #TEMP1 t
...
April 23, 2022 at 12:51 am
I may have something wrong with my understanding of the problem but, according to the values you've provided, there is no combination of fruits in case #1 where you...
April 23, 2022 at 12:21 am
I may have something wrong with my understanding of the problem but, according to the values you've provided, there is no combination of fruits in case #1 where you can...
April 23, 2022 at 12:13 am
Hello,
I'm trying to get the first and last dates of all the months based on the current year.
1/1/2022
1/31/2022
2/1/2022
2/28/2022
3/1/2022
3/31/2022
Any help would be greatly appreciated. Thank you in advance!
You've got multiple...
April 22, 2022 at 11:51 pm
It’s not “scripting” that makes mistakes easier... The real problem is "urgency of an issue". The same can happen when deploying code of any type. You covered what the real...
April 22, 2022 at 3:37 pm
Ahoi,
Theres a long running delete which is split into smaller batches.
how does one deal with the following situation.
The answer is likely going to be found in the code that...
April 21, 2022 at 9:31 pm
Hate to admit I didn't even know what PoSh is...
PowerShell.
April 21, 2022 at 8:00 pm
Ah, my apologies. No. Have not gotten to this yet and I'm not sure about tonight because I have a presentation to give tonight. Thank you for the reminder and...
April 21, 2022 at 5:59 pm
Apologies for the confusion in relation to relaying my thoughts on the whole process, I think it's a bit tricky to vocalise. I think I'll implement it as it...
April 20, 2022 at 9:37 pm
What I'm trying to ascertain here is if it's feasible to make the whole model temporal (i.e. all Fact tables & Dimensions) so it can be rolled back in...
April 20, 2022 at 7:10 pm
Viewing 15 posts - 3,571 through 3,585 (of 59,067 total)