
Q: How to change collation of the our entire server? (link)
A: You will have to install your entire SQL Server to change collation of the server.
Q: How to recover system databases from suspect mode without having any backups? (link)
A: You need backup to recover a corrupt system database.
Q: How to retrieve last 5 inserted rows from a table? (link)
A: You can retrieve the data based on date field or identity field. If you do not have either, no luck. (blog)
Q: What does *= operator does for SQL Query? (link)
A: It is an old way of using left join, now it is deprecated so avoid using it.
Q: How to reduce CXPACKET and PAGEIOLATCH_XX waits in SQL Server database? (link)
A: CXPacket is the effect of parallelism, which may or may not be a problem. PageIOLatch indicates a problem with the slowness of the disk subsystem. This would very well cause CXPacket as well. (blog, blog)
Well, these are the five questions which I have received on Facebook. If you have any question, let us connect on Facebook.
Reference: Pinal Dave (https://blog.sqlauthority.com)