我有八个 Microsoft Access 数据库,每个数据库大约有 215 个表,我需要将这些数据库转移到 postgresql 中,所以我使用了 mdb-tools 并导出了仅一步的方案;但是当涉及将表数据导出到 postgres 时,我将其直接导入到 postgresql 中必须为每个表编写此命令:
mdb-export -I postgres -q \' myaccessdatabase.mdb table-name | psql -d mypsqldatabase -U postgres -w -h localhost
所以我一直在尝试写一个go命令程序来做如下: 1.首先执行一个命令来列出表名。这将是下一个命令的 arg。2.然后启动range loop执行一个导出tanle数据的命令,这个命令的输出是管道到下一个命令。3.这个命令是psql,它将写入上一个命令的输出(即sql insert statment)
package main
import (
"bufio"
"log"
"os"
"os/exec"
)
func main() {
// command to Collect tables name and list it to the next command
tablesname := exec.Command("mdb-tables", "-1", "myaccessdatabase.mdb")
// Run the command on each table name and get the output pipe/feed into the psql shell
for _, table := range tablesname {
ls := exec.Command("mdb-export", "-I", "postgres", "-q", "\'", "myaccessdatabase.mdb", table)
// | psql -d mydatabase -U postgres -w -h localhost command which will write each line from the output of previouse command's
visible := exec.Command("psql", "-d", "mypsqldatabase", "-U", "postgres", "-w", "-h", "localhost")
}
}
所以我试图将输出通过管道传输到下一个命令的标准输入中,但无法实现它,同时我正在尝试使用 gooutin 和通道,甚至无法将其变成最后一个命令。
慕后森
相关分类