As per Serverless pricing page and this line of code:
|
/*$5 per 1TB scan, minimum 10M */ |
I think that in this line we need to divide by 1 000 000 and you have here only 5 zeroes:
|
cast((CASE WHEN ERH.data_processed_mb < 10 THEN 10 ELSE ERH.data_processed_mb END)*5/100000.0 as decimal(19,7)) as cost_in_$, |
Am I understanding correctly? Could you take a look into it?
As per Serverless pricing page and this line of code:
Azure_Synapse_Toolbox/TSQL_Queries/ServerlessSql/CostPerQuery.sql
Line 33 in af39147
I think that in this line we need to divide by 1 000 000 and you have here only 5 zeroes:
Azure_Synapse_Toolbox/TSQL_Queries/ServerlessSql/CostPerQuery.sql
Line 35 in af39147
Am I understanding correctly? Could you take a look into it?