防止 mySql 更改特定行
我正在使用 mysqldumb 命令导出/导入数据库(在两台机器之间同步)。它工作得很好,但是在导入愚蠢的 mysql 文件时我不想更改几行。
我知道我可以在恢复文件后更改行,但我想知道是否可以找到防止(用户)更改某些行的解决方案。
I'm using mysqldumb command to export/import a database (syncing between two machines). It works well, but I have a couple of rows that I don't want to be changed when importing the dumbed mysql file.
I know I can change the rows after restoring the file, but I wanted to know if a solution to prevent (a user) from changing some rows is possible.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以创建一个后触发器,如果数据符合某些条件,则将数据重置回其原始状态。
You could create an after trigger that resets the data back to its original state if it matches certain criteria.
我假设您可以明确地识别这些行。您可以编写一个简单的脚本来删除这些行并执行 mysqldump;例如,如果您使用 Linux:
如果它始终是相同的行号,您可以使用 sed 等。
I assume you can identify those rows unequivocally. You could write a simple script that removes those lines and executes mysqldump; for example, if you use Linux:
If it's always the same line number you could use sed, etc.