answersLogoWhite

0


Best Answer

data dictionary

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: When creating database with a DBMS you must create a description of the data called?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Information Science

What is a database that has no data and has no database tools in which you create the data and the tools as you need them is reffered to as a?

Blank Database


What is DDL in databases?

DDL stands for Database Definition Language. It is a language used to create a database. Most databases have a language that will do this. Normally it is a form of SQL (Structured Query Language).DDL stands for Database Definition Language. It is a language used to create a database. Most databases have a language that will do this. Normally it is a form of SQL (Structured Query Language).DDL stands for Database Definition Language. It is a language used to create a database. Most databases have a language that will do this. Normally it is a form of SQL (Structured Query Language).DDL stands for Database Definition Language. It is a language used to create a database. Most databases have a language that will do this. Normally it is a form of SQL (Structured Query Language).DDL stands for Database Definition Language. It is a language used to create a database. Most databases have a language that will do this. Normally it is a form of SQL (Structured Query Language).DDL stands for Database Definition Language. It is a language used to create a database. Most databases have a language that will do this. Normally it is a form of SQL (Structured Query Language).DDL stands for Database Definition Language. It is a language used to create a database. Most databases have a language that will do this. Normally it is a form of SQL (Structured Query Language).DDL stands for Database Definition Language. It is a language used to create a database. Most databases have a language that will do this. Normally it is a form of SQL (Structured Query Language).DDL stands for Database Definition Language. It is a language used to create a database. Most databases have a language that will do this. Normally it is a form of SQL (Structured Query Language).DDL stands for Database Definition Language. It is a language used to create a database. Most databases have a language that will do this. Normally it is a form of SQL (Structured Query Language).DDL stands for Database Definition Language. It is a language used to create a database. Most databases have a language that will do this. Normally it is a form of SQL (Structured Query Language).


What is a query used for on a database?

query is a measure used in a programming language viz. SQL to create, delete, store, modify the database.


When you create a database you define its that is you assign names and types to all the fields?

if you plan to move your database to an sql server at a later date, use multivalued fields


What are the differences between a data administrator and a database administrator?

Depending on the company, they could be the same. But, if they are different, here is the difference:A data administrator is one who oversees the data integrity of the database. They do not create objects and they may not have privileges to do anything other than "view" the data and report any data discrepencies to the database administrator(one who administers the entire database). The data administrator can check data in the tables to make sure there are no errors, can check to see if tables that need an index have one, are all programs valid--stuff like that. The database administrator is usually busy with fixing problems, creating tablespaces, tables, looking at error messages.

Related questions

What are the factors are considering to create database?

Flexibility,powerful performance and scalability are some of the factors to consider when creating a database.


When you create a new database which object first in Access?

You start by creating a table.


What object must be created first when creating a database file?

To use the module, we need to create a connection object that represents the database, it needs to have a username, password, and host. Here are the steps to create a database: open Microsoft access, create a new database, save the file, and browse the new database menu.


Database Design Software?

form_title=Database Design Software form_header=Create your own database with software help from the experts! Are you creating a new database or modifying an existing one?= {(),Creating a New Database,Modifying an Existing One,Both,Not Sure} Will you need ongoing support for the database and the software?= () Yes () No () Not Sure Will the database be used in-house?= () Yes () No () Not Sure When do you want to begin creating the design?=_


How do you design forms in object oriented database?

A database is about storing data, not about creating forms. You would create the forms in some programming language - NOT something directly related to the database server - than have your forms, or rather your program in general, connect to the database.


How do you create a MySQL database on the server?

Here is how you establish connection to mysql server & create a database in mysql <?php // Note that username, client host & passwords may vary $host = "localhost"; $user = "root"; $password = ""; $con = mysql_connect($host,$user,$password); if(!$con) { // Warns for connection failure die("Failure in establishing connection: ".mysql_error()); } $db = "CREATE DATABASE employees"; // Use any name for database $create = mysql_query($db, $con); if(!$create) { echo "Error creating database: ".mysql_error(); } ?>


What sort of tasks might be required soon after the initial creation of a database?

After creating a database make sure that it is sorted as per the requirement.Select a suitable database management system.(software to create,update,querying,administration and updation of data bases.)Create a databse model that can be used for suitable applications.


How can one create a database in Windows Vista?

Creating databases in Windows Vista can be easy or it can be complex. Microsoft offers programs that can assist with creating databases, and there are programs such as WordPress that can assist also.


How database created?

Database can be created using any of the following commands in DML (Data manipulation language). Create - for creating table ,insert - for inserting values , Update - for updating table etc.


Is there any other software available to create a database than Microsoft Excel?

While you can create them with it, Microsoft Excel's main use is not for creating databases, but for creating spreadsheets. Microsoft Access is the main Microsoft product for creating databases. There are also many other applications that you can create databases with too, like Oracle, Open Office, or MySQL


True or false the first step in creating a database is to create the file that will hold the database objects?

False, the very first step is to clearly describe what the database is to be used for. Many databases are built on what the programmers want the DMS not what the users of the DMS want done


How do you create a supermarket database where a person can check on the price of the available products?

Assume that you are creating a database table to hold the information of the Items in the Super market. Write down the data type suitable to hold the following information: a) Item Number b) Item Description c) Unit Price d) Stock Balance e) Reorder Level f) Store Location