I have a stored procedure containing the following statement.
exec sp_configure 'Ole Automation Procedures', 1;
RECONFIGURE;
When the above statement runs, SQL server responds with the following regular message, which is not an SQL server error.
"Configuration option 'Ole Automation Procedures' changed from 1 to 1. Run the RECONFIGURE statement to install."
My VBA code calls this stored procedure and it has been running fine. A couple months again the Access db started taking this message as Run-Time error. I am sure nothing has been changed on the server. The Access database (VBA code) has not been changed either. I do not know where to look.
Any help is appreciated.
exec sp_configure 'Ole Automation Procedures', 1;
RECONFIGURE;
When the above statement runs, SQL server responds with the following regular message, which is not an SQL server error.
"Configuration option 'Ole Automation Procedures' changed from 1 to 1. Run the RECONFIGURE statement to install."
My VBA code calls this stored procedure and it has been running fine. A couple months again the Access db started taking this message as Run-Time error. I am sure nothing has been changed on the server. The Access database (VBA code) has not been changed either. I do not know where to look.
Any help is appreciated.