请教怎么把Lotus 的数据库导入到  MS SQL Server

请问如何把Lotus 的数据库导入到  MS SQL Server?
请问如何把Lotus   的数据库导入到    MS   SQL   Server?
谢谢各位了!

------解决方案--------------------
找Designer的帮助,搜索odbc,有详细的例子,写个代理就可以把视图的内容导入到 MS SQL Server。配置DECS也可以导入,不用写代理
------解决方案--------------------
用ODBC数据源,然后写代理.
------解决方案--------------------
Dim con As New ODBCConnection 'ODBC连接对象
Dim qry As New ODBCQuery
Dim result As New ODBCResultSet

If Not con.ConnectTo( "SZMC ", "SZMC ", "SZMC ") Then '如果连接失败,退出过程
Exit Sub
Else
Set qry.Connection = con
Set result.Query = qry
qry.SQL= "select * from ISSMTInit "
result.Execute
result.LastRow
For i=Lbound(strSendContent) To Ubound(strSendContent)
For j=Lbound(ArraySmsMobile) To Ubound(ArraySmsMobile)
Call result.AddRow()
Call result.SetValue( "TermNum ",Replace(ArraySmsMobile(j), " ' ", " ' ' "))
Call result.SetValue( "IContent ",Replace(strSendContent(i), " ' ", " ' ' "))
result.UpdateRow
Next
Next
result.Close
'关闭连接
con.Disconnect
End If