Our software runs on SQL Server 2000. One of the stored procedures executes sp_rename to rename columns in a table.
When running the sproc in Query Analyzer the message appears "3604 - Caution: Changing any part of an object name could break scripts and stored procedures."
When the VB6 apps execute this sproc there is no problem whatsoever.
However, we have a client who is using SQL Server 2005. On their system (same databases, same VB6 apps, just SQL Server 2005 instead of 2000), the VB6 app blows up, with the same error message as above.
Is there a way to modify the script so that it can trap the above "3604 - Caution: --" message and not send it up to the app ? Or a setting to change so that SQL Server 2005 will not send up "cautions" as "errors" ???
Thanks
When running the sproc in Query Analyzer the message appears "3604 - Caution: Changing any part of an object name could break scripts and stored procedures."
When the VB6 apps execute this sproc there is no problem whatsoever.
However, we have a client who is using SQL Server 2005. On their system (same databases, same VB6 apps, just SQL Server 2005 instead of 2000), the VB6 app blows up, with the same error message as above.
Is there a way to modify the script so that it can trap the above "3604 - Caution: --" message and not send it up to the app ? Or a setting to change so that SQL Server 2005 will not send up "cautions" as "errors" ???
Thanks