I have an internal .NET 7 web application that uses an MSSQL database hosted on Amazon RDS.
I have a requirement to create a linked server to query data from a separate ServiceNow DB instance.
The only way I can see to do this is:
- Install a new instance of MSSQL/SQLExpress on a Windows Server.
- Install the ServiceNow ODBC driver on the same Windows Server and configure a System DSN to point to my service now instance.
- Configure a .NET DataContext in my .NET 7 web app that points to the linked server on MSSQL/SQLExpress.
Q: Is there any way I can bypass the (extraneous!) SQLExpress install, and configure the linked server for the ServiceNow ODBC directly on my AWS RDS instance?