Posts by Marcelo Moura • 1 point
2 posts
-
0
votes2
answers2229
viewsA: I can’t back up the mysql database using the dump
If you’re on the same machine as the bank: mysqldump -uUser -pSenha DataBase > c:\seu_backup.sql If you are on another machine (that has mysql installed) and are on the same network as the…
mysqlanswered Marcelo Moura 1 -
-2
votes2
answers87
viewsA: Database objects as Stored Procedure parameters
declare @campo varchar(50), @valor varchar(50), @qry varchar(max) set @campo = 'Inscricao'; set @valor = '123456'; set @qry = 'select * from tabela where ' + @inscricao + ' = ' + @valor; Exec (@qry)…