Tagged Questions
The create-table tag has no wiki summary.
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 ...
4
votes
6answers
84 views
Best practices for ordering columns in SQL when creating the table
I have a table foo which contains the following columns
create table foo (
id integer not null auto_increment unique,
name varchar(255),
desc varchar(255),
modified_time datetime not null,
type ...
4
votes
4answers
2k views
“Create table if not exists” - how to check the schema, too?
Is there a (more or less) standard way to check not only whether a table named mytable exists, but also whether its schema is similar to what it should be? I'm experimenting with H2 database, and
...
3
votes
1answer
472 views
What's wrong with this SQL Create Table Statement?
This SQL query is generated by SQL Server Managment Studio and it throws me an error:
USE [database_name]
GO
/****** Object: Table [dbo].[UserAddress] Script Date: 02/17/2010 11:21:02 ******/
...
3
votes
2answers
1k views
SQL Server - Can you add field descriptions in CREATE TABLE?
I can see plenty of posts about where the field description extended property lives and how I can get it, but nothing about adding these at the CREATE TABLE stage.
I'm dynamically creating tables so ...
3
votes
4answers
6k views
PostgreSQL create table if not exists
In a MySQL script you can write:
CREATE TABLE IF NOT EXISTS foo ...;
... other stuff ...
and then you can run the script many times without re-creating the table.
How do you do this in ...
3
votes
4answers
3k views
Is there any way for DBUnit to automatically create tables?
I just realized that DBUnit doesn't create tables by itself (see How do I test with DBUnit with plain JDBC and HSQLDB without facing a NoSuchTableException?).
Is there any way for DBUnit to ...
2
votes
1answer
20 views
jquery prevent auto trim while dynamically add table
I use jquery for adding table dynamically and I use this pattern:
var tbl = $("<table></table>").addClass("messageTable");
var tblRow = ...
2
votes
2answers
44 views
Why would create table fail via python but succeed on cli?
Here's a question for you mysql + python folks out there.
Why does this mysql sql sequence of commands not work when I execute it through Python, but it does when I execute it via the mysql CLI?
...
2
votes
1answer
151 views
Is it possible to Create sqlite table at run time based on number of elements in array
I have a different arraylist with column names. I want to have a generatized create method that should create table based on the arraylist i have passed. Is it possible to have a structure with can ...
2
votes
4answers
116 views
SQL - create table in SQL
please guide me if i'm on right track.
I'm trying to create database schema for Mobile Bill for a person 'X' and how to define PK, FK for the table Bill_Detail_Lines.
here are the assumptions
...
2
votes
2answers
599 views
CREATE TABLE permission denied in database 'tempdb'
First time I installed SQL Server Management Studio Express and Visual Studio 2005 on my system. Now I am trying to create table by using below script. But if once I execute I am facing error like
...
2
votes
1answer
327 views
Execute a Create Table Query though the JPA EntityManager
i need to create a new Table in a Database i access through a JPA EntityManager. Do JPA NativeQueries support Queries other than "Select" or "Update"? Or is there another state of the art way to ...
2
votes
1answer
66 views
How do I write a T-SQL stored proc to create primary key?
I am trying to write a CREATE TABLE stored proc in T-SQL.
This table should have a PK, but I want the PK to automatically seed integer values beginning from 1. Here is the code I have currently but ...
2
votes
2answers
552 views
SQL Server copy full table definition
In the Enterprise version of SQL Server it is possible to generate the create statement for a pre-existing table by using 'Script Table as', "Create to". This generates the full create statement for ...
2
votes
2answers
267 views
SQL Create table script from DBMS contains [ ]
If some one does right click on a given Table in a Database using SQL Server management Studio from Microsoft and create script table to query window, it displays the create table code in the window. ...
2
votes
5answers
204 views
MySQL multi CREATE TABLE syntax help?
I'm trying to write a MySQL script that creates several tables. I have:
CREATE TABLE `DataBase1`.`tbl_this`(
...
);
CREATE TABLE `DataBase1`.`tbl_that`(
...
);
... (14 more) ...
BUT, only the first ...
2
votes
1answer
422 views
Can ActiveRecord create tables outside of a migration?
I am working on a non Rails web app, so no migrations script by default.
The Sequel ORM lets me create tables easily in a script:
#!/usr/bin/env ruby
require 'rubygems'
require 'sequel'
## ...
1
vote
3answers
46 views
Temporary Table vs Create and Drop Table
I'm creating a table "InterviewTemp" , inserting data there, updating a second table with that data and then dropping the "InterviewTemp" table.
there is an example:
CREATE TABLE [entrevistasTemp](
...
1
vote
1answer
24 views
SQLSyntaxErrorException while creating a table, using Apache Derby
I have the following line of code in my project which uses Apache Derby:
stmt.executeUpdate("CREATE table "+productName+" (Time FLOAT NOT NULL PRIMARY KEY, AcidNo FLOAT, Viscosity FLOAT, Temperature ...
1
vote
1answer
36 views
Cast text to numeric in sqlite table definition
is there a cast in sqlite, I need this to work in a create table definition ...
....
mydatetime numeric not null DEFAULT (strftime('%Y%m%d%H%M','now', 'localtime')) );
thanks
1
vote
5answers
59 views
php mysql error for creating a table
I got an error while creating a table in php with mysql database, and I tried testing directly on mysql query engine it works fine. whereas in php code it gives below error
You have an error in ...
1
vote
2answers
79 views
Can I dynamically create a mySQL table from JSON?
Let's say I have a server side script which generates JSON from a simple select on a table. The JSON is encoded in the 1st script.
I have no control over this 1st script, but am aware when the ...
1
vote
1answer
53 views
MySql - DROP table 'whatever' if exist ELSE create table 'whatever'?
I simply want to drop the table 'whatever' if it exist and then recreate table 'whatever' in a single query if possible.
DROP TABLE IF EXISTS `whatever` ELSE
CREATE TABLE `whatever`
Any idea ?
1
vote
0answers
14 views
Exclude view from schema creation with Hibernate
I have an entity mapped to a view in Hibernate by specifying @NamedNativeQuery but the SchemaExport keeps creating create table scripts for this entity.
How can I convince it to just ignore that ...
1
vote
1answer
82 views
How to export a data frame in R to a table in MySQL
I tried sqlSave() in RODBC, but it runs super slowly. Is there an alternative way of doing this?
Thanks in advance
1
vote
2answers
67 views
Creating uppercase MySQL table names with PHP
I'm trying to create a table with the name ID1 using this function:
public function createIDTable($IdNumber)
{
$sql = "CREATE TABLE `Database`.`ID$IdNumber` (`Names` LONGTEXT CHARACTER SET latin1 ...
1
vote
3answers
43 views
How to create a table using insert so columns are nullable?
Using SQL Server 2008.
Here is a simplified example of my problem:
WITH cte ( a )
AS ( SELECT 1
UNION ALL
SELECT NULL
)
SELECT * INTO ...
1
vote
1answer
47 views
Problem Specifying the tables in SQL
I am relatively new to database design. I have a database which has the following design
I have specified the the tables in SQL as follows.
CREATE TABLE Piece
(identifier INT NOT NULL Unique,
value ...
1
vote
3answers
105 views
.NET Library for programmatically generating SQL objects
I am looking for a .NET library for programmatically generating tables, stored procedures, views and relationships against an SQL 2008 database. Other than raw ADO.NET, what are my options?
1
vote
1answer
82 views
How to load column names, data from a text file into a MySQL table?
I have a dataset with a lot of columns I want to import into a MySQL database, so I want to be able to create tables without specifying the column headers by hand. Rather I want to supply a filename ...
1
vote
1answer
97 views
Can I create more than 1 table at a time in a SQLite query in Actionscript?
Whenever I try to create more than one table in actionscript, only the first one gets run.
I've been using a string for my query or embedding an external file with the SQL code, and every time AS ...
1
vote
1answer
82 views
MySQL whats wrong with my foreign keys?
what is wrong with the two foreign keys which I have marked with comments?
create database db; use db;
create table Flug( Flugbez
varchar(20), FDatum Date, Ziel
varchar(20), Flugzeit int,
...
1
vote
1answer
167 views
CREATE TABLE AS - how to add column with PK?
I have to create a table (H2 embedded database) using fields from other tables. I decided to use CREATE TABLE AS statement.
My code:
CREATE TABLE DOC AS
SELECT I.ID, I.STATUS, A.REMINDERINFORMATION
...
1
vote
1answer
53 views
Simple question on a SQL create table
I was actually in process of creating a sample table in my test database when somehow I missed out on proper syntax and came up with this statement for create table -
CREATE TABLE A (id as INT, ...
1
vote
1answer
57 views
create a table from another and a literal
I'm working with sqlite and trying to create a table from another.
This works:
create table sources_tmp as select "literal" system,name,user from sources;
but it doesn't allow me to specify the ...
1
vote
3answers
208 views
MySQL Phone table: How to specify a unique primary contact number per ID?
My table is as follows:
CREATE TABLE IF NOT EXISTS PHONES (
number VARCHAR(10),
id INT,
type VARCHAR(10),
PRIMARY KEY (number),
FOREIGN KEY (id)
REFERENCES TECHNICIANS(id)
...
1
vote
3answers
267 views
What is wrong with this mysql create table query?
I have a database in my production server and it works fine... What i did is took a dump of that DB and executed in my local system.. All the other tables are created except one table... So i manually ...
1
vote
2answers
130 views
Oracle SQL script giving errors!
I get this error when trying to run this Oracle SQL script. Any help please?
Error messages
((29,21) expected token:; [ ) * + , - / = > DROP WHERE HAVING AND OR NOT ON JOIN FROM GROUP
((34,21) ...
1
vote
1answer
266 views
phpMyAdmin and SHOW CREATE TABLE
Is there a shortcut in phpMyAdmin to SHOW CREATE TABLE for a table (i.e. a button I can click to get the full query, not the truncated one)?
Also, can I query multiple SHOW CREATE TABLEs ...
1
vote
3answers
250 views
Create Table by Copying Structure of Existing Table
I am trying to create a new table by copying an existing table in SQL Server 2008 using Management Studio. The existing table contains no data. I am using the following code but am receiving an error ...
1
vote
1answer
46 views
Managing updates with NHibernate
I am aware that you can generate create scripts to generate database objects, but I am looking a way to generate an update script that compares two different schemas (two mapping files).
That way I ...
1
vote
3answers
963 views
MySQL - How to create a new table that is a join on primary key of two existing tables
I have two existing tables, with different fields, except for Primary ID (a varchar, not an int). I want to create a third table which is essentially a merge of these two, such that for a given ...
1
vote
2answers
792 views
Form has my table locked down tight even after docmd.close
Sorry for the wall of text guys but this one requires expliaining, way too much code to post...
I'm importing fixed width files into access in methods that require data entry. I import the file ...
1
vote
1answer
213 views
MYSQL Create table + Alter table incorrect syntax?
I'm trying to create a table in Navicat and immediately add a foreign key relation after that. The syntax however seems to be incorrect... Is this even possible?
CREATE TABLE `Bld` (
`id` ...
1
vote
2answers
197 views
SQL Create Table Error
I am just beginning to learn SQL and have stumbled at the first hurdle, I am unable to create a table. Below is the code example. The error I am receiving when running the statement, references line 7 ...
0
votes
1answer
19 views
How to use column alias of create table statement in underlying select-join statement?
I've run into a minor problem with a query I want to build.
The idea is to construct a new table based on a join on the same old table where some kind of "expensive" calculation is done.
The problem
...
0
votes
2answers
21 views
How can I verify SQLite Commands?
I don't know how to verifiy SQLite commands in Android...
When I have that code:
final String CREATE_TABLE_USER =
"CREATE TABLE tbl_user ("
+ "id INTEGER ...
0
votes
1answer
70 views
unable to create table Hibernate annotations
I am unable to create a table and insert the values into it using the Hibernate annotations. i am executing using command prompt. Following is my code.
Contact.java
import javax.persistence.*;
...
0
votes
5answers
88 views
Mysql: Setup the format of DATETIME to 'DD-MM-YYYY HH:MM:SS' when creating a table
After googling around, I cannot find a way to create a new table with a DATETIME column with the default format set to 'DD-MM-YYYY HH:MM:SS'
I saw a tutorial in which it was done in phpmyadmin so I ...