About 30,400,000 results
Open links in new tab
  1. sql - What are DDL and DML? - Stack Overflow

    Apr 5, 2010 · 4 DDL stands for Data Definition Language. DDL is used for defining structure of the table such as create a table or adding a column to table and even drop and truncate table. …

  2. sql - Get VIEW ddl using query - Stack Overflow

    18 For database re-architecture I need to get DDL of each table and view in the database (Oracle). I don't want to go to property of each table/view and get SQL out of it in SQL …

  3. How to generate entire DDL of an Oracle schema (scriptable)?

    58 Can anyone tell me how I can generate the DDL for all tables, views, indexes, packages, procedures, functions, triggers, types, sequences, synonyms, grants, etc. inside an Oracle …

  4. java - How does spring.jpa.hibernate.ddl-auto property exactly …

    For the record, the spring.jpa.hibernate.ddl-auto property is Spring Data JPA specific and is their way to specify a value that will eventually be passed to Hibernate under the property it knows, …

  5. How to generate DDL for all tables in a database in MySQL

    How to generate the DDL for all tables in a database of MySQL at once. I know that the following query will output the DDL for a table. But I want DDL of all tables at once because I am having …

  6. How to generate the "CREATE TABLE" SQL statement for an …

    I have created a table in PostgreSQL. I want to look at the SQL statement used to create the table but cannot figure it out. How do I get the CREATE TABLE SQL statement for an existing table …

  7. sql - Do DDL statements always give you an implicit commit, or …

    Apr 8, 2009 · DDL statements always performs auto commit,after the execution. If you want it to rollback in case of failure (in server side), then you can set certain flags to indicate the failure …

  8. Get DDL of all tables under schema in one database in Snowflake

    Sep 19, 2022 · Can anyone tell me a query to DDL of all tables under schema in database. I know how to get a DDL of a table.

  9. oracle database - SQL Developer: Why are there no DDL options in …

    Feb 20, 2025 · DDL to create a table with the same structure as the query results, into which I can insert the data. However, my Export Wizard does not show any DDL options: Many of the …

  10. generate DDL script from SQL Server database - Stack Overflow

    Jan 9, 2017 · How to generate DDL (with Foreign keys, indexes, etc.) script of all tables from SQL Server database using SQL (select/stored procedure/etc.)? i need everything except the data.