python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
how to get DDL (create query of a table) of a table from SQL Developer
am using Spool in SQL Developer to get the Output into a CSV file.
where as i have heard of use of DDL command can b done to get the create query of a table.
my query is as below
spool "path/...
Salva
Votes: 0
Answers: 2
PostgreSQL - Get DDL for materialized view
I need to be able to get the DDL from a materialized view. We are wanting to track how often a MV gets updated/changed, and I want to be able to automate this process. I just need the DDL for the MV...

Chris S
Votes: 0
Answers: 1
how to create new table in mysql with date default value for current date?
I am trying the following code:
create table People (
first_name varchar(15) not null,
last_name varchar(15) not null,
registration_date date not null);
How can I make a default value for the ...
ILovePizza
Votes: 0
Answers: 2
Abort SQL before DDL operation being executed
My question if it's possible to avoid the execution of a DDL operation in an SQL script if the previous operation returns an Error.
SQL script
WHENEVER SQLERROR EXIT SQL.SQLCODE ROLLBACK;
MERGE finalT...
Jorge Vega Sánchez
Votes: 0
Answers: 0