SHELL读取当前文件下所有SQL文件插入Doris数据库
【代码】SHELL读取当前文件下所有SQL文件插入Doris数据库。
·
#!/bin/bash
# 设置MySQL连接信息
host="127.0.0.1"
port="1234"
user="root"
password="xxxx"
database="xxxx"
# 遍历当前目录下的所有.sql文件并执行
for file in *.sql; do
echo "Executing $file..."
mysql -h $host -P $port -u $user -p$password $database < "$file"
done
更多推荐
已为社区贡献2条内容
所有评论(0)