active questions tagged ddl - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T05:09:12Zhttp://stackoverflow.com/feeds/tag/ddlhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1791049/flag-column-or-foreign-key0Flag column or foreign key?Alexander Pogrebnyak2009-11-24T16:03:50Z2009-11-24T16:18:18Z
<p>I have ENTERPRISES and DOMAINS table. The property of each enterprise is that it should have a single primary domain, but it can have more than one domain. I have come up with this table structure</p>
<pre><code>+---------------------------------------+
| ENTERPRISES |
+----+--------------+-------------------+
| ID | Name | Primary Domain ID |
+----+--------------+-------------------+
| 1 | Enterprise A | 2 |
| 2 | Enterprise B | 4 |
+----+--------------+-------------------+
+---------------------------------------+
| DOMAINS |
+----+------------------+---------------+
| ID | Domain Name | Enterprise ID |
+----+------------------+---------------+
| 1 | ent-a.com | 1 |
| 2 | enterprise-a.com | 1 |
| 3 | ent-b.com | 2 |
| 4 | enterprise-b.com | 2 |
+----+------------------+---------------+
</code></pre>
<p>My co-worker suggested this alternative structure:</p>
<pre><code>+-------------------+
| ENTERPRISES |
+----+--------------+
| ID | Name |
+----+--------------+
| 1 | Enterprise A |
| 2 | Enterprise B |
+----+--------------+
+----------------------------------------------------+
| DOMAINS |
+----+------------------+---------------+------------+
| ID | Domain Name | Enterprise ID | Is Primary |
+----+------------------+---------------+------------+
| 1 | ent-a.com | 1 | False |
| 2 | enterprise-a.com | 1 | True |
| 3 | ent-b.com | 2 | False |
| 4 | enterprise-b.com | 2 | True |
+----+------------------+---------------+------------+
</code></pre>
<p>My question is, which one is more efficient/correct?</p>
<p>Also, in the first example should I use ID for primary domain column or a string value, so ENTERPRISES table does not have a circular dependency on DOMAINS table?</p>
http://stackoverflow.com/questions/1765713/how-can-i-programmatically-retrieve-the-alter-view-script-for-a-view-in-sql-serve0How can I programmatically retrieve the alter view script for a view in SQL Server 2005.Matthew Vines2009-11-19T18:58:15Z2009-11-19T21:45:49Z
<p>We allow our uses to alter certain views for reports and what not based on some application field meta data that we keep track of in our application. These fields can be created at run time. I have a standard process in place to alter the views when a field is added or removed. I now need to do this programmatically however, which means I need to be able to pull the current Alter view script, make my modifications, and then execute it against the database. The last two steps are easy enough, but the first part is giving me some trouble.</p>
<p>Design decisions aside (as they are out of my hands in this particular instance). I would like to know how to retrieve the Alter view script that Sql server management studio uses for the View->Edit command. </p>
<p>I require the exact same output as that command because I have comment hooks in my scripts that allow my edits to occur.</p>
<p>Related questions, but not quite what I am looking for.</p>
<p><a href="http://stackoverflow.com/questions/467482/how-do-i-programmatically-retrieve-sql-server-stored-procedure-source-that-is-ide">How do I programmatically retrieve SQL Server stored procedure source that is identical to the source returned by the SQL Server Management Studio gui?</a></p>
<p><a href="http://stackoverflow.com/questions/21547/in-mssql-how-do-i-generate-a-create-table-statement-for-a-given-table">In MSSQL, how do I generate a CREATE TABLE statement for a given table?</a></p>
http://stackoverflow.com/questions/1759086/dropdownlist-in-c-getting-dropdownlist-items-overflow-after-every-time-using-s0 DropDownList in C#, getting DropDownList items overflow after every time using selecting an itemErez2009-11-18T21:05:18Z2009-11-18T21:21:08Z
<p>Hello all, well the problem is that i am trying to get DDL to:
1. Recive catagories from a DB tabel - working
2. OnChange select from a different table the products by the item in the DDL - working
had a problem with No1 but fixed that problem. i found out that to get No1 working i have to use postback. did that and every thing in that part is working well and actualy every thing is working...but my hug problem (and i cant find any good answer for it) is that every time i change the item i a getting all the times all over again(i have initialy 8 item - secont time 16 - 24 etc....)
tried to use: ddlCatagories.Items.Clear();
when i use that i am not getting any duplicates but then, i am not getting any thing, it takes the first catagory from the list every time, no matter what i chose in the list..
trying to figure it out for the past week...please help :-)</p>
<pre><code> public partial class selectNamesFromCatagories : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
ddlCatagories.Items.Clear();
SqlDataReader dr = DbHelper.ExecuteReader(
sqlConn1.home,
"spSelectNamesFromCatagories");
while (dr.Read())
{
ListItem li = new ListItem(dr["CategoryName"].ToString());
ddlCatagories.Items.Add(li);
}
dr.Close();
}
protected void ddlCatagories_SelectedIndexChanged(object sender, EventArgs e)
{
SqlDataReader dr = DbHelper.ExecuteReader(
sqlConn1.home,
"spProductsByCatagoryID",
new SqlParameter("@catName", ddlCatagories.Text)
);
while (dr.Read())
{
TableRow tr = new TableRow();
for (int i = 0; i < dr.FieldCount; i++)
{
TableCell td = new TableCell();
td.Text = dr[i].ToString();
tr.Controls.Add(td);
}
tblProductsByCatagories.Controls.Add(tr);
}
}
}
</code></pre>
http://stackoverflow.com/questions/1239450/clone-a-tables-definition-with-hibernate-hbm2ddl1Clone a Table's definition with Hibernate (hbm2ddl)Justin2009-08-06T14:55:15Z2009-11-18T15:02:45Z
<p>In my hibernate application there is annotation driven object: <em>AuditEvent</em>. Its very simple and has no foreign key relationships. I archive old entries in this table by moving them to another table <em>OldAuditEvent</em>, which is a clone of the <em>AuditEvent</em> table. </p>
<p>Right now we generate the DDL for the entire application using hbm2ddl (on our annotated datamodel) and manually copy/paste the AuditEvent table and change its name to create <em>OldAuditEvent</em>. </p>
<p>I want to automate the build process, is there any way to tell hbb2ddl: "hey take this entity, change the table name to X and regenerate it's DDL"?</p>
<p><strong>Update</strong>:
I was able to get this working by the approach you outlined. The only trouble was getting at the AnnotationSessionFactoryBean since it is a factory bean and spring will only give you the output of its factory. I created ConfigExposingAnnotationSessionFactoryBean (extending AnnotationSessionFactoryBean) to expose the bean factory through a static -- sort of a hack but all I want to do is run a build time task.</p>
<pre><code>Configuration cfg = ConfigExposingAnnotationSessionFactoryBean.s_instance.getConfiguration();
PersistentClass pClass = cfg.getClassMapping("com.myco.LoginAttempt");
pClass.getTable().setName("ArchiveLoginAttempt");
Dialect dialect = Dialect.getDialect(ConfigExposingAnnotationSessionFactoryBean.s_instance.getHibernateProperties());
// only output create tables, not indexes or FK
for (String s : cfg.generateSchemaCreationScript( dialect )) {
if (s.contains("create table") && s.contains("Archive")) {
m_outstream.print(s);
m_outstream.println(";");
}
}
</code></pre>
http://stackoverflow.com/questions/752434/using-visio-to-generate-mysql-ddl1Using Visio to generate MySQL DDLaks2009-04-15T16:06:35Z2009-11-05T08:16:29Z
<p>I have a database model diagram created in MS Visio which I would like to export to DDL file to create a MySQL database. I've already installed the MySQL ODBC driver, which I can successfully use to generate DDL file, but I have some problems anyway.</p>
<p>Visio puts quotation marks around the table names which are also reserved words (like user). This is not OK, since MySQL uses backticks (`) and not quotation marks (") for this purpose.</p>
<p>MySQL ODBC driver also changes the BLOB data type to LONGVARBINARY, so it cannot be used directly with MySQL when creating the database.</p>
<p>Does anyone have any suggestion how to deal with these two problems?</p>
http://stackoverflow.com/questions/372643/problems-importing-sql-script-from-oracle-9i-to-oracle-10g-express0Problems importing SQL script from Oracle 9i to Oracle 10g expressChris Mitchell2008-12-16T20:44:06Z2009-11-04T14:10:58Z
<p>I am currently running into a problem when trying to import an Oracle 9i SQL script into my local Oracle 10g Express database. I am trying to import the <a href="http://en.wikipedia.org/wiki/Data%5FDefinition%5FLanguage" rel="nofollow">DDL</a> from the 9i database to the 10g express database. I keep getting "Not compatible - Your export file is not supported". Has someone been able to get this working? Please let me know what I can do to get this working. </p>
http://stackoverflow.com/questions/1064943/how-can-i-create-a-ddl-for-my-jpa-entities-from-java-code1How can I create a ddl for my jpa entities from java code?Peter Paulus2009-06-30T17:28:25Z2009-10-28T14:44:14Z
<p>Hi, I look for a way how I can create a ddl for my jpa annotated entities.
I prefer a pure java way for this.</p>
<p>If possible it would be nice to have generate the drop statements too.</p>
http://stackoverflow.com/questions/1511956/sql-server-parallels-to-oracle-dbmsmetadata-getddl3SQL Server parallels to Oracle DBMS_METADATA.GET_DDL ?ckeh2009-10-02T21:45:00Z2009-10-28T06:52:18Z
<p>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 of interest. </p>
<p>Preference is for built-in tools, since that would be the most comparable to Oracle's DBMS_METADATA stuff. Also, preference for a solution that is as simple as Oracle's for getting the DDL out - eg, a one liner:</p>
<pre>
SELECT DBMS_METADATA.GET_DDL('TABLE', 'MY_TABLE')
</pre>
<p>Note: Getting things out for procedures in SQL Server 2005 seems easy, but I can't find any references to something similar for other objects (like tables).</p>
<pre>
SELECT definition
FROM Sys.sql_modules
WHERE object_id = OBJECT_ID('MyProc')
</pre>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/1633659/dropdownlist-select0Dropdownlist selectmenon2009-10-27T21:03:08Z2009-10-27T21:03:08Z
<p>I have a dropdown list that searched a column in database table and returns items to listbox in DDL's selectchange event. In this same event I want to include code that will populate teh listbox with items that where in it before search if user deselect , i. e. if ProjDDL.selecteditem.value = "--". Please help me with the code.
protected void ProjDDL1_SelectedIndexChanged(object sender, EventArgs e)
{
String ProjectDDL1 = ProjDDL1.SelectedItem.Value;
String ProjectDDL2 = ProjDDL2.SelectedItem.Value;
String ProjectDDL3 = ProjDDL3.SelectedItem.Value;
String ProjectDDL4 = ProjDDL4.SelectedItem.Value;
String ProjectDDL5 = ProjDDL5.SelectedItem.Value;
//String ColumnName = "Business";
ClientPJ mypj = new ClientPJ((DataSet)(Session["Client_ProjectDS"]));
ListItemCollection DS4DDL1Before = ProjList.Items; //<-------copy listbox item before search
if (ProjectDDL1 != "--")
{</p>
<pre><code> ListItemCollection DS4DDL1 = mypj.searchPJ(ProjList.Items, ProjectDDL1);
ProjList.Items.Clear();
ProjList.DataSource = DS4DDL1;
ProjList.DataTextField = "Text";
ProjList.DataValueField = "Value";
ProjList.DataBind();
}
if (ProjectDDL1 == "--")
{
ListItemCollection DS4DDL1 = DS4DDL1Before;//<-- Not showing any items in listbox???
ProjList.Items.Clear();
ProjList.DataSource = DS4DDL1;
ProjList.DataTextField = "Text";
ProjList.DataValueField = "Value";
ProjList.DataBind();
}
if (ProjectDDL2 != "--")
{
//ColumnName = "Business_group";
//DS4DDL1 = mypj.searchProject(ProjList.Items, ProjectDDL2, ColumnName);
ListItemCollection DS4DDL2 = mypj.searchPJ(ProjList.Items, ProjectDDL2);
ProjList.Items.Clear();
ProjList.DataSource = DS4DDL2;
ProjList.DataTextField = "Text";
ProjList.DataValueField = "Value";
ProjList.DataBind();
}
</code></pre>
http://stackoverflow.com/questions/580817/obfuscating-source-code-when-publishing-c0Obfuscating source code when publishing (C#)Sem Dendoncker2009-02-24T07:43:56Z2009-10-22T03:42:13Z
<p>Hi,</p>
<p>We are working on many products that are being published at our customers.
But if you publish a C# application, all the dll's can be decompiled using reflector or some sort.</p>
<p>I was wondering if there is an easy way to encrypt our dll's when publishing.
This way we can publish our dll's without having to worry about our clients decompiling our code.</p>
<p>Kind regards,
Sem</p>
<p>ps: if it's possible to integrate this within visual studio that would be awesome.</p>
<p>EDIT: Sorry about the double post, I didn't know it was called "obfuscation".</p>
http://stackoverflow.com/questions/1521611/t-sql-scripts-to-copy-all-table-constraints1T-SQL Scripts to copy all table constraintsunknown (google)2009-10-05T18:19:51Z2009-10-05T22:05:58Z
<p>I have created many tables on my local database and moved them to production database.</p>
<p>Now I am working on fine tuning the database and created many constraints on my local database tables such as PK, FK, Default Values, Indexes etc. etc. </p>
<p>Now I would like to copy only these constraints to production database. Is there a way to do it?</p>
<p>Please note that my production database tables already populated with some data. So I can’t drop and recreate them.</p>
http://stackoverflow.com/questions/1519655/can-we-create-tables-dynamically-in-mysql-1Can we create tables dynamically in MySQL?hrishi2009-10-05T11:59:39Z2009-10-05T12:33:44Z
<p>Can we create tables dynamically in MySQL? If so, how?
Dynamic means at run time....<strong>ie via procedure</strong> AND <strong><em>HOW????</em></strong>
I am using dotnet
Ans--> yes we can create...but problem is i want to change the name of table each time the procedure is called.... </p>
http://stackoverflow.com/questions/1515598/anyway-to-create-a-sql-server-ddl-trigger-for-select-statements0Anyway to create a SQL Server DDL trigger for "SELECT" statements?Sung Meister2009-10-04T04:35:23Z2009-10-04T18:47:40Z
<p>I am dealing with some sensitive Accounting tables and I would like to audit any <code>SELECT</code> statement executed on the table or any views associated with them.</p>
<p>I did not find any <a href="http://msdn.microsoft.com/en-us/library/bb522542.aspx" rel="nofollow">DDL Events</a> on BOL (Books Online) that had anything to do with <code>SELECT</code> statement.
And DML triggers are for <code>INSERT</code>, <code>UPDATE</code> and <code>DELETE</code> only.</p>
<p>Is it possible to log who accesses table and views through <code>SELECT</code> statement?</p>
http://stackoverflow.com/questions/910881/automated-ddl-scripts-how-much-functionality-to-predict1automated DDL scripts: how much functionality to predict?Kev2009-05-26T14:06:50Z2009-09-29T17:06:09Z
<p>I have a script that generates DDL scripts to define materialized views for a normalized database. Some tables have columns like "owner" that point to a particular database user, which I can then create views for that will show only the rows of a table that the current database user created. Such views in some cases would be beneficial both from a security and convenience standpoint--for example, showing only one's own multiple-choice quiz results.</p>
<p>The thing is, aside from a handful of tables, there are many tables where I could imagine someone asking for such a view, but can't think of a concrete use case. However, I think that sometimes such general functionality can be useful, because I can't always foresee all use cases.</p>
<p>My question is, how many of these personalized views should I bother automatically generating? For several hundred tables, this adds a good chunk of time to the building, testing, and benchmarking processes, automated though they are. Would you err on the side of extra functionality that may never be used, or on the side of having available only those views that have been asked for/that you know will be useful?</p>
http://stackoverflow.com/questions/972273/microsoft-access-datetime-default-now-via-sql0Microsoft Access DateTime Default Now via SQLKevin Lamb2009-06-09T20:15:55Z2009-09-29T14:29:53Z
<p>I am writing a number of scripts to update numerous Access tables. I would like to add a column to each that has a field called "date_created" that is a timestamp of when the record is created. Doing this through the table view is simple, simply set the DefaultValue = now(). However, how would I accomplish this in sql?</p>
<p>This is my current attempt for tables that already have the column. This example uses "tblLogs".</p>
<pre><code>ALTER TABLE tblLogs ALTER COLUMN date_created DEFAULT now()
</code></pre>
<p>Thanks for your help!</p>
<p>Update - Would there be a way to do this in VBA?</p>
<p>Update 2 - Tested all of the answers and the following by onedaywhen is the shortest and most accurate</p>
<pre><code>CurrentProject.Connection.Execute _
"ALTER TABLE tblLogs ALTER date_created DATETIME DEFAULT NOW() NOT NULL;"
</code></pre>
http://stackoverflow.com/questions/272816/what-is-a-good-visio-enterprise-architect-replacement8What is a good Visio Enterprise Architect replacement?MattValerio2008-11-07T17:20:47Z2009-09-22T01:00:56Z
<p>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.</p>
<p>I wanted to switch to Visio 2007, but while it does have database diagramming support, it <em>doesn't</em> have the ability to generate DDL. Bummer.</p>
<p>I am really disappointed because it seems like Microsoft has completely abandoned this feature. You can't do it in Visual Studio (that I've found). You can sorta do it with SQL Server Management Studio if you insert database diagrams into your database, but any edits to the schema immediately take effect.</p>
<p>Has anyone found a good program to do this? I'm hoping to find one that is free and can generate DDL/SQL for SQL Server.</p>
http://stackoverflow.com/questions/1428070/generate-table-view-schema-from-linq-to-sql-dbml-file0Generate Table/View schema from LINQ-TO-SQL DBML fileDennis Cheung2009-09-15T15:57:41Z2009-09-16T00:52:10Z
<p>I'd like to have a single source of the description of the data structure.</p>
<p>Some people are asking can the DBML file being refreshed when it is changed in the database. The way I do is stupid but common; open it, delete all, and drag-drop again.
I heard that there are some 3rd party do the tricks.</p>
<p>But I am thinking, any way to inverse the operation?</p>
<p>In hibernate, there is a way to build the DDL of the target DB from the XML data structure.</p>
<p>Is it possible that the DBML file will contain all information to rebuild the DDL of the database? (e.g. have a copy of those VIEW SQL, stored procedure codes), and build the "Create script" on the fly (like what you do in SQL Server Enterprise Manager)</p>
http://stackoverflow.com/questions/1428499/ruby-rails-reverse-migration-ddl-to-ruby-code0Ruby / Rails - Reverse Migration - DDL to Ruby CodeB. Tyndall2009-09-15T17:20:51Z2009-09-15T19:40:12Z
<p>Any tools in Ruby or Rails that would allow me to extract from database all the table schema and generate Ruby equivalent "DLL" statements? </p>
<p>Something that would allow me to port schema from say Microsoft SQL Server to Postgres, or MySQL to Sqlite.</p>
http://stackoverflow.com/questions/1422394/indexing-varchars-foreign-keys0Indexing varchars & Foreign KeysSnuggs2009-09-14T15:48:23Z2009-09-14T18:28:59Z
<p>I have two tables defined below.</p>
<pre><code>Create table tickets (id long not null,
reseller long not null,
constraint pk_lock primary key (id));
Create table ticketRegistrations (id long not null,
customer long not null,
constraint fkTicketRegistrationTicket
foreign key (id) references tickets (id) on update cascade);
</code></pre>
<p>The client can input tickets (hence no autoincrement for the Primary Key). Since the id is the Primary key AND FOREIGN KEY of the ticketregistrations table there is integrity constraints and all that jazz. The problem I have run into is a feature request which is to allow zero padding with the ticket id (i.e. 00070). Now integers cannot be stored with zero padding to the best of my knowledge.</p>
<p>What solution i have come up with is to add a ticketID varchar(8) not null column in the ticket table and use the actual id for BOTH TABLES as a surrogate key. The foreign key of the ticketregistration table would then point to the ticketid.</p>
<p>The question I have is regarding efficiency and speed. Previously I could add a ticket registration within the system and the database would do an integrity constraint on addition to see if a ticket with the same id is within the database. Now I have a varchar string for an id which will be indexed.<br />
When a customer "registers a ticket" will it be easier to keep the ticketid varchar in the ticket table and use a foreign key of ticketid within the ticketregistration table (also a varchar(8))?</p>
<p>Or will it be easier to NOT have a ticketid varchar(8) within ticketregistrations, keep the foreign key to tickets table as the primary key of the ticketregistrations table and check first for the ticketid within the ticket table, retrieve the value, and input it into a row within ticketregistrations?</p>
<p>This will create an indexed varchar search on the tickets table prior to each insertion into the ticketsregistrations table. </p>
<p>My initial solution did not need this since referential integrity took care of the problem.</p>
<p>I am worried about seek times.</p>
<p>Thank you all for your time!</p>
<p>Snuggs.</p>
http://stackoverflow.com/questions/59303/wrap-an-oracle-schema-update-in-a-transaction3Wrap an Oracle schema update in a transactionChris Karcher2008-09-12T15:28:28Z2009-09-12T16:42:30Z
<p>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 transaction like so:</p>
<pre><code>BEGIN TRAN;
CREATE TABLE A (PKey int NOT NULL IDENTITY, NewFieldKey int NULL, CONSTRAINT PK_A PRIMARY KEY (PKey));
CREATE INDEX A_2 ON A (NewFieldKey);
CREATE TABLE B (PKey int NOT NULL IDENTITY, CONSTRAINT PK_B PRIMARY KEY (PKey));
ALTER TABLE A ADD CONSTRAINT FK_B_A FOREIGN KEY (NewFieldKey) REFERENCES B (PKey);
COMMIT TRAN;
</code></pre>
<p>As we're executing, if one of the statements fail, I do a ROLLBACK instead of a COMMIT. This works great on SQL Server, but doesn't have the desired effect on Oracle. Oracle seems to do an implicit COMMIT after each DDL statement:</p>
<ul>
<li><a href="http://www.orafaq.com/wiki/SQL_FAQ#What_are_the_difference_between_DDL.2C_DML_and_DCL_commands.3F" rel="nofollow">http://www.orafaq.com/wiki/SQL_FAQ#What_are_the_difference_between_DDL.2C_DML_and_DCL_commands.3F</a></li>
<li><a href="http://infolab.stanford.edu/~ullman/fcdb/oracle/or-nonstandard.html#transactions" rel="nofollow">http://infolab.stanford.edu/~ullman/fcdb/oracle/or-nonstandard.html#transactions</a></li>
</ul>
<p>Is there <em>any</em> way to turn off this implicit commit?</p>
http://stackoverflow.com/questions/1374737/how-can-i-create-a-unique-index-in-oracle-but-ignore-nulls2How can I create a unique index in Oracle but ignore nulls?Brian Ramsay2009-09-03T17:09:39Z2009-09-03T17:31:14Z
<p>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 (<code>name</code> will never be null).</p>
<pre><code>create unique index "name_and_email" on user(name, email);
</code></pre>
<p>Ignore the semantics of the table and field names and whether that makes sense - I just made some up.</p>
<p>Is there a way to create a unique constraint on these fields that will enforce uniqueness for two not null values, but ignore if there are multiple entries where <code>name</code> is not null and <code>email</code> is null?</p>
<p>This question is for SQL Server, and I'm hoping that the answer is not the same:
<a href="http://stackoverflow.com/questions/767657/how-do-i-create-unique-constraint-that-also-allows-nulls-in-sql-server">http://stackoverflow.com/questions/767657/how-do-i-create-unique-constraint-that-also-allows-nulls-in-sql-server</a></p>
http://stackoverflow.com/questions/1370638/how-does-one-extract-the-definition-of-a-view-using-standard-sql0How does one extract the definition of a view using standard SQL?Trevor Bramble2009-09-02T23:10:44Z2009-09-03T12:46:03Z
<p>In trying to answer this question for myself I came across this nugget, after eventually adding "oracle" to my query terms:</p>
<pre><code>select DBMS_METADATA.GET_DDL('TABLE','<table_name>') from DUAL;
</code></pre>
<p>Which works, but is not portable. How do I do the same thing on MySQL? SQLite? Others?</p>
http://stackoverflow.com/questions/345981/which-net-frameworks-allow-you-to-create-business-entities-first-then-database2Which .NET frameworks allow you to create Business Entities first, then DatabaseB. Tyndall2008-12-06T05:47:42Z2009-09-02T03:05:35Z
<p>Do any .NET frameworks allow you to create Business Entities first then Database.
In other words allow you to use DDD / Persistence Ignorance method of backing into the database later. Any tools that allow the Models/Classes you have written to generate the SQL DDL and migration scripts.</p>
<p>Feel free to rework my verbiage, and make it a better question.</p>
http://stackoverflow.com/questions/1255903/how-to-rename-a-column-in-sql1How to rename a column in SQL?Thomas Bratt2009-08-10T16:35:09Z2009-08-10T16:39:46Z
<p>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.</p>
http://stackoverflow.com/questions/1202879/to-show-unique-constraint-for-two-columns-in-physical-erd-figure0To show Unique Constraint for two columns in physical ERD figureMasi2009-07-29T20:35:41Z2009-08-02T18:15:54Z
<p>This is answer is based on <a href="http://stackoverflow.com/questions/1196873/to-prevent-the-use-of-duplicate-tags-in-a-database/1196902#1196902">Greg's answer</a>.</p>
<p>I would like to know how you can show the unique constraint for two columns in the following figure.</p>
<p>I have the table Tags</p>
<p><img src="http://files.getdropbox.com/u/175564/db/db-88.png" alt="alt text" /></p>
<p><strong>The SQL/DDL query in PostgreSQL</strong></p>
<pre><code> CREATE TABLE tags (
questions_question_id INTEGER
FOREIGN KEY REFERENCES questions(question_id)
NOT NULL,
tag VARCHAR(30) NOT NULL,
CONSTRAINT no_duplicate_tag UNIQUE (questions_question_id,tag) // Here
)
</code></pre>
<p><strong>Context</strong></p>
<p><img src="http://files.getdropbox.com/u/175564/db/db-888.png" alt="alt text" /></p>
<p>I am not sure whether my figure is correct.</p>
<p><strong>How can you draw the unique constraint to the figure?</strong></p>
http://stackoverflow.com/questions/1211481/simulate-a-table-creation-with-sql0Simulate a table creation with SQLtokel2009-07-31T09:14:11Z2009-07-31T09:48:22Z
<p>Hello.</p>
<p>Is there a standard way to simulate a table creation in a database by using SQL? I don't want the table to be created, just check if it could be created.
One way would be to create it and then delete it again.
Any other way?</p>
http://stackoverflow.com/questions/1200025/to-set-a-default-value-to-a-column-in-a-database-by-postgresql0To set a default value to a column in a database by PostgreSQLMasi2009-07-29T12:50:35Z2009-07-29T19:30:35Z
<p>I am doing my first database project.</p>
<p>I would like to know how you can have <code>false</code> as the default value for the following SQL -query</p>
<pre><code>...
MODERATOR_REMOVAL boolean NOT NULL
...
</code></pre>
<p><strong>Context</strong></p>
<pre><code> CREATE TABLE Questions
(
USER_ID integer FOREIGN KEY
REFERENCES User_info(USER_ID)
PRIMARY KEY
CHECK (USER_ID>0),
QUESTION_ID integer FOREIGN KEY REFERENCES Tags(QUESTION_ID)
NOT NULL
CHECK (USER_ID>0),
QUESTION_BODY text NOT NULL, -- question must have body
TITLE varchar(60) NOT NULL, -- no empty title$
MODERATOR_REMOVAL boolean NOT NULL, -- by default false$ /// Here
SENT_TIME timestamp NOT NULL
);
</code></pre>
<p><strong>How can you set the default value to be <code>false</code> for <code>MODERATOR_REMOVAL</code> by PostgreSQL?</strong></p>
http://stackoverflow.com/questions/1196873/to-prevent-the-use-of-duplicate-tags-in-a-database0To prevent the use of duplicate Tags in a databaseMasi2009-07-28T21:34:00Z2009-07-29T14:50:59Z
<p>I would like to know how you can prevent to use of two same tags in a database table.
One said me that use two private keys in a table. However, W3Schools -website says that it is impossible.</p>
<p><strong>My relational table</strong></p>
<p><img src="http://files.getdropbox.com/u/175564/db/db7.png" alt="alt text" /></p>
<p><strong>My logical table</strong></p>
<p><img src="http://files.getdropbox.com/u/175564/db/db77.png" alt="alt text" /></p>
<p><strong>The context of tables</strong></p>
<p><img src="http://files.getdropbox.com/u/175564/db/db777.png" alt="alt text" /></p>
<p><strong>How can you prevent the use of duplicate tags in a question?</strong></p>
http://stackoverflow.com/questions/1195816/to-improve-sql-queries-in-ddl0To improve SQL-queries in DDLMasi2009-07-28T18:20:53Z2009-07-29T14:24:48Z
<p><strong>Improvements done</strong></p>
<ol>
<li>nvarchar(5000) -> nvarchar(4000) BUT no nvarchar in PostgreSQL => TEXT</li>
<li>memory limits to some variables</li>
<li>the syntax slightly changed to more readable</li>
<li>dashes to underscores</li>
<li><a href="http://stackoverflow.com/questions/1195816/to-improve-sql-queries-in-ddl/1198220#1198220">Magnus' improvements</a></li>
</ol>
<p>I am following <a href="http://stackoverflow.com/questions/1168701/to-make-a-plan-for-my-first-mysql-project">my plan for my first database project</a>.</p>
<p>I would like to know any weaknesses in the queries and in the relational table.</p>
<p><strong>SQL-queries in DDL</strong></p>
<pre><code>CREATE TABLE answers
(
question_id INTEGER FOREIGN KEY REFERENCES questions(user_id)
PRIMARY KEY
CHECK (user_id>0),
answer TEXT NOT NULL -- answer must have text
);
CREATE TABLE questions
(
user_id INTEGER FOREIGN KEY
REFERENCES user_info(user_id)
PRIMARY KEY
CHECK (user_id>0),
question_id INTEGER FOREIGN KEY REFERENCES tags(question_id)
NOT NULL
CHECK (user_id>0)
SERIAL,
body TEXT NOT NULL, -- question must have body
title VARCHAR(60) NOT NULL, -- no empty title
moderator_removal BOOLEAN NOT NULL, -- by default false
sent_time TIMESTAMP NOT NULL
);
CREATE TABLE tags
(
question_id INTEGER FOREIGN KEY REFERENCES questions(question_id)
CHECK (user_id>0),
tag VARCHAR(20) NOT NULL,
CONSTRAINT no_duplicate_tag UNIQUE (question_id,tag)
)
CREATE TABLE user_infos
(
user_id INTEGER FOREIGN KEY REFERENCES questions(user_id)
PRIMARY KEY
CHECK (user_id>0)
SERIAL
UNIQUE,
username VARCHAR(25),
email VARCHAR(320) NOT NULL -- maximun possible
UNIQUE,
password_sha512 INTEGER NOT NULL,
is_moderator BOOLEAN NOT NULL,
is_Login BOOLEAN NOT NULL,
has_been_sent_a_moderator_message BOOLEAN NOT NULL
);
-- to have default values
ALTER TABLE questions ALTER COLUMN moderator_removal SET DEFAULT FALSE
ALTER TABLE user_info ALTER COLUMN is_moderator SET DEFAULT FALSE
ALTER TABLE user_info ALTER COLUMN is_login SET DEFAULT FALSE
ALTER TABLE user_info ALTER COLUMN has_been_sent_a_moderator_message SET DEFAULT FALSE
-- to have default values
ALTER TABLE questions ALTER COLUMN moderator_removal SET DEFAULT FALSE
ALTER TABLE user_info ALTER COLUMN is_moderator SET DEFAULT FALSE
ALTER TABLE user_info ALTER COLUMN is_login SET DEFAULT FALSE
ALTER TABLE user_info ALTER COLUMN has_been_sent_a_moderator_message SET DEFAULT FALSE
</code></pre>
<p><strong>Relational Table</strong></p>
<p><img src="http://files.getdropbox.com/u/175564/db/db777.png" alt="alt text" /></p>
<p><strong>What would you improve in the DDL queries?</strong></p>
http://stackoverflow.com/questions/1199868/to-understand-a-sentence-about-the-case-in-sql-ddl-queries1To understand a sentence about the case in SQL/DDL -queriesMasi2009-07-29T12:23:31Z2009-07-29T12:32:28Z
<p>This question is based on <a href="http://stackoverflow.com/questions/1195816/to-improve-sql-queries-in-ddl/1198220#1198220">this answer</a>.</p>
<p><strong>What does the following sentence mean?</strong></p>
<blockquote>
<p>Finally, don't use mixed case
identifiers. Do everything lowercase,
so you don't have to quote them.</p>
</blockquote>
<p><strong>Does it mean that I should change the commands such as CREATE TABLE, USER_ID and NOT NULL to lowercase?</strong> - It cannot because it would be against common naming conventions.</p>