Viewing 15 posts - 1,186 through 1,200 (of 1,360 total)
select
t.*,
iif((t.totalinvoice+sum(t.totalreceived-t.totalinvoice) over (partition by receipt_nr order by docdata))<0,0,
iif((t.totalinvoice+sum(t.totalreceived-t.totalinvoice) over (partition by receipt_nr order by docdata))>t.totalinvoice,
t.totalinvoice, (t.totalinvoice+sum(t.totalreceived-t.totalinvoice) over...
December 4, 2019 at 1:51 pm
Does this produce the correct remainder column?
select
t.*,
sum(t.totalreceived-t.totalinvoice) over (partition by receipt_nr order by docdata) remainder
from
#temptab t
December 4, 2019 at 3:12 am
Yes, unfortunately it's absolutely not feasible to make changes to the OLTP System where data is inserted initially, it's an 3rd party ISV. All we get is some CSV...
December 2, 2019 at 8:57 pm
the funny part is: If you look at the OLTP DB and their flow it would appear valid (as in: there seems to be no real checks) and when...
December 2, 2019 at 1:53 pm
Ok - Joe Celko. Good luck.
December 1, 2019 at 2:57 pm
Identity() is a piece of automation that solves a set of tricky problems for you. Choosing not to use it is tantamount to saying you can do it better. Well,...
November 30, 2019 at 3:38 pm
How would I approach checking the OrderNumbers for validity within the steps so an item in "AU" and locked cannot appear at a different site as next record, same...
November 29, 2019 at 6:30 pm
The S in SCD is "slowly" so I don't see much benefit either. Also, afaik this feature is not available in SQL DW.
November 28, 2019 at 3:25 pm
Unless you are required to do this by law, it's more trouble than it's worth. If you absolutely have to do it, I would use a SEQUENCE
and run...
November 27, 2019 at 9:38 pm
Either by querying your own table or by storing the maximum sequence per day somewhere. Fyi, this is really not a good way to handle keys and is not recommended. ...
November 27, 2019 at 8:10 pm
I don't see where you used a GUID either in the original post nor here as a part of the formula. To be sure, what you did with the...
November 27, 2019 at 6:46 pm
With 550 columns it's not possible to test every combination of 2 or more columns to see if they are unique. It's a combinatorial problem with a search space...
November 27, 2019 at 3:36 pm
I'm pretty sure that the system times captured by temporal tables are in the DATETIME2(7) level of precision. What else would you need?
Yea right, it's super precise so it's...
November 26, 2019 at 9:30 pm
If the number of candidate columns is small you could exhaustively test the possible combinations using a cursor and dynamic sql.
November 26, 2019 at 8:45 pm
It seems like you're talking about two things here. Not sure what temporal tables have to do with the tokens. Usually you are hashing somehow to create this token...
November 26, 2019 at 7:43 pm
Viewing 15 posts - 1,186 through 1,200 (of 1,360 total)