answersLogoWhite

0

Oracle Database

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

690 Questions

Can any one tell best site for Oracle Apps Technical training?

Oracle Apps Techno Functional Faculty: Oracle Apps Technical, Oracle Apps Functional, Oracle Financial for Indian Localization, SQL, PL/SQL and D2K.

What is the most important news that Creon brings from the Oracle at Delphi?

That the plague at Thebes is occurring because the murderer of Laius lives unpunished.

Write a PLSQL code to print a multiplication table where the input is given by the user in Oracle?

Declare

num number(10):=#

a number(10);

counter number:=1;

begin

for i in 1..10 LOOP

a:=num*counter;

DBMs_output.put_line(a);

Counter:=counter+1;

end loop;

end;

What is Larry ellison personal email address of oracle?

Dear Sir,

Greetings to you and your family. John Appiah Arthur is my name, 31 years old and I am a Ghanaian.

I am writing to appeal for your support to start my own bamboo business in Ghana. And I need an amount of $5000 USD to start or invest in the business. And need your managerial expericence and advice to go about it and I will personal report the progress and the challenges facing the company to you.

I hope my letter will be considered.

Thank you

Yours sincerely

John Appiah Arthur

Emai: johnarthur20012002@yahoo.com/ johnbilo02@gmail.com

Self No: (233) 0243567778

What is ACID properties DBMS?

A-- >Automicity

C-- >Consistent

I-- >Isolation

D-- >Durability

What is parallel join in dbms?

A join is a temporary relationship that you create between tables in database query.

Parallel join: split the pair to be tested over several processors of computer is the part of join and then the result is merged back to have the output.

What is oracle retek?

oracle retek is business software for retail company.

How do you fix Oracle error ora-29275?

You need a professional Oracle file repair tool to fix ORA-29275 or any other oracle database error.

Click http://oracle.filerepairtool.net/ for better and more infromation.

What types of software does Oracle specialize in?

Oracle is the creator of the widely used Java and Javascript language. They mostly specialize in the realm of database and server side software. They also own the UNIX operating system Solaris, which they owned after acquiring Sun Microsystems.

How do you connect oracle 10G developer to oracle 9I database?

I hope you can connect your Oracle9i database from Oracle10g as the same way how you connect from Oracle10g itself.

But you have to add Oracle9i connection details at your Oracle10g TNSNAMES.ORA file.

Simply you copy any other connection setting and change the name, Sid or source name, host name or ip address.

Is Oracle a programming language?

In C language Oracle is developed and after that enhancement is done in Java for 10g and 11g

What is the syntax of oracle dynamic sql?

The syntax for dynamic sql is

For example if you want to create table at run time then syntax is

Declare

V-string varchar2(900);

begin

V_string:='create table ORACLE (empno number,ename varchar2(90)');

execute immediate V_string;

end;

/

Physical database designer?

IBM Infosphere Data Architect, CA Erwin, Microsoft Access GUI are examples of physical database designer.

How do you create an online order processing system using PHP and MySQL?

There are several steps to creating an online order processing system.

First, you need to determine what exactly you want the system to do. I'm guessing that you want to be able to input products and send the order to a credit card processor.

In order to do this, you'll need to create a database. Inside that database, you will need to create one table that lists products and prices, another for user authentication, and a third to list individual orders and the customers who placed them.

After the database is organized, create the PHP code that interfaces between the user's browser and the back-end database. I would highly recommend reading PHP.net's MySQL function list, available as a Related Link below this text.

Finally, you will need to create code that will interface with your credit card processor. This could be as simple as a custom PayPal link, or could involve interfacing directly with a credit card acceptor.

What is the advantage of sequence in oracle?

Removes collision of primary key values

Faster access by using the cache option

Auto generation of sequence values

Stored as a database object and can be used for repeated access.

Disadvantages

Loss of sequence value (including the cached values) when power failure or system failure occurs.

What is Oracle SQL Developer software used for?

Oracle SQL Developer software is a free development environment software package. It enables users to develop software applications using Java for Oracle databases.

What is an ID-Dependent entity?

A special case of weak entity where the identifier of the dependent entity includes the identifier of the entity upon which it depends. Example :

PART(PartNumber, PartName, SalesPrice, QuantityOnHand)
COMPANY(CompanyName, City, Country, Volumn)

QUOTATION(PartNumber, CompanyName, Price) - This entity is id-dependent on the two previous entities.

What types of services come with an eBusiness Suite from Oracle?

Services provided in the eBusiness Suite from Oracle include an order management service, an invoicing service, and an order fulfillment service. Additionally it includes tools to make it easy to keep track of inventory and print out shipping labels.

MTL stands for what in Oracle applications 11i?

In the underlying table structure, the MTL is short for 'materials'.

For example, the MTL Transaction Interface table is used to issue and receive items in an out of inventory.