You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 13, 2026. It is now read-only.
Find all instances of ADODB connection setup in the VBA code.
Replace the existing connection string with:
Provider=sqloledb; Data Source=cdngb-admin-mc-rso-prod-cac-sqlmi.c5a0040ec5f1.database.windows.net;Initial Catalog=GB_MC_RSO_P1;User ID=instmcpssp1;Password=<password>;ApplicationIntent=ReadOnly
Remove any references to Integrated Security=SSPI.
Add ApplicationIntent=ReadOnly parameter.
Make sure password and user are correctly inserted.
Test the updated connection to ensure reports still generate successfully.
Update any related documentation to reflect the new connection settings.
Note: The password must be securely handled and not exposed in version control. Consider referencing environment variables or secure storage if possible.
Acceptance Criteria
All connection strings updated in the code.
ApplicationIntent=ReadOnly is present in every connection string.