About 11,100,000 results
Open links in new tab
  1. 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 …

  2. t-sql stored procedure create scripts - Stack Overflow

    I have a bunch of stored procedure names. I want to export the create script for each of the stored procedure. What is the best way to do it? Right now I am manually selecting the stored proc in ...

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

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

  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

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

  7. mysql - How to generate a create table script for an existing table …

    Nov 18, 2014 · In MySQL workbench, you get the already created table script, by just right click on the specific table, then select send to SQL editor>>create statement. That's all you will get …

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

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

  10. shell - How to create a script automating CMD (command prompt) …

    Oct 16, 2019 · 2 I would like to create a shell script that automatically open the CMD and type 2 lines of command This is the herierchy open CMD Change directory (cd d:\mydirectory\drivers …