If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > Microsoft SQL Server > Backup - Restore Process

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 08-25-03, 13:48
fortizv fortizv is offline
Registered User
 
Join Date: Aug 2003
Posts: 7
Question Backup - Restore Process

Hi all.

I'm a newbie user of sqlserver. I need that my application make a table backup to send this file by mail to other users and then each one Restore this file in your database ( only the new information not all table )

I can create the Backup File but i don't now how restore this file in others database.

You can help me.

Thank in Advance
Franklin
Reply With Quote
  #2 (permalink)  
Old 08-26-03, 05:43
rhigdon rhigdon is offline
Registered User
 
Join Date: Oct 2001
Location: Naples, FL
Posts: 273
If the target server is on your network you could simply use an insert with a NOT in command.

If it is not on your network, you could use DTS to create a text file, ftp or email them the file, have them import the file into a staging table, then do their NOT in command with the insert, something like this

insert into targettable select * from stagingtable where [primary key] not in (select [primary key] from targettable)

HTH
__________________
---------------
Ray Higdon MCSE, MCDBA, CCNA
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On