Quantcast
Channel: Backup a Single Table in SQL Server using SSMS
Browsing latest articles
Browse All 29 View Live

re: Backup a Single Table in SQL Server using SSMS

I've used it up to reasonable-sized tables but you need to keep in mind the size of the SQL script generated. That's the main limitation. They get hard to work with when they get large.

View Article



re: Backup a Single Table in SQL Server using SSMS

What size table would be considered small enough to make this the appropriate method?

View Article

re: Backup a Single Table in SQL Server using SSMS

Thanks for this! Helped out tremendously

View Article

re: Backup a Single Table in SQL Server using SSMS

It is very usefull, Thanks a lot :)

View Article

re: Backup a Single Table in SQL Server using SSMS

It is really very use full for me thank you so much.

View Article


re: Backup a Single Table in SQL Server using SSMS

Yes, if all you want to do is copy the table's data to a new table, that works fine. But it won't help with moving the data elsewhere

View Article

re: Backup a Single Table in SQL Server using SSMS

select * into NewTableName from ExistingTableNameIt will not create Constraints and keys on new table.

View Article

re: Backup a Single Table in SQL Server using SSMS

thanx it's help a lot

View Article


re: Backup a Single Table in SQL Server using SSMS

Thanks a lot.. It woprked like charm

View Article


re: Backup a Single Table in SQL Server using SSMS

Hi Ashwini,That creates a new table with the same contents of the old one, not a backup of the table. (Backups can be taken elsewhere).

View Article

re: Backup a Single Table in SQL Server using SSMS

Guys in MSSQL 5 use select * into NewTableName from ExistingTableNamemake sure NewTableName  is not available in DB and ExistingTableName is already available in DB.This query create a new table with...

View Article

re: Backup a Single Table in SQL Server using SSMS

Sorry, don't follow. There are scripting options for creating (or dropping) the table, and/or for including the data when generating the script. This is just a way of scripting a table with it's data...

View Article

re: Backup a Single Table in SQL Server using SSMS

hey man i tried this but the script generated was to create table is it like after generating script should i change the command to backup and run!!!!!! pls advise...

View Article


re: Backup a Single Table in SQL Server using SSMS

how to retrieve table information

View Article

re: Backup a Single Table in SQL Server using SSMS

we can use this method for small size of table only

View Article


re: Backup a Single Table in SQL Server using SSMS

Hi Sunil,Yes, but a local copy of Integration Services can connect to SQL Azure just the same. Or are you trying to copy the table to Azure storage or something? (And is it large?)Regards,Greg

View Article

re: Backup a Single Table in SQL Server using SSMS

Hi Gregi am using Sql azure where Integration Services is not availableThanks

View Article


re: Backup a Single Table in SQL Server using SSMS

Have you considered using Integration Services? That's the type of repetitive task that it's designed to do.

View Article

re: Backup a Single Table in SQL Server using SSMS

I can't comment on mysql

View Article

re: Backup a Single Table in SQL Server using SSMS

It should not be work in mysql 2000

View Article

re: Backup a Single Table in SQL Server using SSMS

You can just script those 3 tables.

View Article


re: Backup a Single Table in SQL Server using SSMS

if i want take backup 3-4 table then please suggest

View Article


re: Backup a Single Table in SQL Server using SSMS

Is there any query to take bakcup of table and database.

View Article

re: Backup a Single Table in SQL Server using SSMS

Thanks a lot. It helped me take my table backups!

View Article

re: Backup a Single Table in SQL Server using SSMS

Does not work in MSSQL Management Studio 2005. It scripts only structure and schema no data.

View Article


re: Backup a Single Table in SQL Server using SSMS

Thanks, it helped.

View Article

re: Backup a Single Table in SQL Server using SSMS

Helpful!!!Thanks:)

View Article

re: Backup a Single Table in SQL Server using SSMS

Hi Cany,If you are using SSMS 2008, steps that you need:- Right click on the DB- Choose "Tasks" and then "Generate Scripts" and "Script Wizard" dialog box will appear. Then click NEXT.- Choose DB...

View Article

re: Backup a Single Table in SQL Server using SSMS

Hi,Why I can not see 'Advanced' button in step4. In the Set Scripting Options pane, click Advanced ?Thanks.

View Article


Browsing latest articles
Browse All 29 View Live




Latest Images