Tagged Questions

Data Definition Language is a subset of SQL that is focused on the definitions of the tables in the database, not the content of those tables. It is often restricted to database users with administrative privileges.

learn more… | top users | synonyms

15
votes
11answers
12k views

What is a good Visio Enterprise Architect replacement?

I've been using Visio 2002/2003 Enterprise Architect to do my database schema design visually and then forward-generate the DDL to create the database. I wanted to switch to Visio 2007, but while it ...
12
votes
7answers
30k views

How do I use CREATE OR REPLACE?

Am I correct in understanding that CREATE OR REPLACE basically means "if the object exists, drop it, then create it either way?" If so, what am I doing wrong? This works: CREATE TABLE foo (id ...
12
votes
14answers
9k views

ALTER TABLE without locking the table?

When doing an ALTER TABLE statement in MySQL, the whole table is read-locked for the duration of the statement. If it's a big table, that means insert or update statements could be locked for a ...
10
votes
5answers
11k views

MySQL terminology “constraints” vs “foreign keys” difference?

I'm looking at the MySQL docs here and trying to sort out the distinction between FOREIGN KEYs and CONSTRAINTs. I thought an FK was a constraint, but the docs seem to talk about them like they're ...
8
votes
1answer
229 views

Oracle: DBMS_UTILITY.EXEC_DDL_STATEMENT vs EXECUTE IMMEDIATE

Which are the differences between DBMS_UTILITY.EXEC_DDL_STATEMENT and EXECUTE IMMEDIATE?
7
votes
4answers
144 views

Java API for SQL Data Definition Language

Before I write one, is there a Java API for manipulating a database. Like an object orientated wrapper around java.sql.DatabaseMetaData, with support for things like Schema.createTable(name, columns)? ...
7
votes
1answer
4k views

How do I add a foreign key to an existing sqlite (3.6.21) table?

I have the following table: CREATE TABLE child( id INTEGER PRIMARY KEY, parent_id INTEGER, description TEXT); How do I add a foreign key constraint on parent_id? Assume foreign keys are ...
7
votes
3answers
2k views

Generate table DDL via query on MySQL and SQL Server

Is there an easy way to extract table DDL information, via a query, using either Ms or My SQL server? (preferably both?) For example, using MySQL Administrator / Navicat for MySql, there is a "DDL" ...
7
votes
3answers
9k views

Truncating a table in a stored procedure

When I run the following in an Oracle shell it works fine truncate table table_name But when I try to put it in a stored procedure CREATE OR REPLACE PROCEDURE test IS BEGIN truncate table ...
7
votes
4answers
10k views

MySQL Alter syntax to drop a column if it exists

What is the syntax to drop a column in a MySQL table, if that column exists on version 4.0.18?
6
votes
1answer
93 views

Remove tablespace info from Materialized View DDL

Using the following SQL, the DDL for a given materialized view can be obtained. BEGIN DBMS_METADATA.SET_TRANSFORM_PARAM(DBMS_METADATA.SESSION_TRANSFORM, 'STORAGE', FALSE); ...
6
votes
4answers
2k views

Is it possible to roll back CREATE TABLE and ALTER TABLE statements in major SQL databases?

I am working on a program that issues DDL. I would like to know whether CREATE TABLE and similar DDL can be rolled back in Postgres MySQL SQLite et al Describe how each database handles ...
6
votes
1answer
502 views

Oracle DDL in autonomous transaction

I need to execute a bunch of (up to ~1000000) sql statements on an Oracle database. These statements should result in a referentially consistent state at the end, and all the statements should be ...
6
votes
9answers
907 views

Versioning SQL Server DDL code

I'd like to have all DB DDL code under CVS. We are using Subversion for our .NET code. But all Database code remains still unversioned. All we know how important DB logic can be. I've googled ...
6
votes
3answers
2k views

SQL Server ALTER field NOT NULL takes forever

I want to alter a field from a table which has about 4 million records. I ensured that all of these fields values are NOT NULL and want to ALTER this field to NOT NULL ALTER TABLE dbo.MyTable ALTER ...
6
votes
4answers
4k views

Is it possible to run multiple DDL statements inside a transaction (within SQL Server)?

I'm wondering if it is possible to run multiple DDL statements inside a transaction. I'm specially interested on SQL Server, even though answers with other databases (Oracle, Postgre at least) could ...
6
votes
2answers
2k views

Setting the comment of a column to that of another column in Postgresql

Suppose I create a table in Postgresql with a comment on a column: create table t1 ( c1 varchar(10) ); comment on column t1.c1 is 'foo'; Some time later, I decide to add another column: alter ...
5
votes
1answer
75 views

How to minimize the coupling/dependency between physical DDL changes and PL/SQL changes?

We ran into a particular issue with our Oracle table definition (DDL) and in one of our PL/SQL scripts. The issue is, there was a change in the table, changing from varchar(20) to varchar(30), this ...
5
votes
3answers
1k views

Forcing Management Studio to use ALTER TABLE instead of DROP/CREATE

I'm wondering if is there a way to force MSSQL Management Studio to produce a script like this: ALTER TABLE Mytable ADD MyCol bit NOT NULL CONSTRAINT MyColDefault DEFAULT 0 WITH VALUES ALTER TABLE ...
5
votes
4answers
9k views

How do I get column datatype in Oracle with PL-SQL with low privileges?

I have read only access to a few tables in an Oracle database. I need to get schema information on some of the columns but i'm having trouble doing so. I'd like to use something analogous to MS SQL's ...
5
votes
4answers
6k views

Reverse engineer DDL from JPA entities

I'm playing around with some JPA stuff, changing the mappings to see how they're supposed to be etc. It's basic experimentation. However I can't find a tool that will simply read my entities and then ...
5
votes
2answers
2k views

How can I generate “migration” DDL from NHibernate mapping files?

I'm using NHibernate 2 and PostgreSQL in my project. SchemaExport class does a great job generating DDL scheme for database, but it's great until the first application. Is there any way to generate ...
4
votes
3answers
78 views

Oracle constraint to allow particular value once per foreign key value

Let's say I have a table parent with primary key id, and a table child with foreign key parent_id and a "boolean" column (constrained to a 0 or 1), let's call it is_initial. What I want to do is put ...
4
votes
2answers
56 views

shrinking a column in oracle

Lets say i have a table with the following definition create table dummy (col1 number(9) not null) All the values in this dummy.col1 are 7 digit long. Now i want to reduce the length of this column ...
4
votes
2answers
393 views

Oracle: DDL and transaction rollback

Could in Oracle DDL (create/alter) be transactional like they are in MS SQL (started from 2005)?
4
votes
1answer
74 views

In MySQL, with FKs what's “CONSTRAINT” do?

I've looked at the MySQL 5.1 docs, and still can't figured this out -- that being I noticed a difference between the code I input into MySQL and output code by the system. What is the difference ...
4
votes
2answers
672 views

SQL Server Conditional Foreign Key Constraints

I'm having trouble figuring out how to create a foreign key constraint. My data model is fixed and out of my control, it looks like this: CREATE TABLE Enquiry (Enquiry_Ref INTEGER PRIMARY KEY ...
4
votes
1answer
758 views

How do I DROP a constraint from a sqlite (3.6.21) table?

I have the following table: CREATE TABLE child( id INTEGER PRIMARY KEY, parent_id INTEGER CONSTRAINT parent_id REFERENCES parent(id), description TEXT); How do I drop the constraint? ...
4
votes
4answers
2k views

Generate DDL programmatically on Postgresql

How can I generate the DDL of a table programmatically on Postgresql? Is there a system query or command to do it? Googling the issue returned no pointers.
4
votes
1answer
3k views

How can I create a unique index in Oracle but ignore nulls?

I am trying to create a unique constraint on two fields in a table. However, there is a high likelihood that one will be null. I only require that they be unique if both are not null (name will ...
4
votes
2answers
1k views

Problem Changing Column Order in a Table (SQL Server 2008)

When I try to change this columns list: Nombre Imagen Descripcion Activo IdLineaProducto into this (IdLineaProducto is first) IdLineaProducto Nombre Imagen Descripcion Activo SQL Server ...
4
votes
3answers
2k views

How do you create a wide table in SQL Server 2008? and what are its limitations on use?

I was reading the Maximum Capacity Specifications for SQL Server and I came across the designation of a wide table. It's different from a standard table in that is can have as many as 30,000 columns ...
4
votes
1answer
2k views

How do you disable all table indexes in sql server compact edition via an SqlCeCommand Object?

I'm trying to do a huge bulk insert into an SqlCe database (version 3.5, oh and using C# 3). I've tried various ways of doing this (table adapter insert, a prepared parameterized query, sqlceresultset ...
4
votes
8answers
1k views

Best database independent SQL DDL utility?

I'm working on a project for the .net platform and would like to support multiple database types. I would like to keep the DDL under source control in a generic format then convert it to database ...
4
votes
7answers
2k views

Can anyone recommend a good SQL parsers?

I am trying to write a tool that can compare a database’s schema to the SQL in an install script. Getting the information from the database is pretty straightforward but I am having a little trouble ...
4
votes
2answers
545 views

How do I manage version control when developing with SQL Server Express?

I am developing a website using SQL Server Express on my development machine. My web hosting company is providing me with SQL Server 2005. At the moment all I have is a database that I develop with ...
4
votes
2answers
590 views

Wrap an Oracle schema update in a transaction

I've got a program that periodically updates its database schema. Sometimes, one of the DDL statements might fail and if it does, I want to roll back all the changes. I wrap the update in a ...
3
votes
2answers
134 views

how to tap into PostgreSQL DDL parser?

The DDL / SQL scripts used to create my PostgreSQL database are under version control. In theory, any change to the database model is tracked in the source code repository. In practice however, it ...
3
votes
0answers
89 views

Can I configure Hibernate to create separate sequence for each table by default?

Hibernate by default creates a globel sequence which is used to generate ids for all tables, (in the case for PostgreSQL) which scales very bad IMHO. Though I can specify for each entity type which ...
3
votes
4answers
88 views

Is there any way of determining of a SQL Server Stored Procedure returns a recordset

We have an internal application which generates ASP code to call Oracle and SQL Stored procedures. This application queries the respective data dictionaries, and is able to determine parameter ...
3
votes
2answers
457 views

SQL Server DDL script to append (or drop) the same set of columns for every table in a database?

How would one write a sql server DDL script that can: For each table in database: add column CreatedBy add column CreateDate add column UpdatedBy add column UpdatedDate Also, if the particular ...
3
votes
2answers
478 views

SQL Server parallels to Oracle DBMS_METADATA.GET_DDL?

I'm looking for command line or scripted solutions to pull the DDL out of SQL Server 2005+ for all database objects: tables, stored procs, views, indices/indexes, constraints, etc. GUI tools are not ...
3
votes
1answer
451 views

Renaming a column in MS SQL Server 2005

What is the best practice when it comes to renaming a table column using SQL (MS SQL Server 2005 variant)? This assumes that there is data in the column that must be preserved.
3
votes
4answers
5k views

Unable to add a “NOT NULL” column to empty table in SQL Server

I understand that when adding a column to a table containing data in SQL server, the column must have a NULL option or a default. Otherwise what would SQL Server pad the new rows with? I am at a loss ...
3
votes
4answers
1k views

How to generate Entity-Relation diagram from SQL DDL?

For example DbVisualizer can be used to connect to a DB and create nice diagram out of existing tables and their relations. But in this specific case I do not have a live database but I have bunch of ...
3
votes
2answers
9k views

Alter Table Add Column Syntax

I'm trying to programmatically add an identity column to a table Employees. Not sure what I'm doing wrong with my syntax. ALTER TABLE Employees ADD COLUMN EmployeeID int NOT NULL IDENTITY (1, 1) ...
3
votes
1answer
4k views

Fluent Nhibernate Schema Generation

I have been playing about with FluentNhibernate as part of the S#arp Architecture. Below is an example mapping. public class EventBaseMap : ClassMap<EventBase> { public EventBaseMap() { ...
3
votes
3answers
573 views

Is every DDL SQL command reversible? [database version control]

I want to setup a mechanism for tracking DB schema changes, such the one described in this answer: For every change you make to the database, you write a new migration. Migrations typically ...
3
votes
7answers
1k views

How should I organize my master ddl script

I am currently creating a master ddl for our database. Historically we have used backup/restore to version our database, and not maintained any ddl scripts. The schema is quite large. My current ...
2
votes
2answers
63 views

Should I disable or drop indexes when doing a high volume insert on Oracle?

I'm doing a high-volume insert-into-select-from statement in Oracle, and I'm running out of undo space (ORA-30036: unable to extend segment by 8 in undo tablespace 'UNDOTBS1'). The general consensus ...

1 2 3 4 5