I've never worked with Views on MSSQL so I hope I'm note asking a dumb question.
I have a MSSQL database and I can easiliy retrieve information from it like:
mssql_query(SELECT tbDocs FROM tbServices);
But I can't get data from a view. For example there is a view named View_Technical_Service it gets fields from tbServices and tbCustomer. Whenever I execute a query from php like
mssql_query(SELECT tbDocs FROM View_Technical_Service);
I get a time out error msg from chrome:
Error 324 (net::ERR_EMPTY_RESPONSE):
So what's wrong? Is it not possible to get from a MSSQL View with php?