I posted this in the 8.5 forum but there’s been no answer. Sorry for repost but I hope someone can help.
I have a notes application on a Windows 2003 server (32bit), called DOMINOOLD, which contains an agent that runs on a nightly basis. The agent connects to another server, SQLSERV. I don’t know much about what was initially involved in setting up the sql connection but the agent script contains the following…
Uselsx “*LSXLC”
Function importdata(personID As String, importStartDate As NotesDateTime, systemStartDate As NotesDateTime)
Dim DbSession As LCSession
Dim DbConnection As LCConnection
Dim fields As New LCFieldList
Dim field As LCField
Dim sform As String
Dim sqlDBName As String
sForm=“formname”
sqlDBName=“dbname”
Set DbConnection = New LCConnection(“OLEDB”)
dbconnection.provider=“sqloledb”
Set DbSession = New LCSession
DbConnection.Server=“SERVER\INSTANCE”
DbConnection.UserID = “jdoe”
DbConnection.Password = “password”
DbConnection.Database=sqlDBName
DbConnection.metadata=sform
DbConnection.Connect
I now want to move the application to another server, DOMINONEW, which will be Windows 2008 (64 bit), with 64 bit domino installed.
What sort of things do I need to consider in order to maintain the server’s ability to connect to SQLSERV. Does the connection rely on anything at the OS level?
Thanks