9
votes
9answers
2k 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 …
4
votes
2answers
702 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 …
4
votes
2answers
382 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 …
3
votes
2answers
91 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
2answers
175 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 …
3
votes
4answers
711 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 …
3
votes
6answers
398 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 …
3
votes
3answers
3k 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 …
3
votes
7answers
462 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 …
3
votes
2answers
334 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
6answers
488 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
1answer
305 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 …
2
votes
1answer
320 views
Define default date value in MySQL, similar to timestamp
I'm using MySQL (nobody's perfect), version 4.1 and I'm used to define some timestamp columns like that:
ALTER TABLE foo ADD creation TIMESTAMP DEFAULT NOW() ;
I'd like to do exactly the same …
2
votes
4answers
66 views
How should an empty title be checked in a database?
I am doing my first database project.
I would like to know why you should use NOT NULL in the following query
...
TITLE nvarchar(60) NOT NULL
..
Context
CREATE TABLE Questions
(
USER_ID …
2
votes
4answers
1k 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 …
