preview

Describe The Types Of Facilities For A Multi User Dbms

Satisfactory Essays

1. Describe the types of facility you would expect to be provided in a multi-user DBMS
Ans. Data Storage, Retrieval and Update Authorization Services A User-Accessible Catalog Support for Data Communication Transaction Support Integrity Services Concurrency Control Services Services to Promote Data Independence Recovery Services Utility Services

2. Discuss the differences between DDL and DML? What operations would you typically expect to be available in each language?
Ans. SQL stands for Structured Query Language. In practice, this is really a misnomer. SQL can do much more than query data – indeed, the language splits neatly into two parts. There is the Data Definition Language (DDL) section and the Data Manipulation Language (DML) section. The former is the part of the language that is used for creating (and/or destroying) database objects such as tables.
Here is an example of DDL code:
CREATE TABLE [dbo].[Customer]
(
[ID] [int] IDENTITY(1,1) NOT NULL, [FName] [varchar](20) NULL, [LName] [varcharint](20) NULL, [DateOfBirth] [datetime] NOT NULL,

And so on. You can add (within reason) as many columns to the table as you like.
DML statements aren 't used to create data structures (or destroy them); they are used to manipulate the data. An example is a SELECT statement:
SELECT ID, FName, LName, DateOfBirth
FROM Customer;

3. Name four object-based data models.
Ans. Entity-Relationship
Object Oriented Semantic
Functional
4. What is a

Get Access