why should required for Indexed by table in pl/sql

Answers were Sorted based on User's Feedback



why should required for Indexed by table in pl/sql..

Answer / sa123

For good performance Index is required.
Consider the case of a very large table (20,000,000 rows)
to which new records are added daily (usually about 1,000
of them). Every night, you need to report these additions
on an audit trail. Rather than scan the whole table looking
for changes, you will want to use an index over the
TRANSACTION_DATE column. But the index would need to be
huge. This is a case in which your index is over the entire
table, although you are actually interested only in the
1,000 or so records that were added today. The actual index
is physically many times larger than it needs to be, and it
uses many more disk I/Os to traverse the binary tree to the
leaf data.

Is This Answer Correct ?    8 Yes 2 No

why should required for Indexed by table in pl/sql..

Answer / samar singh

Index by tables are composed of two components
1)primary key of binary_interger
2)column of scalar or record type

and used for increasing the size dynamically.

Is This Answer Correct ?    0 Yes 0 No

why should required for Indexed by table in pl/sql..

Answer / opulentus

opulentus

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More SQL PLSQL Interview Questions

What is query syntax?

0 Answers  


How can we find duplicate records in a table?

0 Answers  


Is sql better than excel?

0 Answers  


What is group function in sql?

0 Answers  


i have a customer table. trans_id trans_date trans_amt debit_credit_indicator 001 01-JAN-13 1099 cr 001 12-JAN-13 500 db 002 24-FEB-13 400 db 002 23-MAR-13 345 cr 001 18-APR-13 800 cr 002 15-MAR-13 600 db 001 12-FEB-13 200 cr i want like this output. trans_id trans_amt debit_credit_indicator i want get highest credit amount and lowest credit amount and highest debit amount and lowest debit amount for each trans_id.

2 Answers   Oracle,






what are the difference between clustered and a non-clustered index? : Sql dba

0 Answers  


What is the execution plan in sql?

0 Answers  


How to select 10 records from a table?

0 Answers  


Define the select into statement.

0 Answers  


What is auto increment in sql?

0 Answers  


Can we use view in stored procedure?

0 Answers  


What does where 1/2 mean in sql?

0 Answers  


Categories