About 6,030,000 results
Open links in new tab
  1. How to run sql script using SQL Server Management Studio?

    Apr 22, 2012 · 29 Open SQL Server Management Studio > File > Open > File > Choose your .sql file (the one that contains your script) > Press Open > the file will be opened within SQL …

  2. SQL Server - stop or break execution of a SQL script

    Mar 19, 2009 · Is there a way to immediately stop execution of a SQL script in SQL server, like a "break" or "exit" command? I have a script that does some validation and lookups before it …

  3. reading external sql script in python - Stack Overflow

    Oct 20, 2013 · I am working on a learning how to execute SQL in python (I know SQL, not Python). I have an external sql file. It creates and inserts data into three tables 'Zookeeper', …

  4. SQL Server query to find all permissions/access for all users in a ...

    Aug 13, 2011 · I would like to write a query on a sql 2008 that will report all the users that have access to a specific database, or objects within the database such as tables, views, and stored …

  5. Create SQL INSERT Script with values gathered from table

    Nov 20, 2012 · 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 skeleton …

  6. When do I need to use a semicolon vs a slash in Oracle SQL?

    Jul 3, 2009 · In PL/SQL if you have a subprogram (DECLARE, BEGIN, END) the semicolon used will be considered as part of the subprogram, so you have to use the slash. So my question is …

  7. sql server - Get size of all tables in database - Stack Overflow

    Oct 25, 2011 · Here is another method: using SQL Server Management Studio, in Object Explorer, go to your database and select Tables Then open the Object Explorer Details (either …

  8. Import CSV file into SQL Server - Stack Overflow

    Excel's spreadsheet format will be read as a table and imported directly into a SQL Table) Import the File Using SSIS Write a Custom Script in the import manager to omit/modify the data …

  9. Exporting data In SQL Server as INSERT INTO - Stack Overflow

    Oct 4, 2009 · I am using SQL Server 2008 Management Studio and have a table I want to migrate to a different db server. Is there any option to export the data as an insert into SQL script??

  10. Generate sql insert script from excel worksheet - Stack Overflow

    May 29, 2013 · I have a large excel worksheet that I want to add to my database. Can I generate an SQL insert script from this excel worksheet?