InterviewSolution
| 1. |
What are the points to be considered for creating a fast performing stored procedure? |
|
Answer» Locks allow SEAMLESS functioning of the SQL server even in concurrent user sessions. As we as a whole know, different clients need to get to databases simultaneously. So locks come for rescue to keep information from being undermined or NEGATED when numerous clients ENDEAVOR to do data manipulation tasks DML operations, for example, read, compose and update on DATABASE. "Lock is characterized as a component to guarantee information integration, consistency while enabling simultaneous access to information. It is utilized to execute simultaneous control when various clients get to Database to control its information in the meantime". Locks can be applied to various database components. Please find below areas where a lock can be applied :
|
|