Posts by Anderson Salles • 81 points
2 posts
-
0
votes1
answer55
viewsA: About passing by reference and by value
I made a little adjustments to your program. Don’t be sad with me! : ) I tried to explain as best I could! Algorithm "procedure" Inicio Var x, y: inteiro x <- 10 y <- 20 crescente(x, y)…
visualganswered Anderson Salles 81 -
8
votes3
answers23959
viewsA: Disable SQL Server Column Identity
Ex.1: SET IDENTITY_INSERT masterTbl ON --Desabilita o IDENTITY INSERT INTO masterTbl (id, name) VALUES (1, 'MNO') --Consegue inserir SET IDENTITY_INSERT masterTbl OFF --Habilita o IDENTITY Ex.2: SET…