answersLogoWhite

0

Oracle Database

Oracle Database is a Relational Database Management System produced by Oracle Corporation. It was first released in 1977.

690 Questions

What are the differences between Microsoft Excel and Oracle Database?

Excel is a spreadsheet program. Oracle is for databases. Excel has some databasing capabilities, but it is not its main purpose.

What is atomicity in dbms?

It is difficult to ensure atomicity in file processing system.For example transferring $100 from Account A to account B.If a failure occurs during execution there could be situation like $100 is deducted from Account A and not credited in Account B

What is check point in DBMS?

fuzzy checkpointIn a fuzzy checkpoint, the database server does not flush the modified pages in the shared-memory buffer pool to disk for certain types of operations, called fuzzy operations. When a fuzzy checkpoint completes, the pages might not be consistent with each other, because the database server does not flush all data pages to disk. A fuzzy checkpoint completes much more quickly than a full checkpoint and reduces the amount of physical logging during heavy update activity. When necessary, the database server performs a full checkpoint to ensure the physical consistency of all data on disk. Fuzzy Operations

The following commonly used operations are fuzzy for built-in data types:

  • Inserts
  • Updates
  • Deletes

The following operations are nonfuzzy:

  • Inserts, updates, and deletes for rows that contain user-defined data types, smart large objects (CLOB and BLOB data types), or simple large objects (TEXT and Byte data types)
  • Table alters and loads
  • Operations that create or modify indexes (B-tree, R-tree, or user-defined indexes)

The database server flushes all the modified data pages for nonfuzzy operations to disk during a fuzzy checkpoint in the same way as for a full checkpoint.

Important:

Fuzzy checkpoints are disabled for the primary and secondary servers in a High-Availability Data Replication pair.

Write-Ahead Logging and Fast Recovery

Fuzzy checkpoint uses write-ahead logging for fast recovery. Write-ahead logging means that the logical-log records representing changes to fuzzy data must be on disk before the changed data replaces the previous version of the data on disk. Fast recovery begins with the oldest update not yet flushed to disk rather than with the previous checkpoint.

Fuzzy checkpoints result in slightly longer roll-forward fast-recovery times. The database server occasionally performs a full checkpoint to prevent loss of old logical-log records.

Fuzzy Checkpoints Improve Performance

Fuzzy checkpoints are much faster than full checkpoints and improve transaction throughput. Because the database server does not log fuzzy operations in the physical log, the physical log does not fill as quickly, and checkpoints occur less often. For example, if you are inserting and updating a lot of data, checkpoints occur less frequently and are shorter.

The database server skips a full checkpoint if all data is physically consistent when the checkpoint interval expires. It skips a fuzzy checkpoint only if no pages have been dirtied since the last checkpoint.

To improve transaction throughput, use the BUFFERPOOL configuration parameter to increase thelru_max_dirty and lru_max_dirty values. However, do not change the gap between the lru_max_dirty andlru_max_dirty values.

What are the advantages of database management system?

management is a system of authority. infact management won't exist without proper and appropriate authority.Authority is power to get the work done by others and compel them to work systematically.Management cannot perform in absence of authority.Authority and responsibility generally depends upon the position of the managers ( viz. general manager , sales manager , departmental manager , finanace manager ) in the organization.

What are the advantages of file processing approch?

Disadvantages of File Processing Systems include:

1. Program-Data Dependence. File descriptions are stored within each application program that accesses a given file.

2. Duplication of Data. Applications are developed independently in file processing systems leading to unplanned duplicate files. Duplication is wasteful as it requires additional storage space and changes in one file must be made manually in all files. This also results in loss of data integrity. It is also possible that the same data item may have different names in different files, or the same name may be used for different data items in different files.

3. Limited data sharing. Each application has its own private files with little opportunity to share data outside their own applications. A requested report may require data from several incompatible files in separate systems.

4. Lengthy Development Times. There is little opportunity to leverage previous development efforts. Each new application requires the developer to start from scratch by designing new file formats and descriptions

