database indexes

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/26

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

27 Terms

1
New cards

Create index on Orders table with key CustomerID and fill factor 75

create nonclustered index Orders_Customers_link on Orders(CustomerID) with (fillfactor=75) go

2
New cards

r

number of records

3
New cards

R

record size/length (for a table record)

4
New cards

R­i

index record size/length

5
New cards

bx

number of blocks needed to store index records

where x = the level of the index (1 = first, 2 = second, etc.)

6
New cards

P

block pointer size

7
New cards

PR

record pointer size

8
New cards

b

number of blocks needed to store table records

9
New cards

ex

number of index entries for an index level,

where x = the level of the index (1 = first, 2 = second, etc.)

10
New cards

bfr

blocking factor

11
New cards

bfri

index blocking factor

May see bfris and bfrid – These help differentiate between sparse and dense bfrs

12
New cards

V

size of the ordering key field

13
New cards

t

number of levels needed on multi-level index

14
New cards

tb

total number of blocks needed to support multi-level index

15
New cards
16
New cards

bfr =

floor(B/R)

17
New cards

b =

ceil(r/bfr)

18
New cards

Ri = (primary, sparse)

V + P

19
New cards

Ri = (secondary, dense)

V + PR

20
New cards

bfri =

floor(B/Ri)

21
New cards
22
New cards

ex =

bx-1

23
New cards

e1 = (sparse)

b

24
New cards

e1 = (dense)

r

25
New cards

b1 = (sparse)

ceil(e1/brfis)

26
New cards

b1 = (dense)

ceil(e1/brfid)

27
New cards

bx =

ceil(ex/bfris) (for x > 1)