SQL Server 2005, export table into inserts query - sql

I'm not able to find in SQL Server 2005 the utility that phpmyadmin has for exporting tables.
I need a way to dump all info a table contains in a query with all the instert into in it.
How can I do that with SQL Server 2005?

Use the Database publishing wizard tool you can find it under the SQL Server install directory

Related

How to export SQL Server 2005 tables to SQL Server Compact database

I don't know if this is a newbie question or not, I want to export some tables from "full" SQL Server 2005 database to a SQL Server Compact Edition database through a CLR stored procedure.
I know it is possible through SSIS.
This article shows how to migrate between sql server and sql server compact using SQL Server Compact Toolbox. so you can use the sql server compact script generated from your database to create CLR stored procdure

How can I export the schema of my sql server 2008 to another computer?

I have created a database on Sql Server 2008 and I want to export the schema (I don't need the data) to another computer?
You can generate script to script out your schema to a sql file and then execute that in another server, right click on the database in management studio, select Task-> Generate Scripts

SQL Server Agent - to update SQL table from Oracle

this is a newbie questions...
is it possible to write a job that will update my sql (SQL Server 2008) table nightly - from an oracle db? i can't seem to find any tutorials online. please help.
i have already created a ODBC connection in the Data Source Administrator....
You could setup your Oracle database as a Linked Server and then create a SSIS package that performs the update. This SSIS package could run on a schedule (Job).

How to script sql server database diagrams in sql server 2005?

I use sql server 2005 as my database for my web application.... I generated scripts of the database by,
Database->Right Click->Tasks->Generate Scripts
I can script all my Tables,Stored Procedures,User Defined functions,Views,Users....
All i missed was database diagrams because there was no option for scripting it.. How to include them into the new database...
Take a look at this.

How can I transform database from sql server 2005 to 2000

how can I transform database from sql server 2005 to 2000
Use SSIS to export the database directly to SQL Server 2000.
First make sure that you aren't using any native 2005 features like included columns on indexes, XML features, etc. Then you can script the schema out using SSMS, and export the data using BCP or SSIS to SQL 2000. Some vendor tools exist like RedGate SQL Compare and Data Compare that make doing this a whole lot easier if you have primary keys defined on your tables.