About 22,800,000 results
Open links in new tab
  1. t-sql stored procedure create scripts - Stack Overflow

    Jul 20, 2010 · You can right-click on the database in the Object Explorer and do a Task > Generate Scripts. That allows you to pick a whole bunch of objects to be scripted (e.g. tables, …

  2. Create SQL INSERT Script with values gathered from table

    Nov 20, 2012 · 62 I need to create a INSERT script in order to insert in another database the same data. If in SQL Server I select "Script table as > INSERT To" I can easily recreate the …

  3. How to generate create script of table using SQL query in SQL Server

    Nov 18, 2010 · I want to generate create table script of already created table in my live database. I know we can generate scripts using right click on table and click on 'script table as' menu and …

  4. Can I generate script of a migration with EF code first and .net core

    48 You can use dotnet core cli to generate script dotnet ef migrations script Also you can put this to file with new power shell out-file command.

  5. How to create an executable command prompt script

    I was thinking about creating a small script to do everything automatically, but I have never written any Windows shell script before and therefore don't even know where to begin. I would like to …

  6. Create SQL script that create database and tables

    Apr 24, 2011 · I would like to create a SQL script that creates the database and tables in a single script. I can create "Create" script using the SQL Management Studio for each case (Database …

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

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

  9. Generate SQL Create Scripts for existing tables with query

    I'm trying to get the CREATE scripts for existing tables within SQL Server 2008. I assume I can do this by querying the sys.tables somehow, however this isn't returning me the CREATE script …

  10. postgresql - How to generate a CREATE script for several tables in ...

    Feb 25, 2015 · In pgAdmin III you can: right-click a table; scripts; CREATE script; save the script from the SQL Editor. If one has to do this for more than one table, is there a way to combine …