Search This Blog

03 June, 2012

mysql exporting or dumping stored procedures using mysqldump

For exporting stored procedure function and triggers using mysqdump use the following command in mysql command prompt

mysqldump --routines --no-create-info --no-data --no-create-db --skip-opt <database_name> > output_sp_dump.sql

No comments:

Post a Comment

tmux enabling mouse interaction

Add the below line to the ~/.tmux.conf setw -g mouse on save the file and exit from the tmux shell, you should be able to use your mouse to ...