Server Prep
MS SQL Setup
- You have to enable OLE Automation on the SQL server as follows to allow S5Maps to Geocode new addresses and refresh existing addresses;
EXEC sp_configure 'clr enabled', 1;
RECONFIGURE;
GO
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'Ole Automation Procedures', 1;
GO
RECONFIGURE;
GO