gpt4 book ai didi

powershell - 如何使用 Windows PowerShell 从 MariaDB 转储文件导入数据

转载 作者:行者123 更新时间:2023-12-04 19:26:14 25 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





The '<' operator is reserved for future use

(5 个回答)


6 个月前关闭。




我试图在 Windows Powershell 中导入一个 dumpfile.sql:

mysql -u root -p --database=database < Backup.sql
但我收到以下错误:
At <script-path>:1 char:34
+ mysql -u root -p --database=database < Backup.sql
+ ~
The '<' operator is reserved for future use..
+ CategoryInfo : ParserError: (:) [], ParentContainsErrorRecordException
+ FullyQualifiedErrorId : RedirectionNotSupported
如果我试图逃避“<”
mysql -u root -p --database=database ^< Backup.sql
我只得到所有选项的列表。
问题可能是由于更新到 Windows 11 造成的。

最佳答案

您是否尝试将备份文件复制到 mysql像这样的exe:

get-content 'Backup.sql' | mysql.exe -u root -p --database=database
使用 cmd 运行它的另一个选项从电源外壳
& cmd /c "mysql.exe -u root -p --database=database < backup.sql"

关于powershell - 如何使用 Windows PowerShell 从 MariaDB 转储文件导入数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70669551/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com