|
The fill
factor option is provided for smoothening index data
storage and performance..................
Read
answer
Usually the
data keeps getting added, deleted, or updated in the
table due to which the fill factor is implemented during
the index creation itself. Fill factor is not maintained
after an index is created...............
Read
answer
A clustered
index is a good choice for searching over a range of
values. After an indexed row is found, the remaining
rows being adjacent to it can be found
easily................
Read
answer
Full text
indexes are stored in the file system and are
administered through the database.................
Read
answer
A fill factor
is a specification done during the creation of indexes
so that a particular amount of space can be left on a
leaf level page to decrease the occurrence of page
splits..................
Read
answer
The
characteristics of the indexes are: They fasten the
searching of a row. They are sorted by the Key
values.................
Read
answer
Types of
indexes: Clustered: It sorts and stores the data row of
the table or view in order based on the index key.
Non clustered: it can be defined on a table or view with
clustered index or on a heap. Each row contains the key
and row locator................
Read
answer
Allow the server to retrieve
requested data, in as few I/O operations. Improve
performance..................
Read
answer
a. When there is large amount of
data. For faster search mechanism indexes are
appropriate. b. To improve performance they must
be created on fields used in table
joins...............
Read
answer
Create Index:
CREATE INDEX index_name ON table_name (col_1,col_2..);
Example: Create index index_sample ON
employee(emp_id).....................
Read
answer
Also read
Answer -
Restricting query result means return of
required rows instead of all rows of the table. This
helps in reducing network traffic......
Answer - Both are
used for filtering of records based on filtered
criteria.....
Answer - This is
the default and recommended security mode. In this mode,
access to SQL server is controlled by Windows NT.....
Answer -
It is system variable that returns error code
of the SQL statement.....
Here you will learn how to copy a table on an Oracle
10G XE database to a database on the SQL Server 2005.
You will also learn how to install an Oracle 10G XE
server and work with its database
objects.
|