Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit fc50157

Browse files
authored
Merge pull request svozniuk#9 from rahulsaini/patch-1
Update Database (Oracle).txt
2 parents 758707d + 06d9f51 commit fc50157

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

Databases/Database (Oracle).txt

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -261,13 +261,15 @@ Are database Indexes useful? What is the role of them?
261261
well as data volumes increase.
262262

263263
Why many indexes are not good for performance
264-
todo
264+
Too many indexes will result in more frequent INDEX REBUILD operations which are costly to the database table.
265+
If a table has many indexes and is read heavy and has very less writes (UPDATE / INSERT) instead of SELECT then Indexes will actually speed up the query.
266+
However if there are too many indexes and table has frequent writes then costly Index Rebuild operations will be very frequent.
265267

266268
What does it mean database de-normalization?
267269
todo
268270

269-
Which of SELECT, UPDATE, DELETE, ADD�s performance is mostly affected by performance of indexes?
271+
Which of SELECT, UPDATE, DELETE, ADDs performance is mostly affected by performance of indexes?
270272
todo
271273

272274
What are ways to increase performance of database
273-
todo
275+
todo

0 commit comments

Comments
 (0)