What is TABLE SPACE?

Answers were Sorted based on User's Feedback



What is TABLE SPACE?..

Answer / hssk

A database is divided into logical storeage unit called
tablespaces.A tablespace is used to grouped related logical
structures together.

Is This Answer Correct ?    6 Yes 0 No

What is TABLE SPACE?..

Answer / dileep

A Table space is a logical group of data files in a data
base. a typical data base consists at least one table space,
and usually two or more. In a database a table space plays a
role similar to that of a folder on the hard drive of a
computer.

Is This Answer Correct ?    5 Yes 0 No

What is TABLE SPACE?..

Answer / m.m

Tablespace:
A database storage unit that groups related logical
structures together.

logical structures:
Logical structures of an Oracle database include table
spaces, schema objects, data blocks, extents, and segments.
Because the physical and logical structures are separate,
the physical storage of data can be managed without
affecting the access to logical storage structures.

physical structures:
Physical database structures of an Oracle database include
data files, redo log files, and control files.

data block:
Smallest logical unit of data storage in an Oracle
database. Also called logical blocks, Oracle blocks, or
pages. One data block corresponds to a specific number of
bytes of physical database space on disk.( a common block
size is 8k)

extent:
Second level of logical database storage. An extent is a
specific number of contiguous data blocks allocated for
storing a specific type of information.

segment:
Third level of logical database storage. A segment is a set
of extents, each of which has been allocated for a specific
data structure, and all of which are stored in the same
tablespace.


Datafile:
A physical operating system file on disk that was created
by Oracle and contains data structures such as tables and
indexes. A datafile can only belong to one database.

Is This Answer Correct ?    2 Yes 0 No

What is TABLE SPACE?..

Answer / mohan

Database is logically divided into three tablespaces. once
creates the database then automatically create tablespace
is also called SYSTEM tablepace.tablespace contain dta
dictionary of all data.

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More SQL PLSQL Interview Questions

Can a view be updated/inserted/deleted?If Yes under what conditions?

3 Answers  


Why is pl sql used?

0 Answers  


how to eliminate null values in a column i.e table vlaues 1 2 3 NULL 3 4 1 5 NULL i want output like this 1 2 3 3 4 1 5 i dnt want to use nvl is null and i dnt want replace the NULL value with any value i.e nvl(col,o);

11 Answers   Satyam,


With out using count() function. How to the find total number of rows in a table?

6 Answers  


What is a full join sql?

0 Answers  






Can we perform dml in function?

0 Answers  


How can I change database name in sql?

0 Answers  


Can we insert in view in sql?

0 Answers  


What is vector point function?

0 Answers  


write a query to remove null following table are id name 101 dinesh null jyothi null bharathi 102 suresh null shilpha 103 prakesh null suma i want the output format like id name 101 dinesh 102 suresh 103 prakesh

3 Answers   TCS,


Which is better trigger or stored procedure?

0 Answers  


Can dml statements be used in pl/sql?

0 Answers  


Categories