This is not MSDE or SQL Express this is the full version of Microsoft SQL Server 2005 Standard Edition on another server. There are no "instances" in the full SQL Server that I'm aware of. That's all related to one of the tweaks I had to make to get 4.0 running with a remote, full Microsoft SQL Server 2005. Here's my current DatabaseConnectionMS in the registry that actually WORKS:
Provider=SQLOLEDB;Integrated Security=SSPI;Initial Catalog=SOPHOS4;Data Source=SERVERNAME;
To get the database connection, I had to remove the "\INSTANCE" name that all the documentation talks about. The "Initial Catalog=SOPHOS4" is the database name and "Data Source=SERVERNAME" refers to only the name of my server.
This is not MSDE or SQL Express this is the full version of Microsoft SQL Server 2005 Standard Edition on another server. There are no "instances" in the full SQL Server that I'm aware of. That's all related to one of the tweaks I had to make to get 4.0 running with a remote, full Microsoft SQL Server 2005. Here's my current DatabaseConnectionMS in the registry that actually WORKS:
Provider=SQLOLEDB;Integrated Security=SSPI;Initial Catalog=SOPHOS4;Data Source=SERVERNAME;
To get the database connection, I had to remove the "\INSTANCE" name that all the documentation talks about. The "Initial Catalog=SOPHOS4" is the database name and "Data Source=SERVERNAME" refers to only the name of my server.