Reputation: 147
I'm using PHP7 on Ubuntu and the ODBC Driver 13. I've tried using PDO and SQLSRV drivers but I keep receiving errors that sql server 2000 is unsupported.
My dilemma is this server is still in production and I have no means to upgrade it but I need to report on it.
Are there any other methods to connect to this server? I am completely aware that this server is nearly 18 years old.
Thanks
Upvotes: 2
Views: 1839
Reputation: 147
I solved my issue by using an existing SQL Server 2012 instance I had and linking the database. Then using sqlsrv to connect to the 2012 instance and run my select openquery off of that.
This guide below helped.
Upvotes: 1