Trancuated data in DBEAVER #30027
Replies: 1 comment
-
Если ты пыталась изменить тип данных столбца из VARCHAR в INTEGER, DOUBLE или REAL, но получаете ошибку "данные перегружены", это может быть связано с тем, что некоторые значения в столбце не могут быть корректно преобразованы в числовой формат. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello!
I am using a free version of DBEAVER for SQL practise.
I have stumbled upon a problem with a converting function.
And I think that the problem occurred because of 'comma' that always shows up when an integer or a date type value reaches to 1000.
for example I have a column "released year" so instead of storing 2023. It stores 2,203.
MySQL does not convert columns into another datatype, it constantly gives me an error 1265
Sometimes DBEAVER converts columns that contain numerical value into text/varchar value even if there is no difference between columns in terms of length of input values. For example, I have a column that was imported as varchar with very small numbers while other column was imported as Integer with bigger numbers.
I have tried to convert varchar datatype into INTEGER, DOUBLE, REAL. Always error "data trancured"
Even when I re-import data into my database.
Could, please, someone, help me?
I will highly appreciate it.
Thank you.
Beta Was this translation helpful? Give feedback.
All reactions