如何仅转储没有任何数据的完整数据库模式。包括表,视图,函数,过程以及所有这些东西。我拥有数据,这意味着它分散在整个> 2GB的转储中。
答案 0 :(得分:1)
使用命令行开关axios.post(window.mg.api.baseURL + 'createjob', {
....)
.then(response => {
//here you have to do whatever action you wist to perform after success
alert("Form is saved");
//or you wish to navigate to other page you can put routing or a success dialog box
})
(http://www.manpagez.com/man/1/mysqldump/)
onSubmit={(values, { setSubmitting }) => {
setTimeout(() => {
this.createJob(); // ideally you can pass values in it so that you don't need to extract from the DOM
alert(JSON.stringify(values, null, 2));
setSubmitting(false);
}, 1000);
}}