回覆列表
-
1 # 使用者1335875857780
-
2 # 使用者3840516296421
方法如下:
Linux下
均在控制檯下操作。
匯入資料庫:
前提:資料庫和資料表要存在(已經被建立)
(1)將資料表 test_user.sql 匯入到test 資料庫的test_user 表中
[root@test ~]# mysql -uroot
-p test
(2) 將資料庫 test.sql 匯入到 test 資料庫test 中
[root@test ~]# mysql -uroot -p test
(3)source命令不在控制檯下,要進入mysql下操作
mysql> use test;
mysql>source
/www/web/test/test.sql
使用oracle gateway 建立oracle到mysql的連線,然後直接使用insert 將資料插入mysql表中