Hi folks,
I have read access to a database on a remote server, I am not allowed to write any stored procedure on that database. I am wondering what's the best approach to access data on that server?
My thought is I will have to create a shell database, I write my stored procedures on it, link the server with the 'read-only' server, specify credential somewhere in my sp, fetch data from there.
Is that correct? How do I do that? I don't think I should store my user name and password in my stored procedure.
Thanks in advance.