Forum Moderators: open
Is it possible / sensible to create pages in PHP that use MS SQL (along with MySQL)? Is this something that PHP (I use XAMPP) can do out the box?
(I've used ASP with MS SQL before, and PHP with MySQL, but not PHP with MS SQL.)
why can't you convert to mssql completly?
First its quite a sizeable database (12GB) and it gets downloaded and completely overwritten every morning (the database is updated daily).
We need it to go live on the site as quickly as possible - and every attempt I've made to convert it to MySQL (using freely available scripts) has taken most of the day - therefore it takes too long to convert it :(
Secondly, the database has got 50 tables in it, most of which need to be joined together in one huge join to get the relevant info needed on most pages (and to filter out all the records that we don't need).
Even with everthing indexed, its still quite demanding. I was therefore thinking that MS SQL views would be appropriate (I believe that MS SQL views can effectively be cached, while MS SQL continually has to re-create the view each time its called - though I could be wrong).