About 450,000 results
Open links in new tab
  1. Import / Export database with SQL Server Server Management …

    Exporting and Importing Database with MS SQL Server Management Studio. 1.Exporting Database from SQL Server. On Object Explorer right click database you want to export listed in Databases node. Select Tasks then select Export Data-tier Application. Click Export Settings. Make sure Save to local disk is checked

  2. SQL Server: how do I export entire database? - Stack Overflow

    If you want to export / save all data of a database into a .sql file, do this: Right click on the database in SQL Server Management Studio; Tasks-> Generate Scripts; Script entire database and all database objects; Next; Click - Advanced; Scroll down to Types of data to script and set from Schema only -> Schema and data-> Ok

  3. Export database schema into SQL file - Stack Overflow

    You can generate scripts to a file via SQL Server Management Studio, here are the steps: Right click the database you want to generate scripts for (not the table) and select tasks - generate scripts; Next, select the requested table/tables, views, stored procedures, etc (from select specific database objects)

  4. Export table data from one SQL Server to another

    Jun 13, 2012 · Select Tasks - Export Data. Select Sql Server Native Client in the data source. Select your authentication type (Sql Server or Windows authentication). Select the source database. Next, choose the Destination: Sql Server Native Client; Type in your Server Name (the server you want to copy the table to).

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

    Nov 3, 2015 · Export data quickly to T-SQL for MSSQL and MySQL syntax. CSV, TXT, XML are also supported! Harness the full potential, power, and speed that SQL has to offer. Don't wait for Access or Excel to do scripting work for you that could take several minutes to do -- let SQL Server do it for you and take all the guess work out of exporting your data!

  6. sql server - SQL - How to backup a database and export as a MDF …

    Feb 1, 2017 · If what you want is a replica of your SQLEXPRESS/MDF local file- on a remote server (SQL Server 2005) You can right click in the "Server Explorer" on your db.mdf file and press "Publish to provider..." You can choose a variety of compatibilities with SQL Server 2005, 2008, etc. The output is a .sql query file ..

  7. sql server - How to export all data from table to an insertable sql ...

    Dec 12, 2013 · I have a Table (call it A_table) in a database (call it A_db) in Microsoft SQL Server Management Studio, and there are 10 rows. I have another database (call it B_db), and it has a Table (call it B_table), which has the same column settings as A_table has. But the B_table is empty. What I want: Copy every rows from A_table to B_table.

  8. sql server - How to export database with data in MSSQL ... - Stack …

    Aug 21, 2013 · SQL Server has much better options: Take a real full backup (.bak file), and then restore the backup Setup a connection between the two servers and use the "Copy Database" wizard

  9. Best (easiest) way to make a SQL Server dump and import that …

    An easy way would be to use SQL Server Management Studio, in the Object Explorer right click on the database you want to export, select Tasks-> Back Up, then select a destination and file name in the Destination box at the bottom of the dialog. You can play around with the various settings, but you don't need to.

  10. sql - How do I back up a database to a .bak file? - Stack Overflow

    May 19, 2009 · Go to Microsoft Server Management Studio and right click on your database name. Go to "Tasks" -> "Back Up..." Then assign your properties, ensure that "Backup Type" is full. Then at the right there is a button "Add" press that and set your filename, ensure that you place the extension .bak at the end of the file name.