I have read access to a remote SQL Server that contains table 'dbo.myTable'. The proble I am facing is that it is slow to read the data remotely, especially for small frequent calls.
I also have a local SQL server. What is the most simple way to have a local copy of 'dbo.myTable', that is synchronised automatically with the main one? (I don't need second precision, maybe a few minutes lag is enough)
The data will only be modified on the remote one, as locally I will only read.
Thank you