Distributed Processing

  Home  Oracle  Distributed Processing


“Oracle Distributed Processing Interview Questions and Answer will guide us that an oracle distributed system consists of multiple autonomous computers that communicate through a computer network. Computers interact with each other in order to achieve a common goal. A program that runs in a distributed system is called a oracle distributed program, and distributed programming is the process of writing such programs. Learn Oracle Distributed Processing with this Interview Questions with Answers”



12 Distributed Processing Questions And Answers

1⟩ What is an oracle SNAPSHOT?

Snapshots are read-only copies of a master table located on a remote node which is periodically refreshed to reflect changes made to the master table.

 144 views

2⟩ Describe two phases of Oracle Two-phase commit?

Prepare phase - The global coordinator (initiating node) ask a participants to prepare (to promise to commit or rollback the transaction, even if there is a failure) Commit - Phase - If all participants respond to the coordinator that they are prepared, the coordinator asks all nodes to commit the transaction, if all participants cannot prepare, the coordinator asks all nodes to roll back the transaction.

 157 views

3⟩ What is an Oracle SQL * NET?

SQL *NET is ORACLEs mechanism for interfacing with the communication protocols used by the networks that facilitate distributed processing and distributed databases. It is used in Clint-Server and Server-Server communications.

 120 views

6⟩ What is an oracle snapshot log?

It is a table that maintains a record of modifications to the master table in a snapshot. It is stored in the same database as master table and is only available for simple snapshots. It should be created before creating snapshots.

 146 views

7⟩ What is Oracle Two-Phase Commit?

Two-phase commit is mechanism that guarantees a distributed transaction either commits on all involved nodes or rolls back on all involved nodes to maintain data consistency across the global distributed database. It has two phase, a Prepare Phase and a Commit Phase.

 138 views

10⟩ What are the options available to refresh Oracle snapshots?

COMPLETE - Tables are completely regenerated using the snapshots query and the master tables every time the snapshot referenced.

FAST - If simple snapshot used then a snapshot log can be used to send the changes to the snapshot tables.

FORCE - Default value. If possible it performs a FAST refresh; Otherwise it will perform a complete refresh.

 126 views

11⟩ What is Oracle Distributed database?

A distributed database is a network of databases managed by multiple database servers that appears to a user as single logical database. The data of all databases in the distributed database can be simultaneously accessed and modified.

 182 views

12⟩ When will the data in the oracle snapshot log be used?

We must be able to create a after row trigger on table (i.e., it should be not be already available) After giving table privileges.

We cannot specify snapshot log name because oracle uses the name of the master table in the name of the database objects that support its snapshot log. The master table name should be less than or equal to 23 characters. (The table name created will be MLOGS_tablename, and trigger name will be TLOGS name).

 177 views