up vote 2 down vote favorite
share [g+] share [fb]

What is a DDL script in the context of databases?

link|improve this question
1  
Needs more explanation. – TuxGeek Sep 12 '09 at 10:49
feedback

1 Answer

DDL = Data Definition Language

From the Wikipedia entry for DDL:

A Data Definition Language (DDL) is a computer language for defining data structures. The term was first introduced in relation to the Codasyl database model, where the schema of the database was written in a Data Definition Language describing the records, fields, and "sets" making up the user Data Model. Initially it referred to a subset of SQL, but is now used in a generic sense to refer to any formal language for describing data or information structures, like XML schemas.

So, for databases, a DDL script is a script that creates the structure (tables, columns, indexes, ...) of a database.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown