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

    Dec 31, 2016 · 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. Generate table DDL via query on MySQL and SQL Server

    Oct 8, 2009 · Is there an easy way to extract table DDL information, via a query, using either Ms or My SQL server? (preferably both?) For example, using MySQL Administrator / Navicat for …

  3. 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 …

  4. Is there a tool to generate a full database DDL for SQL Server?

    Apr 6, 2017 · The other benefit of working with DDL files is that I don't have to connect to the database to generate a DDL each time I need to review table definitions. In Toad for Oracle, …

  5. 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 …

  6. sql - How can I generate (or get) a ddl script on an existing table in ...

    Oct 8, 2014 · How can I generate a DDL script on an existing table in oracle? I am working on a project where I have to re-create some tables that are present in Oracle table into Hive.

  7. 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 …

  8. 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, …

  9. 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 …

  10. How to generate script from sql developer - Stack Overflow

    Aug 8, 2011 · How to take script for schema of the tables, stored procedures of Oracle through SQL Developer tool (SQLPLUS command line interface)?