Archive for the ‘OCP DBA 9i’ category

Materialized views

November 2nd, 2009

Materialized views can be created either through the CREATE MATERIALIZED VIEW statement or the Oracle Enterprise Manager (OEM). The CREATE MATERIALIZED VIEW statement can also be used for populating the materialized views. A materialized view can be derived from an existing user-defined materialized view. In this case, the ON PREBUILT TABLE clause of the CREATE MATERIALIZED VIEW is used. However, if a user-defined materialized view does not exist, a materialized view can be populated by using either the BUILD IMMEDIATE or BUILD DEFERRED clause of the CREATE MATERIALIZED VIEW statement, depending upon whether the materialized view has to be populated immediately or at some later time, respectively. However, the BUILD DEFERRED materialized view cannot be used until a refresh is performed on it. As soon as the first refresh is performed on the BUILD DEFERRED materialized view, it is enabled, provided the ENABLE QUERY REWRITE clause is specified.

Like this article? Share it with others
If you like this article, please leave a comment or subscribe this blog via RSS or via e-mail, Bookmark and share through your network. Click the AddThis button below. Thanks.
  • Share/Bookmark

What is a log switch?

October 31st, 2009

A log switch occurs when the log writer (LGWR) finishes writing redo entries to the current online redo log file group and starts writing to the next online redo log file group. By default, a log switch occurs automatically when the current online redo log file group is full. A log switch can also be forced by executing the ALTER SYSTEM SWITCH LOGFILE; statement, regardless of whether or not the current online redo log file group is full.

Pass OCP DBA 9i in first attampt. Download free practice test for Oracle Oracle9i Database: Fundamentals I exam.
Like this article? Share it with others
If you like this article, please leave a comment or subscribe this blog via RSS or via e-mail, Bookmark and share through your network. Click the AddThis button below. Thanks.
  • Share/Bookmark

What is a resource consumer group?

October 31st, 2009

A resource consumer group is a logical grouping of user sessions on the basis of the resource requirements of each user session. Hence, there can be more than one resource consumer group with each having different resource requirements. Every user session can only belong to a single resource consumer group at an instance. At times, the resource requirement of a session is not met by the resource consumer group to which it belongs. In such cases, the session can automatically switch to a different resource consumer group depending on administrator settings.

Like this article? Share it with others
If you like this article, please leave a comment or subscribe this blog via RSS or via e-mail, Bookmark and share through your network. Click the AddThis button below. Thanks.
  • Share/Bookmark

What are latches?

October 31st, 2009

Latches are data structures used for protecting memory structures that are needed for a short period of time, e.g., the least recently used (LRU) list. Request for latches are not queued for execution. Following are the two modes of latches:

  • Willing-to-wait mode
  • Immediate mode
Like this article? Share it with others
If you like this article, please leave a comment or subscribe this blog via RSS or via e-mail, Bookmark and share through your network. Click the AddThis button below. Thanks.
  • Share/Bookmark

OCP 1z0-047 Short Notes: Exam passing tips

October 3rd, 2009

Retrieving data using the SQL SELECT statement and using single row functions to customize the output

  • /*…*/ and — are used to put comments in an Oracle program.
  • The CREATE TABLE does not end immediately with a semicolon, and a column name cannot start with a numeric value. However, a numeric value can be used in between a column name.
Like this article? Share it with others
If you like this article, please leave a comment or subscribe this blog via RSS or via e-mail, Bookmark and share through your network. Click the AddThis button below. Thanks.
  • Share/Bookmark

What is the REMOTE_OS_AUTHENT parameter?

September 30th, 2009

The REMOTE_OS_AUTHENT parameter in the parameter file of the database specifies whether remote clients will be authenticated with the value of the OS_AUTHENT_PREFIX parameter or not. The type of the REMOTE_OS_AUTHENT parameter is Boolean, the default value is false, and the parameter class is static. The REMOTE_OS_AUTHENT parameter is case sensitive on some operating systems. The flow diagram below may help a user understand the role of the REMOTE_OS_AUTHENT parameter for a remote database:

Like this article? Share it with others
If you like this article, please leave a comment or subscribe this blog via RSS or via e-mail, Bookmark and share through your network. Click the AddThis button below. Thanks.
  • Share/Bookmark