5. Excessive Program Maintenance. The preceding factors create a heavy program maintenance load.

Who co-founded Oracle corporation?

Research has shown that the Oracle software company is not owned by one specific individual. Larry Ellison was the co-founder of the company and is said to be worth $41 billion which includes his stock ownership in the Oracle company.

What is the difference between Oracle and Microsoft Access?

Microsoft Word is a word processor - a program used to create textual documents (e.g. letters, essays, books, manuals). Its end product is designed for a human reading it. Some of its competitors are WordPerfect and KWord.

Microsoft Access is a database - a program used to store relational information (e.g. customer data, payroll, scientific data, financial data) in the computer and retrieve parts of it according to a user's need. Some of its competitors are mysql and Oracle.

What is need for normalization in dbms?

DBMS stand for data base management system

We normally use dbms systems to improve the management of the data and accesss of the data too.

well if the data is in normal form it is very easy to access it as well as manage it for the system.

In the process of normalization we increase the normality of the data by removing the dependencies redundancy applying the entity integrity and referential integrity.

there are many stages of Normalization process..:

1. 1NF

2. 2NF

3. 3NF

4. BC NF

5. 5NF...etc..

-----------------------------------------------------------------------------------------------

Addendum:

While the above answer is not incorrect, I don't believe it properly answers the question in a way that anyone who is not already a database expert would understand. The question is this: Why do we need to normalize data in a database. Here is the answer:

First, in order to answer this you have to understand what normalization is. Normalization is the process of removing duplicate information and dependent information from a database.

Lets say for example you have two tables, one called 'employees' and another called 'addresses'. In the employees table you include a field called 'city' and you also include this field in the addresses table. The reason you might do something like this is that you want to be able to get a basic idea of where your employee lives without having to look up the address so you include it in both locations.

Why is this bad? well it should be obvious but here it is. Its bad because it allows for inaccuracies. What if the employee moves and changes his address and you forget to change the city listed in the employees table (or your system crashes while you trying to do it)

the proper way to do this would be to not have the 'city' field in the employee table and instead have a reference to the address table. When querying this info you need to join the two tables and this will ensure that you always have the correct info.

-Dallas Caley

Where are tables stored in oracle database?

In Oracle, tables are stored in segments, which are stored in extents, which are stored in tablespaces, which are stored in datafiles on the host system. This is a DBA issue. No application developer should concern themselves with this topic, except to identify data and query needs to the DBA.

What is the importance of oracle bones?

Oracle bones was used by priests to tell the future. The Shang priest would interpret crack(produced on bones by applying heat) as giving answers to questions about the future. The questions and their answers are carved onto bones. Such bones were usually the shoulder bones of sheep or cows occasionally turtle shells. The bones were also used to record names of rulers, family histories and events such as the eclipses of the sun and moon.

What are the characteristics of relational database management system?

characteristic of relational data base system

There are a number of characteristics that distinguish the database approach with the file-based approach. In this section, we describe in detail some of those important characteristics.

Self-Describing Nature of a Database System : Database System contains not only the database itself but also the descriptions of data structure and constraints (meta-data). These information is used by the DBMS software or database users if needed. This separation makes database system totally different from traditional file-based sytem in which data definition is a part of application programs

Insulation between Program and Data : In the filed base sytem, the structure of the data files is defined in the application programs so if user want to change the structure of a file, all the programs access to that files might need to be changed. On the other hand, in database approach, data structure is stored in the system catalog not in the programs so such changes might not occurs.

Support multiple views of data: A view is a subset of the database which is defined and dedicated for particular users of the system. Multiple users in the system might have different views of the system. Each view might contains only the interested data of an user or a group of user.

Sharing of data and Multiuser system: A multiuser database system must allow multiple users access the database at the same time. As the result, the multiuser DBMS must have concurrency control strategies to ensure that several user try to access the same data item at a time do so in the manner so that the data always be correct.

What is the definition of a database system?

