Tagged Questions
The table-definition tag has no wiki summary.
1
vote
2answers
383 views
Visual Studio 2010 - copying only one table definition from .mdf file to SQL Server
I'm wondering if is it possible to copy one table definition from .mdf file to create it in SQL Server and could it be done in Visual Studio 2010?
It doesn't matter if I'll do it by some kind of ...
0
votes
3answers
36 views
Are these two ways of defining foreign keys different?
In the following table definition, what is the difference between these two column definitions, or does the second just create an automatically named foreign key index?
CREATE TABLE dbo.Employee
(
...
0
votes
1answer
308 views
Challenge!! Example of a valid 4th normal form relation that can perform 5th normal form decomposition
According to my professor in Intro. to Database Theory, there are NO examples in exisitance to show when this occasion would arise which seems a little bizarre considering its a specific part of the ...
0
votes
1answer
509 views
How to add 'auto_increment' to another column besides 'id' in rails table defination?
If I need to add 'auto_increment' to a new column called 'another_id' in a table, how can I make it?
Is there an option like:
create_table :posts do |t|
t.integer :another_id, :auto_increment ...
0
votes
1answer
622 views
Postgresq, get table definition, pg_get_tabledef
Do you know what happend with pg_get_tabledef function in postgresql 8.4? I'm sure I've been using it with previous versions of postgresql?
I need to get sql 'create table' syntax for existing table ...
0
votes
3answers
203 views
Creating tables with something similar to INFORMATION_SCHEMA.VIEW_DEFINITION in SQL Server
Is there a standard method to retrieve the 'CREATE TABLE..' definition of a table in SQL Server?
I can ask INFORMATION_SCHEMA for definitions of views and functions/procedures, so I thought it would ...