What is the difference between base table and view?

Answers were Sorted based on User's Feedback



What is the difference between base table and view?..

Answer / ashok

base table has physical existence, whereas views r virtual
tables

Is This Answer Correct ?    38 Yes 2 No

What is the difference between base table and view?..

Answer / bhushan

Base table is the Physical table and views are the virtual
tables where its physical existence will not be there.

Is This Answer Correct ?    21 Yes 2 No

What is the difference between base table and view?..

Answer / papal dabar

views are depandent on base table

Is This Answer Correct ?    15 Yes 0 No

What is the difference between base table and view?..

Answer / sunanda

Views:
1. This is one type of relation which is not a part of the
physical
database.
2. It has no direct or physical relation with the database.
3. Views can be used to provide security mechanism.
4. Modification through a view (e.g. insert update delete)
generally
not permitted

Base Relation:
1. A base relation is a relation that is not a derived relation.
2. While it can manipulate the conceptual or physical
relations stored
in the data.
3. It does not provide security.
4. Modification may be done with a base relation.

We can assign the view a name & relate it the query
expression as
Create View <View Name> as <Query Expression>
Let EMPLOYEE be the relation. We create the table EMPLOYEE
as follows:-

Create table EMPLOYEE
(Emp_No integer of null
Name char (20)
Skill chars (20)
Sal_Rate decimal (10 2)
DOB date
Address char (100) )
For a very personal or confidential matter every user is not
permitted to see the Sal_Rate of an EMPLOYEE. For such users
DBA can
create a view for example EMP_VIEW defined as:-

Create view EMP_VIEW as
(Select Emp_No Name Skill DOB Address
From EMPLOYEE)

Is This Answer Correct ?    13 Yes 2 No

What is the difference between base table and view?..

Answer / ankit

base tables have physical table which does havefacility to
select any condition and save but view is part of a base
table but diffrence is in view we can select columns and
rows using conditions in view creating

Is This Answer Correct ?    8 Yes 2 No

What is the difference between base table and view?..

Answer / priya

using views complex queries can be solved easily
as it provides multiple table join facility

Is This Answer Correct ?    2 Yes 0 No

What is the difference between base table and view?..

Answer / baalu

hi,
tanx to ashok and bush.
this is baalu

Is This Answer Correct ?    2 Yes 8 No

Post New Answer

More DB2 Interview Questions

How do you eliminate duplicate values in db2?

0 Answers  


What is check constraint. Explain with example.

0 Answers  


Mention the location where the output received from explain statement is stored.

0 Answers  


Assuming that a site's standard is that pgm name = plan name, what is the easiest way to find out which Will precompile of an DB2-COBOL program bomb, if DB2 is down?

1 Answers  


how to fetch first 100 rows in db2

2 Answers   IBM,






What is check constraint in db2?

0 Answers  


Where to download IBM DB2 Certification Dumps for the below: C2090-311 : IBM DB2 10.5 DBA for LUW Upgrade from DB2 10.1 C2090-312 : IBM DB2 11 DBA for z/OS C2090-313 : DB2 11 Application Developer for z/OS C2090-317 : DB2 11 System Administrator for z/OS C2090-541 : DB2 9.7 DBA for Linux UNIX and Windows C2090-543 : DB2 9.7 Application Development C2090-544 : DB2 9.7 Advanced DBA for LUW C2090-545 : DB2 9.7 SQL Procedure Developer C2090-546 : DB2 9.7 Database Administrator for Linux UNIX or Windows Upgrade C2090-610 : DB2 10.1 Fundamentals C2090-611 : DB2 10.1 DBA for Linux, UNIX, and Windows C2090-612 : DB2 10 DBA for z/OS C2090-614 : DB2 10.1 Advanced DBA for Linux UNIX and Windows C2090-615 : DB2 10.5 Fundamentals for LUW C2090-617 : DB2 10 System Administrator for z/OS C2090-730 : DB2 9 Family Fundamentals C2090-733 : DB2 9 Application Developer C2090-735 : DB2 9.5 SQL Procedure Developer C2090-737 : DB2 9 System Administrator for z/OS Exam

1 Answers   Mphasis,


what is dynamic cursor?gives syntax for this?

1 Answers   TCS,


How would the varchar column remarks defined?

0 Answers  


What if we fail to give values in columns declared as NOT NULL ?

3 Answers   Cap Gemini,


What is the difference between group by and order by?

2 Answers   IBM, TCS,


What is a LIKE table and how is it created?

2 Answers  


Categories