Please advice. im using sql as backend database.
if i create all my database as views will it be more faster? or i just select directly on the sql database? thanks in advance.
The choice between views and direct access (SQL pass-through) won't make a huge difference to performance. SQL pass-through will probably be faster, but only very slightly.
A much more important factor is to design your views or queries so that they return the minimum amount of data each time. If you get that right, you will get a much better performance gain than you will by using SPT rather than views.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.