Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试加载脚本来填充数据库。我已经创建了数据库和用户,现在我只需要从脚本中创建表。
我在 cmd 中使用这个命令:
源 C:\Temp\filename.sql;
并且我收到一条消息,指示错误 2(无法读取文件)或“没有可用的先前输出文件,您必须提供文件名!”
我已经查看了与此相关的问题,但没有找到解决方案。
请协助,mehmeh
在 MySQL 中,反斜杠是转义字符。因此,在您的路径中,用斜杠或双反斜杠替换反斜杠。这给
SOURCE C:/Temp/filename.sql;
或者
SOURCE C:\\Temp\\filename.sql;