KyaPoocha.com

Huge Collection of Interview Questions


Archive for May, 2008

What is the main disadvantage of developing an application using an API? 

The application cannot use any special features of the backend server.  Read more »

What is the main advantage of developing an application using an API? 

The application can be connected to any back end server that is supported by the API.  Read more »

What is the usage of SAVEPOINTS? 

SAVEPOINTS are used to subdivide a transaction into smaller parts. It enables rolling back part of a transaction. Maximum of five save points are allowed.  Read more »

How many LONG columns are allowed in a table? Is it possible to use LONG columns in WHERE clause or ORDER BY? 

Only one LONG column is allowed. It is not possible to use LONG column in WHERE or ORDER BY clause.  Read more »

What are the pre-requisites to modify datatype of a column and to add a column with NOT NULL constraint? 

- To modify the datatype of a column the column must be empty. - To add a column with NOT NULL constrain, the table must be empty.  Read more »

How will you activate/deactivate integrity constraints? 

The integrity constraints can be enabled or disabled by ALTER TABLE ENABLE CONSTRAINT / DISABLE CONSTRAINT.  Read more »

What is a database link? 

Database link is a named path through which a remote database can be accessed.  Read more »

How to access the current value and next value from a sequence? Is it possible to access the current value in a session before accessing next value? 

Sequence name CURRVAL, sequence name NEXTVAL. It is not possible. Only if you access next value in the session, current value can be accessed.  Read more »

What is CYCLE/NO CYCLE in a Sequence? 

CYCLE specifies that the sequence continue to generate values after reaching either maximum or minimum value. After pan-ascending sequence reaches its maximum value,... Read more »

If a view on a single base table is manipulated will the changes be reflected on the base table? 

If changes are made to the tables and these tables are the base tables of a view, then the changes will be reference on the view.  Read more »

Can a view be updated/inserted/deleted? If Yes - under what conditions? 

A View can be updated/deleted/inserted if it has only one base table if the view is based on columns from one or more tables then insert, update and delete is not... Read more »

Can you pass values to-and-fro from foreign function ? how ? 

es . You obtain a return value from a foreign function by assigning the return value to an Oracle Forms variable or item. Make sure that the Oracle Forms variable... Read more »

How many types of canvases are there? 

There are 4 types of canvases called as Content and Stack Canvas. Content canvas is the default and the one that is used mostly for giving the base effect. Its like... Read more »

Can object group have a block? 

Yes , object group can have block as well as program units.  Read more »

What are timers ? when when-timer-expired does not fire? 

The When-Timer-Expired trigger can not fire during trigger, navigation, or transaction processing.  Read more »

Page 6 of 13« First...«45678»...Last »