A database system is a way of organizing information on a computer, implemented by a set of computer programs. This kind of organization should offer: * simplicity - an easy way to collect, access-connect, and display information;

* stability - to prevent unnecessary loss of data;

* security - to protect against unauthorized access to private data; * speed - for fast results in a short time, and for easy maintenance in case of changes in the organization that stores the information. Each subject in the common database is put in a structure or object which is called a "table." The database provides a way to connect or "query" the different subjects depending on the goal of the question. Most of the common databases use a standard query language or "SQL" (although there are less-common kinds of databases that use different ways of accessing the data). The first databases were developed in the early 60s in the US. Most commercial and non-commercial organizations use a database for storing their important information.
An ordered collection of information. Usuall this is organized into tables, so you might also define a database as a collection of tables (together with some other, supporting, data structures, such as indices and views, and perhaps some computer code).

What set of instructions from God do Jews live by?

There are actually two sets.

The first are the 'mitzvot' which are the commands found in the Torah.

The second is 'halacha'. Halachot are the Jewish religious laws based on the mitzvot (they explain the details of how to keep the mitzvot) and are found in the Talmud.

Answer:

The Torah.

What is the meaning of g in oracle 10g?

G signifies "Grid Computing"... With the release of Oracle 10g in 2003, Oracle changed the suffix in their previous release version; from 9i to 10g... 'I' stands for Internet...this was done as a marketing effort in order to show Oracle's move towards Grid Computing... Purely a marketing strategy...

What is meant by aggregation according to dbms?

Aggregation is an important concept in database design where composite objects can be modelled during the design of database applications. Therefore, preserving the aggregation concept in database implementation is essential. In this paper, we propose models for implementation of aggregation in an Object-Relational Database Management System (ORDBMS) through the use of index clusters and nested tables. ORDBMS is a commercial Relational Database Management Systems (RDBMS), like Oracle, which support some object-oriented concepts. We will also show how queries can be performed on index clusters and nested tables.

How many bytes does oracle 9i use to store number datatype?

from <http://docs.oracle.com/cd/B19306_01/server.102/b14220/datatype.htm#i1847>

Overview of DATE Datatype

The DATE datatype stores point-in-time values (dates and times) in a table. The DATE datatype stores the year (including the century), the month, the day, the hours, the minutes, and the seconds (after midnight).

Oracle can store dates in the Julian era, ranging from January 1, 4712 BCE through December 31, 4712 CE (Common Era, or 'AD'). Unless BCE ('BC' in the format mask) is specifically used, CE date entries are the default.

Oracle uses its own internal format to store dates. Date data is stored in fixed-length fields of seven bytes each, corresponding to century, year, month, day, hour, minute, and second.

The correct answer is 7 bytes for a date column.

What is the job description of an Oracle database administrator?

The database administrator performs a critical role within an organization and is an important and key role in

Database Management Systems.

The major responsibility of a database administrator is to handle the process of developing the database

and maintaining the database of an organization. The database administrator is responsible for defining

the internal layout of the database and ensuring the internal layout optimizes system performance.

The database administrator has full access over all type of important data of an organization.

The database administrator decides what data will be stored in the database and how to organize

data in database so that it can be access easily on requirement or need of an organization.

To design the database of an organization, the database administrator must have a meeting

with users and determine their requirements.

The database administrator is also responsible for preparing documentation,

including recording the procedures, standards, guidelines, and data descriptions

necessary for the efficient and continuing use of the database environment. Documents

should include materials to help end users, database application programmers, the operation

staff, and all personnel connected with the database management system.

The database administrator is responsible for monitoring the database environment, such

as seeing that the database is meeting performance standards, making sure the accuracy,

integrity, and security of data are maintained.

The database administrator is also responsible to manage any enhancements into

the database environment

What is different db from oracle?

The main difference between db2 and oracle is the fact that db2 is owned by IBM corporation and oracle is owned by Oracle Corporation.

Both db2 and oracle are extremely powerful RDBMS systems which offer a wide variety of featues to its users.

