invoso.com Report post Posted 08/14/2013 12:25 PM using sql query I found problem postgres sql query: SELECT round(((connection_cost*1.00)/100),2) FROM ... WHERE ... postgres client interpretation: (connection_cost*1.00)/100 = 0.01 but VG retuns: (connection_cost*1.00)/100 = 0,03000000000000000000 I try other method: round(((connection_cost*1.00)/100),2) = 0.01 VG retuns: round(((connection_cost*1.00)/100),2) = 0,01 how to change comma (,) to (.)? Share this post Link to post
SupportTeam Report post Posted 08/14/2013 01:29 PM Could you please post vgEngine trace capturing the call. (Please .ZIP up traces before posting them) Which version of Postgres database are you using? Share this post Link to post