Changes between Initial Version and Version 1 of OtherTopics


Ignore:
Timestamp:
08/28/26 05:21:48 (10 days ago)
Author:
232012
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • OtherTopics

    v1 v1  
     1Other Topics
     2SQL Performance
     3
     4Document performance analysis for each complex query that you have produced:
     5
     6Propose indexes that could improve the performance of the query.
     7Document performance analysis using EXPLAIN PLAN to execute the query before the creation of the indexes, and after the creation of the indexes.
     8Document whether the indexes were truly used in the execution plan
     9Conclusion about the performance gains
     10Security measures
     11
     12Document the security measures you have introduced in your application related to database access (prevention of SQL injection, prevention of un-authorized access to data, …)
     13Document the security measures you have introduced in your database related to database access (prevention of SQL injection in dynamic queries, prevention of un-authorized access to data, …)
     14Other developments
     15
     16