1.DB2 is an RDBMS from IBM while Oracle is an RDBMS from the company of the same name

2.IBM offers DB2 packaged along with its iSeries hardware and operating system while Oracle is sold as an independent software

3.Most people usually regard to Oracle as superior due to many shortcomings of DB2

4.Oracle directly supports a Java application server where you can deploy Java servlets while with DB2 you would need to employ a Java translator like Tomcat

Difference between oracle 9i and oracle 10g?

A lot of differences this is my take on them:

8i -> 9i - Real Application Clusters, PL/SQL enhancements, XMLType enhancements

9i -> 10g - ASM space management, tracing and diagnostics, DML error logging, async commit, more PL/SQL changes, table/column encryption, restore points

10g -> 11g - Probably best to point you to technet on that one.

What is 9i in oracle 9i?

Oak Ridge Automatic Computer and Logical Engine-saif

Sap or oracle is the best?

Deciding between SAP and Oracle as the "best" depends on various factors, including the specific needs and circumstances of an organization. Both SAP and Oracle offer powerful enterprise software solutions, but they have differences in terms of product offerings, strengths, and weaknesses. Here are some considerations to help you decide:

SAP:

Strength in ERP: SAP is renowned for its Enterprise Resource Planning (ERP) software, such as SAP S/4HANA. It excels in providing integrated solutions for finance, supply chain, human resources, and other core business functions.

Wide Product Portfolio: SAP offers a broad range of software solutions beyond ERP, including customer relationship management (CRM), analytics, and cloud services.

Cloud Transformation: SAP has made significant strides in cloud computing with SAP Cloud Platform and SAP SuccessFactors for human capital management. It provides options for both on-premises and cloud deployments.

Industry Focus: SAP has a strong presence in various industries, including manufacturing, retail, utilities, and healthcare.

Global Reach: SAP has a global customer base and support network, making it suitable for multinational organizations.

Oracle:

Diverse Product Ecosystem: Oracle offers a wide array of software products, including databases, cloud services, ERP (Oracle Fusion), CRM (Oracle CX), and more.

Database Expertise: Oracle is renowned for its database technology and is widely used in enterprises worldwide.

Cloud Services: Oracle Cloud provides robust cloud infrastructure and application services, including database as a service (DBaaS), infrastructure as a service (IaaS), and platform as a service (PaaS).

Industry Solutions: Oracle offers industry-specific solutions tailored to sectors like hospitality, telecommunications, and financial services.

Integration Capabilities: Oracle's middleware and integration solutions enable businesses to connect diverse systems and applications.

When choosing between SAP and Oracle, consider the following:

Specific Needs: Assess your organization's specific requirements, industry, and size to determine which vendor aligns better with your needs.

Budget: Evaluate the total cost of ownership, including licensing, implementation, and maintenance costs.

Legacy Systems: Consider your existing systems and whether integration with them is critical.

Scalability: Assess whether the solution can scale with your organization's growth.

Support and Maintenance: Investigate the availability and quality of support and updates from the vendor.

User Experience: Consider the user-friendliness and ease of adoption for your team.

Ultimately, there is no one-size-fits-all answer, and the "best" choice depends on your organization's unique circumstances. Many organizations consult with IT experts or conduct thorough evaluations to make an informed decision. Both SAP and Oracle have a strong presence in the enterprise software market, and each has its strengths and weaknesses. And looking for the Sp 3d Software Training then, I suggest contacting Croma Campus.

For Further Information Contact :- +91-9711526942

What is written at the Oracle of delphi entrance?

I have heard it stated "Know Thyself, and You Shall Know the Secrets of the Gods and the Universe."

I am having trouble verifying this however. Every website that I have found thus far has bits and pieces of all the different quotes from the Temple of Apollo, some stating they are contractions, some "interpretations." None so far have had all of the axioms, in their entirety, for some strange reason.

It would be nice to have this verified, preferably with a credible source, and preferably both a literal, verbatim translation, as well as the standard interpretations.