I have 1 database in 1 server in 1 subscription. I don't create and drop databases on-the-fly (actually, at all). The documentation of the 'quantity' column of sys.database_usage says "The maximum number of databases of an SKU type that existed during that
day". Not average number! Maximum. How can it be non-integer?
SELECT * FROM sys.database_usage
time sku quantity
...
2012-05-22 Web 1.8
2012-05-23 Web 1.8
2012-05-24 Web 1.8
Why is 'quantity' a non-integer number?
In fact, I have been billed for 1.7936 "database units" during the last month, while in fact I always had exactly 1 database (of changing size 2GB - 3.5GB). I can see that the average of the numbers in sys.database_usage.quantity is around 1.7936 for the
given period (actually 1.8533) because those numbers are 1.8, 1.4, 2.2, 2.6 -- never an integer.
Can somebody explain it to me?
Another (related) question. The invoice contains two items: "Data Transfer Out (GB)" (it's ok) and "Database Units" (the above-mentioned 1.7936). How does the unit price ("Rate", £6.0549≈$9.99) reflect the Flat $9.99 for the first 1GB and $3.996 per GB?
I think these should be two items in the invoice..