Access VBA 在两个数据库之间传输数据
Access VBA Transfer data between two database
我想将 table 的一些记录从一个 Mysql 数据库传输到另一个数据库(2 个不同的 IP 地址)。我通过 ODBC 连接了两个数据库,并且在我的 Access 数据库中有两个 table 作为 table link。
currentdb.execute "insert into Table_DB1 (col1,col2,col3) select col1, col2, col3 from Table_DB1 where col3 between #2020/01/01 0:00:00# and #2020/01/02 23:59:59#"
在 Table_DB1 的 col3 上有一个索引,并且此选择只有 60k 条记录。但它要么非常慢,要么 Access 停止 responding.Is 有一种在 Access VB 中的 2 个远程数据库之间传输数据的更快方法 VB ?
我为源表和目标表创建了 ADODB 连接和记录集,如下所示。传输速度尚可。
Dim Con_Dest As New ADODB.Connection
Dim Con_Sour As New ADODB.Connection
Dim Rs_Sour As New ADODB.Recordset
Dim Rs_Dest As New ADODB.Recordset
Dim Str_SqlSour As String
Dim Str_SqlDest As String
Dim Str_Sql As String
Con_Sour.Open "dsn=xxx;uid=xxx;pwd=xxx"
Con_Dest.Open "dsn=yyy;uid=yyy;pwd=yyy"
Str_SqlSour = "select * from Table_Source"
Rs_Sour.Open Str_SqlSour, Con_Sour
Rs_Dest.Open "Table_Dest", Con_Dest, adOpenDynamic, adLockOptimistic
Rs_Sour.MoveFirst
Do Until Rs_Sour.EOF
With Rs_Dest
.AddNew
.Fields("AAA").Value = Rs_Sour.Fields("Col1")
.Fields("AAB").Value = Rs_Sour.Fields("Col2")
.....
.Update
End With
Rs_Sour.MoveNext
Loop
我想将 table 的一些记录从一个 Mysql 数据库传输到另一个数据库(2 个不同的 IP 地址)。我通过 ODBC 连接了两个数据库,并且在我的 Access 数据库中有两个 table 作为 table link。
currentdb.execute "insert into Table_DB1 (col1,col2,col3) select col1, col2, col3 from Table_DB1 where col3 between #2020/01/01 0:00:00# and #2020/01/02 23:59:59#"
在 Table_DB1 的 col3 上有一个索引,并且此选择只有 60k 条记录。但它要么非常慢,要么 Access 停止 responding.Is 有一种在 Access VB 中的 2 个远程数据库之间传输数据的更快方法 VB ?
我为源表和目标表创建了 ADODB 连接和记录集,如下所示。传输速度尚可。
Dim Con_Dest As New ADODB.Connection
Dim Con_Sour As New ADODB.Connection
Dim Rs_Sour As New ADODB.Recordset
Dim Rs_Dest As New ADODB.Recordset
Dim Str_SqlSour As String
Dim Str_SqlDest As String
Dim Str_Sql As String
Con_Sour.Open "dsn=xxx;uid=xxx;pwd=xxx"
Con_Dest.Open "dsn=yyy;uid=yyy;pwd=yyy"
Str_SqlSour = "select * from Table_Source"
Rs_Sour.Open Str_SqlSour, Con_Sour
Rs_Dest.Open "Table_Dest", Con_Dest, adOpenDynamic, adLockOptimistic
Rs_Sour.MoveFirst
Do Until Rs_Sour.EOF
With Rs_Dest
.AddNew
.Fields("AAA").Value = Rs_Sour.Fields("Col1")
.Fields("AAB").Value = Rs_Sour.Fields("Col2")
.....
.Update
End With
Rs_Sour.MoveNext
Loop