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.
0
votes
0answers
12 views
How do I get alembic to emit custom DDL on after_create?
I've got a couple of custom DDL statements that I want to run after create table:
update_function = DDL(""" ...
0
votes
0answers
33 views
alter table waiting for select query to get executed
I have a use case where i dynamically add new columns to db.The alter table works fine when no select queries are running on the db table.But if alter query is running at the same time when some heavy ...
-3
votes
1answer
48 views
SQL Syntax error CREATE Table
I get a syntax error when I try to execute this query:
USE MainDB1
IF EXISTS (SELECT * FROM sysobjects WHERE Name = 'logging' AND TYPE = 'u')
BEGIN
DROP TABLE MainDB1.dbo.logging
END
Create Table ...
2
votes
2answers
32 views
SQL statement not correct for creating a table with a foreign key?
I'm not sure why the SQL isn't working for the Class table. I know the problem has to do with the foreign key line, if I remove that the table will be created. Is there something wrong with my syntax?
...
0
votes
0answers
22 views
Sql ddl get foreign key information
I'm doing a small web application that query a database using hibernate and show's in a jsp a table with the data received. For this I`m using DML statements that retreives the DB data.
Session ...
0
votes
1answer
40 views
How to export database from Oracle Application Express
Really would appreciate any help whatsoever on this one.
How to generate DDL from Application Express... including the actual data.
I can create a DDL; but one which contains none of the necessary ...
1
vote
0answers
45 views
Multiple alter column statements in a single alter table statement causes 'row length exceeded limit'
I use DB2 in version 9.7.0.2.
I have a table created with the following DDL:
CREATE TABLE atable (
id int PRIMARY KEY NOT NULL,
int1 int NOT NULL,
int2 int NOT NULL,
smallint1 ...
0
votes
1answer
24 views
JPA - How to set string column to varchar(max) in DDL
With JPA, DDL-generation for the attribute:
@Column
final String someString;
will be someString varchar(255) null
@Column(length = 1337)
final String someString;
will yield someString ...
-4
votes
0answers
20 views
Sql homework about image? [closed]
I received homework about sql today. The topic is an auction website.
One of the question was to make this:
For each item, you can save maximum 4 image.
Is this possible to make in an query?
0
votes
2answers
23 views
Making Trigger/Case for SQL
I have the following table:
create table Sale(
bankname char(8) null,
controleoptiename char(10) not null,
creditcardnummer numeric(19) null,
username ...
0
votes
1answer
22 views
How to work with javax.persistence.sql-load-script-source?
I want to automatically insert data into my MySQL tables. Therefore I try to use the JPA property "javax.persistence.sql-load-script-source" in my persistence.xml:
<?xml version="1.0" ...
2
votes
3answers
46 views
check constraint with if logic oracle sql
Is there a way to use if logic in an oracle sql check constraints?
This is my pseudo table:
create table child
(
name,
behaviour,
treat,
);
Now what i want is that if the behaviour of ...
0
votes
1answer
37 views
Oracle Foreign or Primary keys
I'm a bit confused over when I should use a primary or foreign key. I have two tables, and in both of them, some of the columns reference columns that are primary keys in other tables.
Here they are:
...
0
votes
1answer
57 views
Drop Down List make list item requery entitydatasource
My first post here and Iam an absolute beginner. Searched the web for hours. I feel that I might have approached my problem the wrong way, but here goes.
I have a Datasource that displays Loans ...
0
votes
0answers
59 views
Do open database licenses apply to DDL or SQL embedded in source code?
I am considering open sourcing a project that allows saves to a SQLite database. The database does not exist until the program has ran. In other words, it is not physically installed or distributed ...
2
votes
1answer
81 views
Best way to exclude outdated data from search in postgres
I have a table including:
a text field 'value'
a timestamp field 'creation_date'
Table has indexes on id and on 'value'
I must search this table for a given value and want to make search as fast ...
0
votes
2answers
103 views
Oracle SQL Developer - How to remove double quotes in generated DDL
I am using Oracle SQL Developer 3.0. When I script out the BONUSES table under the DEPT schema, just as an example, it produces this DDL.
CREATE TABLE "DEPT"."BONUSES"
( "NEW_EMPLOYEE_ID" ...
0
votes
1answer
41 views
Creating foreign key on same table SQLite
Recently I started using SQLite (as required for my study) and I came accross a couple of restrictions of SQLite and I was wondering: can't SQLite create foreign keys on the same table? E.g. this is ...
0
votes
2answers
57 views
Standard file extension for hive ddl script?
Is there an accepted convention for a file extension for a hive ddl script? I am purely asking for code organization purpose, so that when I save the script in my repository it is obvious the script ...
0
votes
1answer
52 views
How do you create a table with Sqlalchemy within a transaction in Postgres?
I'm using Sqlalchemy in a multitenant Flask application and need to create tables on the fly when a new tenant is added. I've been using Table.create to create individual tables within a new Postgres ...
0
votes
1answer
57 views
Correct way to specify a default empty string for a column in HSQLDB?
The ability and manner in which a table column may be specified with a default empty string appears to be RDBMS implementation dependent.
This answer (default a column with empty string) and this one ...
1
vote
1answer
47 views
Oracle context index creation script
I need to generate the full Oracle CONTEXT index creation script for the index that already exists.
I'm pretty sure, that I've once found how to do it in Oracle documentation, but now, I can't. I ...
0
votes
1answer
54 views
SQL Server CE's DDL parser is very picky but secretive about what it is finding fault with
I keep getting "there was an error parsing the query" no matter what I try with my DDL.
So I need an expert in the SQL-Server-CE flavor of SQL to tell me which of the following is the preferred ...
1
vote
2answers
68 views
Dropping column in Postgres on a large dataset
So I have a table with a large dataset and this table has a three columns that I would like to drop.
The question is: how will Postgres deal with it?
Will it walk through every entry or will it just ...
1
vote
2answers
60 views
Upgrading a varchar column to enum type in postgresql
We have a varchar column in a table, that we need to upgrade to enum type.
All the values in the varchar column are valid values in the enumeration. There is no null values in the varchar column.
...
2
votes
1answer
54 views
Is it possible to rollback create_all in sqlalchemy?
According to THIS question for some DBMSs it is possible to rollback CREATE TABLE statement.
Particularry it is possible for sqlite (although it is undocumented).
So my question is, is it possible ...
0
votes
0answers
43 views
Creating db schema slower with SMO than straight SQL? [closed]
If I create a schema (database, tables, columns, stored procs, etc) via SMO objects, it runs about twice as slow than if I run equivalent SQL DDL script. My schema currently has 35 tables, and takes ...
1
vote
1answer
114 views
Oracle CREATE TABLE missing right parenthesis WHY?
Using Oracle I am trying to create these tables (this is just one) and I keep getting the "missing right parenthesis" error. I cannot understand why.
It's not the server, tried a premade table and it ...
1
vote
1answer
41 views
NHibernate generate DB script not referencing column when adding a constraint
I have an nhibernate xml class (called class1) with the following property:
<many-to-one name="Rank" class="RankColourScheme" column="Rank_"
property-ref="Rank" not-null="true" fetch="join"/>
...
0
votes
1answer
71 views
HSQLDB UNIQUE constraint and SQL Array Type
I am developing with HSQLDB 2.2.9. HSQLDB is one of the RDBMS's out there that supports the SQL Array type and I want to use this capability to address some functionality in my database.
I've been ...
1
vote
0answers
67 views
Are there free libraries creating HTML5/Javascript forms for Database Tables?
My problem is that there are tables defined in back-end which have things like VARCHAR(10), DATE, INT etc? We need to create a HTML5/JS form that can be shown to user so that they can enter a data ...
1
vote
1answer
80 views
Error using Create Table DDL
My goal is to store 15-minute interval data in a (as of now) stand alone Access database. Databases aren't my area of expertise, but I'm giving it a go. I found a set of metadata data files that ...
0
votes
0answers
23 views
DDL script into OR modell
Is there a tool which convert a DDL script into an OR model?
I know about some commercial reverse engineering software doing this from a database.
But what i am looking for is more like an open ...
0
votes
0answers
37 views
customize sql ddl / tables creation by EclipseLink
In some cases I want to create views with extra logic based on the original tables or add some custom columns which don't appear in the entities.
Is there a way in EclipseLink to customize the table ...
0
votes
0answers
45 views
Design Pattern for dynamically adding columns to tables in Rails?
I have a client that will need to add custom columns to his application. Usually when I've done this for a client is in C# with .NET and its fairly painless to do it but when Rails is so dependent on ...
0
votes
0answers
26 views
SQL Server Express - Execute DDLs
I maintain a large application and the customers became more than I can handle to do manual database updates (connect to the database and execute the DDLs to each installation).
I am trying to find a ...
0
votes
2answers
60 views
When I am trying to drop tables using below script , it seems not working.
I am trying to drop tables from each server. My Server 1 has 3 Databases and Server 2 has 6 and Server 3 has 8.
Below is the SQL Script that I wrote to perform the drop operation from each databases ...
0
votes
3answers
154 views
add a column to existing table whose value is dependent on other column
I want to add a column to my existing table whose value is dependent on another column STORE. STORE has two values, T or D. If store value is T, then I want the value in added column to be 1, ...
1
vote
2answers
209 views
Drop or create database from stored procedure in PostgreSQL
I have a function that looks like this:
BEGIN
DROP DATABASE IF EXISTS db_1;
END;
I'm getting the following error:
ERROR: DROP DATABASE cannot be executed from a function or multi-command ...
1
vote
1answer
29 views
JPA - Is it possible to add a new persistable field to a class without updating the XML configuration file?
I'm new to JPA. I wanted to know if there is any way to modify the xml of a class without actually making changes to it. That is add a new column to a table after the xml has been created?
0
votes
2answers
96 views
Change ID of row and reflect this change to all related tables
Old version
I have a Person table and the table Company.
both tables have a column Id (Identity)
Table Company have Ids of 1 to 165
In the table Person have Ids 1 until 2029
New Version
In the ...
0
votes
1answer
89 views
How to reference a DLL file in Jelastic Tomcat
I have successfully developed and deployed a java servlet in a tomcat server.
But in that servlet i call a dll file. In my computer that i run the tomcat server and i call the library
i use ...
0
votes
1answer
37 views
Behaviour of update statistics in case when is transaction rollback
In our application we are running query 'update statistics with sample 30 percent'.
Our system design is such that we have to use update statistics query once a day to improve query performance.
We ...
1
vote
1answer
57 views
What is the best component to use, If I want to create a table from my talend job?
From my job, I am trying to create a Table ( if not exists ) with selecting few records by joining few tables ( like create table xx select * from t1 inner t2 etc ), from my talend job. I am ...
1
vote
2answers
110 views
Print only first unique value for column that ORDER BY in Oracle sqlplus
This script dump tables with columns and comments for Oracle (what I do: dump schema DDL in human readable format without dependency on any external tools, just sqlplus, I want to commit this script ...
1
vote
2answers
81 views
how to create user defined table (table name is in a string ) in oracle using java
how to create user defined table (table name is in a string ) oracle using java
String Tablename="student";
stmt=con.prepareStatement("create table"+Tablename+"(name varchar(12),class varchar(12))");
...
0
votes
0answers
148 views
Configuring Eclipse JPA DDL Generation to generate a SQL delimiter
Is there a way to configure Eclipse JPA DDL generation to specify a trailing ';' for each statement on the output file?
For example:
CREATE TABLE PHYSICAL_OBJECT (ID BIGINT NOT NULL, PRIMARY KEY ...
2
votes
1answer
47 views
DDL exception caught on table but not on column
Assuming that the table MyTable already exists, Why does the "In catch" is printed on the first statement, but not on the second?
It seems to be catching errors on duplicate table names but not on ...
1
vote
2answers
68 views
Perl object for representing and querying a mySQL table definition
I don't know completely what I want, but surely someone has had the same need, and has solved it in a far better manner than I could:
I'm looking for some mechanism to extract the data definition of ...
0
votes
1answer
68 views
ERROR : The relation doesn't exist (create table)
I'm new on Postgresql (9.2) and I have a problem creating tables in a specified schema
When I create the same tables in the public schema it works fine but in my "test" schema it doesn't
--> ...




