answersLogoWhite

0


Best Answer

A data dictionary is a collection of metadata about the data elements in a database, where as, a database schema is a design blueprint for how data is structured and organized within a database. The data dictionary describes the data, while the schema defines how the data is stored.

User Avatar

AnswerBot

4w ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

11y ago

DATABASE is a repository of data...... it is a place which holds the entire data together......

while DATA DICTIONARY defines the basis to distinguish the data....this can be in the form of tables, views

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is difference between data dictionary and database schema?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Difference between user and schema for DB2?

In DB2 Schema is not a user, its is just a space to store database objects,


What is a database schema?

A database schema is described in a formal language supported by the database management system (DBMS). In a relational database, the schema defines the tables, the fields in each table, and the relationships between fields and tables. Schemas are generally stored in a data dictionary. Although a schema is defined in text database language, the term is often used to refer to a graphical depiction of the database structure Levels of database schema 1. Conceptual schema, a map of concepts and their relationships 2. Logical schema, a map of entities and their attributes and relations 3. Physical schema, a particular implementation of a logical schema 4. Schema object, Oracle database object 5. Schema is the over all structure of the database


What is a document that describes database objects and their data types?

Describe what would happen if there were no data dictionary for a given database.


What is the difference between data model and schema in database?

As I understand it, a database schema is a physical entity, it describes the structure of exactly how the data is stored and is itself stored by DBMS for reference. Data model, on the other hand, is an abstract representation of database.


Difference between database schema and a database state in dbms?

The distinction between database schema and database state is very important. When we define a new database, we specify its database schema only to the DBMS. At this point, the corresponding database state is the empty state with no data. We get the initial state of the database when the database is first populated or loaded with the initial data. From then on, every time an update operation is applied to the database, we get another database state. At any point in time, the database has a current state. The DBMS is partly responsible for ensuring that every state of the database is a valid state-that is, a state that satisfies the structure and constraints specified in the schema. The DBMS stores the descriptions of the schema constructs and constraints-also called the meta-data-in the DBMS catalog so that DBMS software can refer to the schema whenever it needs to. The schema is sometimes called the intension, and a database state an extension of the schema.


What is schema object of database?

We know that schema in the database is refer to the basic design of that database and is stored in an object . That object is known as schema object of database.


What is the difference between catalog schema and database in SQL Server?

A catalog is simple a group of related schema collected together in a defined namespace. While schema is a group of one or more related object collected in a common namespace.


What is the data schema in a database?

Logical Structure of database is know as database schema. All database entities are defined and relation between then is represented in structured way. It includes all constraints to be apply on each identity.


What is the difference between schema and database?

Database schema are the logical structure of entities (tables or object classes) and their relationships (keys, or object associations) in a database. Schema can exist at different levels of abstraction (see: en.wikipedia.org/wiki/Database_schema). Schema themselves may or may not exist as such in a database. In general schema at the higher levels of abstraction are design models that are captured in printed documents, and authored by business analysts and database designers, rather than created by database programmers and stored in the database itself. But in some types of databases, schema at any level of abstaction can be realized physically. In Oracle databases, schema can be realized as schema objects, which are a part of an Oracle database. These schema objects may represent a human user's conceptual model of the knowledge captured in an enterprise database. Thus defined, there can be many schema that can be associated with one physical database. In other kinds of relational database, an abstract user's schema can be represented by logically linked metadata, views, and stored procedures assocated with a user class. In object-oriented databases, especially those based on the highly self-referential language Smalltalk (e.g. Gemstone/S), schema are realized as "physical" objects in the database as a matter of course, as well as in the logical models captured in design documents. The schema objects in such databases are, in essence, the classes comprising the infrastructure of the database or application. Oracle-style user schema are readily created; these would be realized as user interface orchestrator classes.


What are the Types of database schema architecture?

The Star & Snowflake are two common type of database Schema.


Functions of schema?

The schema (pronounced skee-ma) of a database system is its structure described in a formal language supported by the database management system (DBMS). In a relational database, the schema defines the tables, the fields, relationships, views, indexes, packages, procedures, functions, queues, triggers, types, sequences, materialized views, synonyms, database links, directories, Java, XML schema's and other elements.Schema's are generally stored in a data dictionary. Although a schema is defined in text database language, the term is often used to refer to a graphical depiction of the database structure.Hope this helps!Inclus - We provide indivdual and coporate trainingsEducate, Learn & Servewww.Inclus.net


What do you mean about schema in RDBMS?

In a relational database, the schema defines the tables, the fields in each table, and the relationships between fields and tables.