This question maybe a matter of opinion, so I apologize if this falls under an opinionated question. To try to narrow the scope of the question I will be detailing what and why I am trying to do this.
I am using SQL Server 2014. The idea is that we have a main piece of software with a database hosted on one server which our HR department uses to add, update and delete company employees. I was brought in to design and develop new websites for specific work flows and I have tables in each of the websites I have been working on that store information about users. What I am trying to do is set triggers on the main system database tables that relate to employee information so that it inserts records into an employee update table which I then display to administrators to approve, in which case the changes will then be applied to the tables I have in my new website's database(s). The problem is that my databases are hosted on a different server than the one which hosts the main software database.
I have read through this article (https://www.sqlshack.com/querying-remote-data-sources-in-sql-server/) and I looked at the various ways to connect to a different server. The 3 ways I read about to accomplish this are as follows: OPENDATASOURCE, OPENROWSET, LINKED SERVER
After reading through the article this one statement sticks out to me, "A SQL Server Linked Server is different from ad hoc queries in that ad hoc queries open a temporary connection with the remote server and close it, where the permanent linked server is always available for use."
As I only need to open the connection on triggers to do an insert I thought the ad hoc method would be best as I won't continually have a connection to the remote server. This is the first time I have ever attempted something like this, so I appreciate any constructive comments as to which method you would choose to do this and why, and if I am going about this in the wrong way, please suggest how you would do it and provide some references as I would be happy to read through articles or links suggested to help me in development.