InterviewSolution
Saved Bookmarks
| 1. |
How can SQL Injection be stopped / Prevent? |
|
Answer» Update Statistics has PERFORMED a recalculation of query optimization statistics for a table or indexed view. Although, with Auto Stats Update option, Query optimization statistics are automatically recomputed, in some CASES, a query may benefit from updating those statistics more frequently. UPDATE STATISTICS uses tempdb for its processing. Please note that update statistics causes queries to be RECOMPILED. This may lead to performance issues for initial execution. You can perform Update Statistics by 2 methods:
|
|