Study tips for Oracle test O1Z0-033.

September 10th, 2009

The objective of this test is to test the analytical skills of the user as a Database Administrator, using Oracle9i as the back-end tool. The test requires a thorough grasp of database concepts, familiarity with the GUI tools, scripts, views, and packages available in Oracle9i. This includes being able to identify the potential tuning areas with the help of the available tools and packages. The user should be able to analyze which tool or package should be used in which case. This requires a lot of practice with the tools and packages. The user should also be able to use PL/SQL-based queries for identifying potential bottlenecks in the performance of the system.

Like this article? Share it with others
If you like this article, please leave a comment or subscribe this blog via RSS or via e-mail, Bookmark and share through your network. Click the AddThis button below. Thanks.
  • Share/Bookmark

What is ONLINE option?

September 9th, 2009

ONLINE is an option of the ALTER INDEX REBUILD statement, which is used to minimize locking contentions that may arise at the time of rebuilding an index. Locking contentions generally arise when several operations are being simultaneously performed with the index rebuilding operation, on a table corresponding to the index.

Best exam simulation Oracle ocp-dba9i download free trial. Download practice question and study guide for 1Z0-033 for exam.
Like this article? Share it with others
If you like this article, please leave a comment or subscribe this blog via RSS or via e-mail, Bookmark and share through your network. Click the AddThis button below. Thanks.
  • Share/Bookmark

What is an active session pool?

September 9th, 2009

An active session pool is a feature that allows a user to control the maximum number of active sessions permissible within a resource consumer group. As more active sessions are created within a resource consumer group, the resource consumption increases accordingly. This may lead to a situation where a single resource consumer group is engaging the entire available resources, whereas other groups are starving. To avoid this situation, the active session pool queues the active sessions that are created beyond the permissible limit, without actually executing them. A queued active session is executed only after an existing active session ends. The active session pool follows the first-in-first-out queuing principle. There is only one active session pool for each resource consumer group.

Pass Oracle ocp-dba9i - OCP DBA 9i Click here to get free 1Z0-033 Oracle9i DB: Performance Tuning exam practice questions.
Like this article? Share it with others
If you like this article, please leave a comment or subscribe this blog via RSS or via e-mail, Bookmark and share through your network. Click the AddThis button below. Thanks.
  • Share/Bookmark

What is direct path loading?

September 9th, 2009

Direct path loading is a method of data loading where the direct path application program interface (API) passes the data to be loaded to the load engine on the server. The load engine builds a column array from the data. It then uses the array structure to format data blocks and build index keys. The data blocks so formatted are written directly to the database. In direct path loading, data conversion occurs on the client side rather than on the server side. Direct path loading is generally faster than conventional loading because of the following reasons:

  • Contention with other users is minimized because the processes perform their own I/O instead of using the buffer cache.
  • Direct path loading employs multiblock asynchronous I/O for writing to the datafiles.
  • Partial blocks are not employed by direct path loading. Hence, there is no overhead of finding them.

Direct path loading is generally used when the data to be loaded is quite large or the data is to be loaded in parallel for enhanced performance. Integrity constraints are employed in direct path loading, e.g., the NOT NULL constraint. Integrity constraints depending upon other rows or tables, e.g., the referential constraint, are disabled before the direct path loading and are re-enabled afterwards.

Get certified in first attempt download ocp-dba9i - OCP DBA 9i simulation. Pass Oracle 1Z0-033 - Oracle9i DB: Performance Tuning
Like this article? Share it with others
If you like this article, please leave a comment or subscribe this blog via RSS or via e-mail, Bookmark and share through your network. Click the AddThis button below. Thanks.
  • Share/Bookmark
uCertify.com | Our Company | Articles | Contact Us | News and Press Release | uCertify India | Entries (RSS)
MCSE: MCSA, MCTS, MCITP    JAVA Certification: SCJP, SCWCD    Cisco Certification: CCNA, CCENT    A+, Network+, Security+ Project+
Oracle Certification: OCP 11g, OCP 10g, OCA 11g, OCA 10g    CIW foundation    EC-212-32,    CISSP    Photoshop ACE CS4    Adobe Flash ACE, PMP, CAPM
© 2008 uCertify.com. All rights reserved. All trademarks are the property of their respective owners.