As procedures, funções que tenho em meu banco, são recuperadas também ? Não apaguei com medo que não fosse, não achei nos scripts.
As procedures, funções que tenho em meu banco, são recuperadas também ? Não apaguei com medo que não fosse, não achei nos scripts.
Pedro,
Deixa ver se eu entendi...
Você quer guardar a forma que sua Stored Procedure foi construida?
1 - Clique com o botão do lado direito do mouse em cima da Stored Procedure que você quer guardar;
2 - Escolha: "Copy to Clipboard" ou "Send to SQL Editor";
3 - Escolha "Create Statement";
... e voilà! Você tem o script dela para guardar caso queira construí-la ou modificá-la.
Esta é a resposta da sua pergunta?
[]'s,
Fabio I.
Valeu Fábio, é mais ou menos kkk, reparei que o backup não guarda elas ne ?
Pedro,
Desculpe, não percebi que você queria saber de Backup.
Então... não tinha certeza, mas olhando agora o manual me parece que se você usar estas diretivas: "--routines" o "mysqldump" fará o serviço.
Por favor, veja:
==========================================================
4.5.4 mysqldump — A Database Backup Program
--routines, -R
Include stored routines (procedures and functions) for the dumped databases in the output. This option requires the SELECT privilege for the mysql.proc table.
he output generated by using --routines contains CREATE PROCEDURE and CREATE FUNCTION statements to create the routines. However, these statements do not include attributes such as the routine creation and modification timestamps, so when the routines are reloaded, they are created with timestamps equal to the reload time.
If you require routines to be created with their original timestamp attributes, do not use --routines. Instead, dump and reload the contents of the mysql.proc table directly, using a MySQL account that has appropriate privileges for the mysql database.
https://dev.mysql.com/doc/refman/5.7/en/mysqldump.html
==========================================================
[]'s,
Fabio I.
Show de bola Fábio, muito obrigado !!!!
Obrigado por me pontuar.