How to insert row negative value sql power automate desktop i have file excel data and i try insert data to SQL but error like pic Any help is appreciated
Thank you everyone for your support it success
As @UshaJyothi20 , this is likely not related to the value being negative, but it might actually be caused by the size of the number. If you expect it to be a decimal, you might want to increase the precision part. But since you've got it as DECIMAL(18,0), indicating 0 decimal spaces, there is no need to actually have it as decimal type. You are then better off with BIGINT instead.
Also, check if you have any quotation marks around the value in your SQL statement. You don't need them for numeric values.
-------------------------------------------------------------------------
If I have answered your question, please mark it as the preferred solution. If you like my response, please give it a Thumbs Up.
I also provide paid consultancy and development services using Power Automate. If you're interested, DM me and we can discuss it.
use data type BIGINT(size)
A large integer. Signed range is from -9223372036854775808 to 9223372036854775807. Unsigned range is from 0 to 18446744073709551615. The size parameter specifies the maximum display width (which is 255)
Hope this helps
Usha
please check the data type of that coloumn
do you have integer for that column?
Michael E. Gernaey
497
Super User 2025 Season 2
David_MA
436
Super User 2025 Season 2
Riyaz_riz11
244
Super User 2025 Season 2