Quantcast
Channel: Active questions tagged cte - Database Administrators Stack Exchange
Viewing all articles
Browse latest Browse all 207

Implementing First In / First Out for fuel transactions (such as purchases at varying prices and transfers between locations)

$
0
0

After being tasked with trying to improve the way my company keeps the fuel inventory, i hit a wall. My SQL knowledge is pretty basic and i don't even know where to start.

A little background:The company i work for own and operate 5 power plants which run on diesel. Our fuel stores operate based on FIFO, where the fuel we purchased first is spent first.

Before i started this project, the company did a lot of this manually in excel files, a whole bunch of different ones, which has led to large issues with inconsistency.

I envision one SQL table where each fuel transaction are recorded, which includes any purchases and transfers made. So far so good, but what im struggling with is trying to sum up how much fuel of various price "layers" are left at the various plants.

This is the setup i came up with for the transaction table as well as some sample data.Row id is a unique index while transaction id is not unique, and is a way to keep transfers between plants (where the same transaction means two rows, one for the source and one for the target).

row_idtransfer_iddatetypeplantqty_inqty_outprice
112022-05-01Purchaseplant_120009000
222022-06-01Consumptionplant_10100-
332022-06-03Transferplant_1050-
432022-06-03Transferplant_2500-
542022-06-09Purchaseplant_115005000
652022-07-15Purchaseplant_15003000
762022-08-10Consumptionplant_10150-

The result i would like is something like this:

plantqtyprice
plant_1505000
plant_1503000
plant_2509000

I hope i've managed to put into words what i am trying to achieve, and if its possible to implement.Lastly, i should also point out that i am not limited to any specific SQL server, but the ones we have been eyeing are MSSQL or MySQL simply because those are the ones i am aware of. If any of those is better suited, than that is what we will be using.

I have tried to implement the suggestion as found here but that gave me the wrong result as it depended heavily on the correct order of things in the table.It would subtract from the wrong price "layer", giving me the incorrect quantities.

I tried implementing the answer from Lee Tom Here which works(ish).It gives me a inventory with the various price layers present, but it gives a wrong total_stock for the second layer.

I've created a fiddle with my attempt found here.

It should give me the following result:

producttot_avail_stockpricetimestampplant
A3302022-02-01 10:00:00plant_1
A1302022-02-03 10:00:00plant_1
B11002022-02-03 10:00:00plant_1
A1502022-02-04 10:00:00plant_2

But what i get from the code found in the fiddle is this.

producttot_avail_stockpricetimestampplant
A3302022-02-01 10:00:00plant_1
A4302022-02-03 10:00:00plant_1
B11002022-02-03 10:00:00plant_1
A1502022-02-04 10:00:00plant_2

I also posted this on Stackoverflow, but figured i'd try here aswell as this seems more suited for what im doing.Now, hopefully i've managed to make myself understood and articulate what i am trying to achieve but if not i will answer any question to the best of my ability.


Viewing all articles
Browse latest Browse all 207

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>