Posts by Darós • 11 points
2 posts
-
1
votes5
answers51063
viewsA: Command "npm" is not recognized by Command Prompt
Try the following command: node -v In case the version is not displayed, please install Node. I had the same problem and as soon as I installed it, I had to restart the project in vs code.…
-
0
votes3
answers46833
viewsA: How to rename the column name SQL Table
Complementing the answer: Sqlserver sp_RENAME '[Tabela.NomeColuna]', '[NovoNomeColuna]' , 'COLUMN' In this database, a ready-made sp is used. Remembering that it is necessary to use the exec to run…