Posts by Marcelo Amorim • 122 points
2 posts
-
1
votes2
answers74
viewsA: Doubt in Data Normalization
To meet what you need, correctly, you must change the breakdown table to a "vertical growth structure": Because, if each piece table record turns a column in the breakdown table, every time you…
-
-2
votes1
answer721
viewsA: MYSQL: ERROR 2027 (HY000): Malformed Packet
You need to update (directly on the server) the password of this encrypted user with the method "old_password": SET PASSWORD FOR 'meuusuario'@'localhost' = PASSWORD('meupassword'); This way you will…