Interview FAQ PDF
Interview FAQ PDF
Which command is used for locking a user from performing DML Operation?
Latest Answer: LOCK TABLE tablename IN EXCLUSIVE MODE;EX:LOCK TABLE emp IN EXCLUSIVE MODE;
...
System_context
Why is sys_context used for providing privileges in Oracle?
Latest Answer: The sys_context function can be used to retrieve information about the Oracle
environment.The syntax for the sys_context function is:sys_context( namespace, parameter, [ length ]
)namespace is an Oracle namespace that has already been created. If the ...
Create a report for the HR department that displays employee last names, department numbers, and all
Create a report for the HR department that displays employee last names, department numbers, and all
the employees who work in the same department as a given employee. Give each column an
appropriate label.
Latest Answer: 1. Procedure Overloading and Function Overloading Possible in Package. ThisÂ
Overloading Concept Not Possible in Procedure.2. Variables in Package we Can use as a Global
Variables. it's Not Possible in Procedure. ...
Through Shell script in Unix, How can you run the Oracle procedure?
Latest Answer: To execute sqlplus via Unix shell scripts the following parameters need to be
initialized.(1.) ORACLE_HOME export ORACLE_HOME=Path to (2.) ORACLE_SIDexport
ORACLE_SID=Actual ORACLE_SIDAfter these initializations have been done use sqlplus ...
What are the differences between rownum and level pseudo columns?
Latest Answer: The only difference between rownum and level pseudocolumn isRownum is used to
order the datas according to their ranks and it is used in inline views..Level pseudocolumn is used in
hierarchial retrival ofdatabase..... ...
Create a query that will display the total no.of employees and, of that total, the no.of employees hired
Create a query that will display the total no.of employees and, of that total, the no.of employees hired
in 1995, 1996, 1997, and 1998. create appropriate column headings.
Create a matrix query to display the job, the salary for that job based on department number and the
Create a matrix query to display the job, the salary for that job based on department number and the
total salary for that job, for departments 20,50,80, and 90,giving each column and appropriate heading.
Create a query that will display the total no.of employees and, of that total, the no.of employees hired
Create a query that will display the total no.of employees and, of that total, the no.of employees hired
in 1995,1996,1997, and 1998. create appropriate column headings.
Write a query that displays the difference between the highest and lowest salaries. Label the column
Write a query that displays the difference between the highest and lowest salaries. Label the column
DIFFERENCE.
Write a query to display the no.of people with the same job
Latest Answer: SELECT job, count(*) AS no.ofemployee FROM emp GROUP BY job; ...
Create a query that display the last name,hire date and the day of the week on which the employee
started.
Create a query that display the last name,hire date and the day of the week on which the employee
started. Label the column DAY. Order the results by the day of the week starting with
Monday.LAST_NAME HIRE_DATE DAYGrant 24-MAY-99 MONDAYErnst 21-MAY-99 TUESDAYMourgos
16-NOV-99 TUESDAY------- ----- SUNDAY
I want to try create the database from my script which i made.can help me how to run a script. can
explain
I want to try create the database from my script which i made.can help me how to run a script. can
explain me step by step because i am a starter.thank's
What is synapshot?
Latest Answer: Database snapshot is a read-only view of a database. It is taken from the source
database and resides on the same server as the database. A snapshot uses a sparse file to store original
pages from the source database. A sparse file is empty when a snapshot ...
Latest Answer: Sequence is used to generate numbers which can be stored in tables. View does not have
data of its own and is generally used to query data. So sequence can not be created to a view. ...
What is the maximum number of columns in a table in Oracle?What is the maximum number of
canvases in
What is the maximum number of columns in a table in Oracle?What is the maximum number of
canvases in a form in forms 6i an forms 9i?
Hello, I have problem with this RecordSet. Do not open with "select distinct". Why?Without
Hello, I have problem with this RecordSet. Do not open with "select distinct". Why?Without "distinct"
recorset is opened without problems.Private Sub Command1_Click()Dim Cnn As New
ADODB.ConnectionDim rs As New ADODB.RecordsetDim CadOracle As StringDim CadSql As
StringCadOracle = "DSN=Oracle;UID=RECAUDA;PWD=xxxx;DBQ=orcl"Cnn.Open CadOracleCadSql =
"select distinct NOMBRE_MUNI_SUJ from paddgc53"rs.Open CadSql, Cnn, adOpenKeyset,
adLockOptimistic, adCmdTextWhile
I hav oracle 9i installed on my server, and I am fireing a query as followsSelect distinct divisioncode
I hav oracle 9i installed on my server, and I am fireing a query as followsSelect distinct divisioncode from
Mdivision Order By DivisionCodeWhen I fire this query in sql plus, it runs and give me results.but when I
fire it thru asp script as follows rsDiv.Open sql,conn,3,1 while traversing thru the recordset on line if not
rsDiv.EOF thenit is giving me following errorADODB.Recordset (0x800A0E78)Operation is not allowed
when the object is closed.Pl. help me a.s.a.p.
LGWR have to wait because checkpoint not complete so remove this error increase DBWn.Explain how
DBWn
LGWR have to wait because checkpoint not complete so remove this error increase DBWn.Explain how
DBWn related to LGWR?
Latest Answer: What's the Difference between COM and DCOM?Obviously, the difference is that DCOM
is distributed but COM is not. To be more precise, there are three main elements added to COM: The
way for creating a remote object. The way for accessing a remote object. ...
What is Pro*C? What is OCI?
Latest Answer: Pro *C is a Oracle database pre-compiler. It acts as a database connectivity. We can also
embed the SQL statement within C or C++ programming code which will execute successfully. ...
In Oracle varchar2 takes dynamic space for storage then why char is still in oracle?
Latest Answer: Of course Varchar2 is there to maintain variable length of columns. It keeps an internal
pointer to maintain Variable length that means it wastes two bytes to keep first and last index where
column starts and Calculates for each DML operation against ...
What is the difference between primary key, unique key, surrogate key?
Latest Answer: Primary Key & Unique Key1.))) P_key - A column in a table whose values uniquely identify
the rows/tuple/entry of the table. A primary key value cannot be NULL. U_key - A column in a table
whose values uniquely identify the rows/tuple/entry of the ...
SQL INTERVIEW QTS:
There is a table with pluks and zinks. Each pluk only resides on a single zink and each zink may contain
multiple pluks. How do you find how many pluks are on each and every zink?
Data Conversion
Have 2 table Emp1 (Column Name: Ename), 2nd table Emp2 (Column Name: First and Column Name:
LastTable Name :Emp1ENameHunt, MichaelGraham, SmithNelson, Ryan Table Name: Emp2First
LastMichael HuntSmith GrahamRyan NelsonNeed
Latest Answer: CREATE TABLE emp2 as SELECT (SUBSTR(ename,instr(ename,',')+2) ||' '
|| SUBSTR(ename,0,instr(ename,',')-1)) ename FROM testSujit ...
Latest Answer: You can perform any DML operations in dual table provided that you have been given
the privilege to do so.However never try to perform any DML operations (delete/insert/update) in dual
table because dual is basically used to work with scalar query. If ...
Analytical Function
WE using Last_value()analytical function but the result do not match according to me?
Latest Answer: Analytical function are the builtin function in Oracle, so during execution it will be faster
then other simple function. These function are basically used for reporting and most of the time to
improve performance of your query. Oracle have lot of analytical ...
Replace and Translate
How and in what way REPLACE is different from TRANSLATE?
Latest Answer: Translate does character by character substitution,where replace can substitute a singele
character with a word ...
How to add new column in the existing table at our desired location?
Latest Answer: Syntax:--------Alter table add after ;Example:-----------Alter table employee add age int
after emp_name; ...
SET Operator
What is a SET operator? What are the types what is the difference between SET operators and JOINS?
Latest Answer: SET operators are used to combine similar type of data from two or more tables. The no
of columns and their data type must be same in all the queries. The column names from the first query
will appear in the result.UNION ...
Latest Answer: SQL tuning is the process of ensuring that the SQL statements that an application will
issue will run in the fastest possible time ...
Question is been asked in the interview., I have table Department with details likeDeptId Dname
Question is been asked in the interview., I have table Department with details likeDeptId Dname
Dlocation10 Finance Del20 Sales Mum30 Marketing BloreThe output should be in this format 10 20
30Finance Sales Marketing Del Mum BloreThe query I need in SQL not using any transformation.Can
anyone help me out in this ?
Why order by clause maintains column number values instead of column names ?
Latest Answer: The column numbers are used so that you can do the order by without keying in all the
column names in the order by clause. For eg.select empno, ename from emp order by empno; -- qry
1could be replaced byselect empno, ename from emp order ...
Can you use a reference cursor as an input parameter in a procedure with out declaring it explicitly?
Can you use a reference cursor as an input parameter in a procedure without declaring it explicitly?
Latest Answer: A centralized database has all its data at one place so there may occur problems of data
avalability, and a system crash may lead to whole dataloss. In a distributeddatabase, database is stored
on several computers and they communicates using networks. ...
Display the emploee records who joins the department before their manager?
Latest Answer: This means that the employee does not have any manager.Select e.empno,e.ename
From emp e,emp m where m.empno(+)=e.mgrid;orSelect e.empno,e.ename From emp e left outer join
on emp m where m.empno=e.mgrid; ...
Dispaly employee records who gets more salary than the average salary in their department?
Latest Answer: select * from employe where salary > ( select avg(salary) from dept,employe where
dept.deptno = employe.deptno); ...
In a table a column is having value like 'Steven Kovy'. without using concat() function and
In a table a column is having value like 'Steven Kovy'. without using concat() function and concatenate
operator "||" how to display like 'Kovy Steven'
Why is insert faster than delete?Which indexing technique works best for Oracle based database?
Latest Answer: though theyare different things but still actualy what happens if we are deleting any
records oracle have to search the values which we are deleting from the tablespaces,indexes etc. but
while we are inserting any record oracle just place ...
How to give select privilege on all the objects owned by an user(say user1) to another user say(user2)
How to give select privilege on all the objects owned by an user(say user1) to another user say(user2)
using a single sql statement?
What is the difference between SQL standard joins and Oracle propreitary joins
Latest Answer: The Oracle9i database offers join syntax that is SQL: 1999 Compliant. Prior to release 9i,
the join syntax was different from the ANSI standards. The new SQL: 1999 Compliant join syntax does
not offer any performance benefits over the Oracle proprietary ...
Explain the differences between cost-based optimizer and Rule-based optimizer ? Why DB2, Sybase is
cost
Explain the differences between cost-based optimizer and Rule-based optimizer ? Why DB2, Sybase is
cost based and SQL, Oracle are Rule Based Optimisers ?
List all the employees who have atleast one person reporting to themList the employee details if and
List all the employees who have atleast one person reporting to themList the employee details if and
only if more than 10 employees are presently in department 10
What are the privileges that view does not have as compared to normal table?
Latest Answer: We can't select next value and current value from views. ...
Latest Answer: subquery allowed that depends on no of values returned by sub queryyes :-) ...
How to compare the total salary of all employee with a individual employee salary for a particular
department.
How to compare the total salary of all employees with an individual employee salary for a particular
department.
How to add positive and negative numbers in a single column and output them to two different columns
How to add positive and negative numbers in a single column and output them to two different columns
There is a table Table_A contains 4 feilds col1, col2, col3, col4 having values a, b, c, d as values
There is a table Table_A contains 4 feilds col1, col2, col3, col4 having values a, b, c, d as values
respectively. What will be the code if someone wants to update a with b, b with c, c with d and d with a?
There are 10 rows in Table A and 0 Rows in table B. Select * from A,BHow many rows will be retrieved.
There are 10 rows in Table A and 0 Rows in table B. Select * from A,BHow many rows will be retrieved.
10 rows
You have EMP and dept table .how do you get the entire department and corresponding employee
details
You have EMP and dept table .how do you get the entire department and corresponding employee
details and the department which are not alloted it?what is referential integrity constraint?wat is
triggers,stored procedures,stored functions explain with examples
I have a table with a column city. The values are “delhi” and “hyderabad”.
I have a table with a column city. The values are “delhi” and “hyderabad”. I need to update Hyderabad
with delhi and delhi with Hyderabad. Define a query for that
How do you create our own schema? which privileges are required?
Latest Answer: Hi All,A Schema in oracle is a logical representation of all the Oracle objects owned by a
user.To make my explanation simpe , let me give an example.Let's say you own a bike, a computer,
mobile. Now all these articles owned by you collectively is called ...
What is difference between sub query and correlated sub query, Give the example for this.
Latest Answer: subquery : returns value to main query. it wont get values from main query. Example:
SELECT id "Emp #" First_name "Name" salary "Salary" ROWNUM rank FROM (SELECT id first_name
salary FROM employee ORDER BY salary); corelated ...
How do i get Greatest salaray of dept group from emp and dept?we have to tables EMP and DEPT. for
exp:
How do i get Greatest salaray of dept group from emp and dept?we have to tables EMP and DEPT. for
exp: dept 10 have 10000,dept 20 have 5000 and dept 30 have 15000 salaries, i need dept 30 group
salary(means sum of that group is 15000).
When i write the following program, i am getting error like: DECLARE vInHandle UTL_FILE.file_type;
When i write the following program, i am getting error like: DECLARE vInHandle UTL_FILE.file_type;
vNewLine VARCHAR2(250); BEGIN vInHandle := UTL_FILE.Fopen ('D:', 'new.txt', 'R'); LOOP BEGIN
UTL_FILE.get_line(vInHandle, vNewLine); dbms_output.put_line(vNewLine); END; END LOOP;
UTL_FILE.fclose(vInHandle); END; Error:-DECLARE*ERROR at line 1:ORA-29280: invalid directory path
ORA-06512: at "SYS.UTL_FILE", line 18 ORA-06512:
Can anybody provide me some common and normal scenario based questions during interveiw.
Latest Answer: what is cursor ?how many type?what is the diffrence ?what is exception?diffrence
between function & procedurelike wise you can prepare your own questions. ...
How to find Nth largest or Nth smallest data from oracle table, for ex..5th highest salary from employees
How to find Nth largest or Nth smallest data from oracle table, for ex..5th highest salary from employees
Create a query that displays the employees' last names and commision amounts.If an employee does
Create a query that displays the employees' last names and commision amounts.If an employee does
not earn commmission, put "No Commission." Label the column COMM.
What is the internal structure of database and how sql is related with it?
Latest Answer: Very Simple question! But should be explained a lot.Databse data is stored in data_file's
of the databse. For every table's data some space from the data_files would be allocated. This space is
known as data segment. Say, you have a table named EMP. There could ...
Write query for the following questions1. sql query for selecting alternate rows in a table2. sql query
Write query for the following questions1. sql query for selecting alternate rows in a table2. sql query for
deleting alternate rows in a table
1) how many number of tables we can join in join concepts?is there any limitation?i think its not...2)
1) how many number of tables we can join in join concepts?is there any limitation?i think its not...2)
since joins and subqueries are used for same purpose , why we have two things.is there any need
On index why u need indexing ? where that is stroed and what u mean by schema object?for what
purpose
On index why u need indexing ? where that is stroed and what u mean by schema object?for what
purpose we are using view
Latest Answer: hii am shailendraits my opinionoracle is based on RDBMS. its follow the 10-11 rules in Dr.
E.F.Codd but SQL Server is based on RDBMS. its follow the only 7-9 rules in Dr. E.F.Codd. ...
How to retrieving the data from 11th column to n th column in a table.
Latest Answer: declare @a varchar(1000),@tblname varchar(100),@b nvarchar(1000)declare @startcol
int,@i int, @endcol intselect @startcol = 11, @endcol =13, @a='', @tblname = ''select @a = sc.name + ','
+ @a from ...
Difference between decode and case.in which case we are using case and in which case we are using
decode?with
Difference between decode and case.in which case we are using case and in which case we are using
decode?with an example.
What is the result ofselect * from table1, table2there is a common column between them but no where
What is the result ofselect * from table1, table2there is a common column between them but no where
caluse has been specified
How do we restrict the insert/ updates on the foreign column in a table if that table is in different
How do we restrict the insert/ updates on the foreign column in a table if that table is in different
instance that the table with Primary Key. Say for Example Emp and Dept Table. We have deptno in both
tables and Deptno in Emp table is the Primary Key and other is foreign Key. How do we control what
values we insert in Dept table if both the tables are not in the same instance.
SQL Queries- Say for Eg.Two Tables - EMP and DeptEMP Tables consist of Empno, Deptno, Mgrid,
Empname,
SQL Queries- Say for Eg.Two Tables - EMP and DeptEMP Tables consist of Empno, Deptno, Mgrid,
Empname, LocationDept Table Consist of Deptno, Deptname.1. Write a query to select Department
name for which there is more that 20 employees in a specific Department. List the deptname and no of
employees.Deptno in Emp table is the primary key for deptno column in Dept Table.2. Write a query to
select Manager name for each employee. MGRID column in the emp table is the empid of the Manager.
There should
What are the advantages and disadvantages of View?
Latest Answer: View based on multiple tables are up-datable using INSTEAD OF triggers. ...
Can one use dynamic SQL statements from PL/SQL?How can I use a variable for the columns/tables in
the
Can one use dynamic SQL statements from PL/SQL?How can I use a variable for the columns/tables in
the select statements?
OLAP INTERVIEW QTS
Multidimensional Cube
How to create a report with different objects can be seen at different countries not all the objects
How to create a report with different objects can be seen at different countries not all the objects can
be seen by all the countries people?
How to create a report with objects that can seen by one country and some objects can be seen by
another
How to create a report with objects that can seen by one country and some objects can be seen by
another country people using business object ?
What is the difference between ETL tool and OLAP tool? What are various ETL in the market? What are
What is the difference between ETL tool and OLAP tool? What are various ETL in the market? What are
various OLAP tools? what is the future for both for next five years?
How to enable security in cognos connection in cognos report net?
Latest Answer: You can imlement security via your Windows NT system accounts, LDAP accounts for
Cognos connection. To do this configure the desired Security section in the Cognos Configuration. ...
What is the difference between Data Warehouse and online Analytical Processing?
Ralph Kimball the co-founder of the data warehousing concept has defined the data warehouse as a “"a
copy of transaction data specifically structured for query and analysis”. Both definitions
Latest Answer: OLAP--- Using the online entered data is used for analytical processing.Data warehouse is
the place where the data will pulled and kept in one place which will not change frequently and is also
used for analytical processsing. ...
A data cube stores data in a summarized version which helps in a faster analysis of data. The
data is stored in such a way that it allows reporting easily................
Data Sources
Data source is where the data comes from in data warehousing. The data collected from
various sources and is cleaned..............
Fact Tables
Data in a warehouse comes from the transactions. Fact table in a data warehouse consists of
facts and/or measures. The nature of data in a fact table is usually numerical. e.g. If I want to
know the number..............
Database roles
Database level roles are used to manage the security of the database. The role can be either
fixed or flexible...............
Online analytical processing performs analysis of business data and provides the ability to
perform complex calculations on usually low volumes of data. OLAP helps the user gain an
insight on the data..............
Multidimensional analysis:- OLAP helps the user gain an insight on the data coming from
different sources. OLAP helps faster execution of complex analytical and ad-hoc
queries...............
What are MOLAP and ROLAP?
Multidimensional Online Analytical Processing and Relational Online Analytical Processing are
tools used in analysis of data which is multidimensional..................
Bitmap indexes are useful in connecting smaller databases to larger databases. Bit map indexes
can be very useful in performing repetitive indexes..............
For each distinct value, one bitmap is used. The number of bitmaps can be reduced using log(C)
bitmaps with to represent the values in each bin................
What is Binning?
Binning can be used to hold multiple values in one bin. Bitmaps are then used to represent the
values in.............
Binning process when creates the binned indexes, answers only some queries. The base data is
not checked. The process of checking the base data is called as a candidate check. Candidate
check at times.............
In a Hybrid OLAP, the database gets divided into relational and specialized storage. Specialized
data storage is for data with fewer details while relational storage can be used for large amount
of data..............
OLAP product by default is read only. If multiple access rights are required, admin needs to
make necessary changes..................
Compare Data Warehouse database and OLTP database.
Data Warehouse is used for business measures cannot be used to cater real time business
needs of the organization and is optimized for lot of data, unpredictable queries. On the other
hand, OLTP database is for.................
ETL is the process of Extracting, loading and transforming data into meaningful form. This data
can be used by the OLAP tool for to visualize data in different forms. ETL tools also perform
some cleaning of data..................
Data driven Decision support system is used to access and manipulate data. Data Driven DSS in
conjunction with On line Analytical Processing............
DATA WAREHOUSING QTS
Answer - A data warehouse can be considered as a storage area where interest specific or relevant
data........
Answer - As mentioned, data in a warehouse comes from the transactions. Fact table in a data warehouse
consists........
Answer - Data warehousing is merely extracting data from different sources, cleaning the........
Answer - OLTP: Online Transaction and Processing helps and manages applications based........
Answer - A data cube stores data in a summarized version which helps in a faster analysis of data..........
Answer - Analysis service provides a combined view of the data used in OLAP.........
Answer - Sequence clustering algorithm collects similar or related paths, sequences of data.........
Answer - Time series algorithm can be used to predict continuous values of data.......
What is XMLA?
Answer - XMLA is XML for Analysis which can be considered as a standard for accessing data in OLAP.......
Answer - Data Warehousing helps you store the data while business intelligence.....
Answer - Fact less tables are so called because they simply contain........
Answer - A snow flake schema design is usually more complex than a start schema.....
Answer - A data cube stores data in a summarized version which helps in a faster analysis............
Answer - In scenarios where certain data may not be appropriate to store in....
What are fundamental stages of Data Warehousing?
The transactional data captured and reposited in the Active Data Warehouse......
List down differences between dependent data warehouse and independent data warehouse.
What is data modeling and data mining? What is this used for?
The dimensions that are persisted in the fact table is called dimension table.........
Metadata describes about data. It is ‘data about data’. It has information about how and
when......
Describe the various methods of loading Dimension tables.
The following are the differences between OLAP and data warehousing......
Describe the foreign key columns in fact table and dimension table.
The primary keys of entity tables are the foreign keys of dimension tables.......
A transformer built set of similar cubes is known as cube grouping. A single level in one
dimension......
Slowly changing dimension target operator is one of the SQL warehousing operators......
Star Schema: A de-normalized technique in which one fact table is associated with several
dimension tables.......
The combination of real-time activity and data warehousing is called real time warehousing.......
The facts that can not be summed up for the dimensions present in the fact table are called
non-additive facts.......
Statistical Analysis System is an integration of various software products which allows the
developers to perform.......
Data cleaning is also known as data scrubbing. Data cleaning is a process which ensures the set
of data is correct and accurate......
A column (usually granular) is called as critical column which changes the values over a period
of time.......
Data cube is a multi-dimensional structure. Data cube is a data abstraction to view aggregated
data from a number of perspectives........
Data Scheme is a diagrammatic representation that illustrates data structures and data
relationships to each other in the relational database within the data warehouse................
Bitmap indexes make use of bit arrays (bitmaps) to answer queries by performing bitwise
logical operations..................
What is Bi-directional Extract?
In hierarchical, networked or relational databases, the data can be extracted, cleansed and
transferred in two directions. The ability of a system to do this is refered to as bidirectional
extracts................
Data collection frequency is the rate at which data is collected. However, the data is not just
collected and stored. it goes through various stages of processing like extracting from various
sources, cleansing, transforming and then storing in useful patterns................
Cardinality is the term used in database relations to denote the occurrences of data on either
side of the relation................
In Chain Data Replication, the non-official data set distributed among many disks provides for
load balancing among the servers within the data warehouse...............
Key areas of activity in which favorable results are necessary for a company to reach its goal.
There are four basic types of CSFs which are: ...............
A data warehouse can be considered as a storage area where interest specific or relevant data
is stored irrespective of the source. What actually is required to create a data warehouse can
be............
What is Virtual Data Warehousing?
A virtual data warehouse provides a collective view of the completed data. A virtual data
warehouse has...........
Stages of a data warehouse helps to find and understand how the data in the warehouse
changes. At an initial stage of data warehousing data of the transactions is merely copied to
another server. Here, even if the copied data is processed for reporting, the source data’s
performance won’t be affected..............
An active data warehouse represents a single state of the business. Active data warehousing
considers the analytic perspectives of customers................
What is data modeling and data mining? What is this used for?
Data Modeling is a technique used to define and analyze the requirements of data that
supports organization’s business process. In simple terms, it is used for the analysis of data
objects in order to...........
The entity-relationship model is a method used to represent the logical flow of entities/objects
graphically that in turn create a database. It has both logical and physical model. And it is good
for reporting and point queries..............
Data warehousing relates to all aspects of data management starting from the development,
implementation and operation of the data sets. It is a back up of all data relevant to business
context i.e. a way of storing data.............
Describe dimensional Modeling.
Dimensional model is a method in which the data is stored in two types of tables namely facts
table and dimension table. Fact table comprises of information to measure business successes
and the............
Snapshot refers to a complete visualization of data at the time of extraction. It occupies less
space and can be used to back up and restore data quickly...............
Business object interview questions
A business object can be used to represent entities of the business that are supported in the
design. A business object can accommodate data and the behavior of the business associated
with the entity.....................
Read answer
Business objects in business intelligence are entities of the business. COGNOS makes BI and
performance planning software...............
Read answer
A universe connects the client to the data warehouse. It is a file defining relationships amongst
the tables in the warehouse, classes and objects, database connection details...............
Read answer
Security domain in business objects is a domain containing all security information like login
credentials etc. It checks for users and their privileges..................
Read answer
Batch processing can be used to schedule reports. Objects can be also be used for batch
processing. Batch processing can be used to also select the objects to be processed.................
Read answer
What are the functional & architectural differences between business objects and Web Intelligence
Reports?
Functional differences - Business objects, for building or accessing reports, needs to be installed
on every pc. On the other hand, Web intelligence reports needs a browser and a URL of the
server from where Business...................
Read answer
Slicing and dicing of business objects is used for a detailed analysis of the data. It allows
changing the position of data by interchanging rows and columns.............
Read answer
Object qualification is an attribute of an object that helps to determine how it can be used in
multidimensional analysis.............
Read answer
What is BOMain.Key?
A BOMain.key file contains all relevant information about the repository. It contains the
address of the repository security domain..................
Read answer