About 25,300,000 results
Open links in new tab
  1. How to retrieve the SQL used to create a view in Oracle?

    Apr 25, 2014 · You can use the following query: SELECT VIEW_NAME, TEXT FROM USER_VIEWS; or you can use ALL_VIEWS, as in SELECT VIEW_NAME, TEXT FROM …

  2. how to get DDL (create query of a table) of a table from SQL Developer

    Jan 20, 2022 · DBMS_METADATA is the answer in general for Oracle. But, if you're using SQL Developer, like you tagged in your question, then you can simply use the DDL command. …

  3. Using Query Builder in Oracle SQL Developer 3.0

    With SQL Developer users can connect to any supported Oracle Database. In this tutorial, you learn how to use the Query Builder feature to graphically and intuitively build your queries.

  4. Building Queries with Query Builder - Oracle

    Using Query Builder, you can search and filter database objects, select objects and columns, create relationships between objects, view formatted query results, and save queries with little …

  5. sql - How to view query that was used to create a table

    Apr 4, 2015 · There are two ways within SSMS to view the SQL statement (known as Data Definition Language, or DDL) used to create a table. Right-click the table and choose "Script …

  6. SQL Worksheet for Basic SQL Syntax - Oracle

    Oracle SQL Developer provides a SQL Worksheet that you can use to query data, by writing simple or complex SQL statements. In this How-To, we look at the most basic of these, select …

  7. Manage Indexes and Views Using SQL Developer - Oracle

    Right click Views and select New View. Enter KING_VIEW in the Name field. Enter the following query in the SQL Query box and click OK. The new view is listed under Views in the …

  8. Retrieve CREATE TABLE Statement with SQL Developer in Oracle

    You have an existing table and want to get a CREATE statement for that table, you can use the SQL tab in the object view. The following tutorial steps show you how to use SQL Developer to …

  9. How to get the script of a table or view in SQL Developer?

    Dec 30, 2008 · I found that I can press SHIFT+F4 for a view in SQL Developer and get the script of the view in Details Tab. But how to move the script to SQL worksheet to edit? It is very easy …

  10. How to retrieve the query I used to create a view?

    Apr 10, 2017 · Is it possible to get the query I used to create said view table ? WHERE TABLE_NAME = 'yourviewname' You can use the documented feature which is documented …

  11. Some results have been removed