-
What are the Referential actions supported by FOREIGN KEY integrity constraint ?
UPDATE and DELETE Restrict - A referential integrity rule that disallows the update or deletion of referenced data.DELETE Cascade - When a referenced row is deleted all associated dependent rows are deleted.
-
-
-
Do View contain Data ?
Views do not contain or store data.
-
What is a Sequence ?
A sequence generates a serial list of unique numbers for numerical columns of a database's tables.
-
What are synonyms used for ?
Synonyms are used to : Mask the real name and owner of an object.Provide public access to an objectProvide location transparency for tables, views or program units of a remote database.Simplify the SQL statements for database users.
-
How are Indexes Update ?
Indexes are automatically maintained and used by ORACLE. Changes to table data are automatically incorporated into all relevant indexes.
-
What is Public Database Link ?
Public database link is created for the special user group PUBLIC. A public database link can be used when any user in the associated database specifies a global object name in a SQL statement or object definition.
-
How to define Data Block size ?
A data block size is specified for each ORACLE database when the database is created. A database users and allocated free database space in ORACLE datablocks. Block size is specified in INIT.ORA file and can’t be changed latter.
-
What is an Extent ?
An Extent is a specific number of contiguous data blocks, obtained in a single allocation, and used to store a specific type of information.
-
What is a Segment ?
A segment is a set of extents allocated for a certain logical structure.
-
What are the different type of Segments ?
Data Segment, Index Segment, Rollback Segment and Temporary Segment.
-
What is an Index Segment ?
Each Index has an Index segment that stores all of its data.
-
What is Rollback Segment ?
A Database contains one or more Rollback Segments to temporarily store "undo" information.
-
Database Connectivity Error
Here i'm sending all of you the error which occurred frequently during database connection.While creating a data block in Oracle Forms, the error which encountered frequently is "ORA-12560: TNS Protocol Adapter Error" During lectures instructor had told us that if such error encountered then copy the TNSNAMES.ORA file from ..oracleora92networkadminsample to forms9inetworkadminsample as it contains...
-
Remote and Local user
what is remote login user and local user in database?And sid is used when user want to login as local user and Glodal database name is used when user wants to login as remote user..What does it mean ?
-
Regarding query and a view in oracle
Hi,
If a user executes a query which is already being used by a view exactly will oracle use already existing view to retrieve data or use the query executed by user?
Regards,
Shashi -
What is the function of Redo Log ?
The Primary function of the redo log is to record all changes made to data.
-
-
What is difference between UNIQUE constraint and PRIMARY KEY constraint ?
A column defined as UNIQUE can contain Nulls while a column defined as PRIMARY KEY can't contain Nulls.
Oracle Architecture Interview Questions
Ans