Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2000 Forums
 Import/Export (DTS) and Replication (2000)
 replication when servers cant see each other

Author  Topic 

mchampse
Starting Member

4 Posts

Posted - 2008-03-28 : 00:27:39
I am working with a company that uses an ASP. They have found their ASP to be lacking in terms of reports, so would like a copy of their database locally. We could do a backup and restore, but I'd rather not so that we can have some stored procedures locally that don't constantly get overwritten. Is there a means of SQL Server essentially creating a sequential log of every insert/update/delete that could then be ftp'ed and loaded in the local database?

sodeep
Master Smack Fu Yak Hacker

7174 Posts

Posted - 2008-03-28 : 09:27:47
Yes with transaction replication. You can ftp only the snapshot to the subscribers. I don't think they have FTP task in DTS in 2000. But SSIS packages do have.
Go to Top of Page

rmiao
Master Smack Fu Yak Hacker

7266 Posts

Posted - 2008-03-28 : 22:45:00
Dts has ftp task. You may bcp data out, ftp to another server then bcp them in.
Go to Top of Page

sodeep
Master Smack Fu Yak Hacker

7174 Posts

Posted - 2008-03-29 : 12:03:21
But how can you force transaction replication to use FTP for insert/delete stataments to go subscribers. It uses TCP/IP .
Go to Top of Page

rmiao
Master Smack Fu Yak Hacker

7266 Posts

Posted - 2008-03-29 : 22:30:38
I only said dts. By the way, it's possible to replicate via ftp. Take look at knowledge base article 'Configuring Proxy Server for SQL Server Replication over the Internet'.
Go to Top of Page

sodeep
Master Smack Fu Yak Hacker

7174 Posts

Posted - 2008-03-29 : 22:39:57
It says SQL server 7.0. Do you think it will work for SQL 2005?
Go to Top of Page

rmiao
Master Smack Fu Yak Hacker

7266 Posts

Posted - 2008-03-29 : 22:46:47
Yes, concept is same.
Go to Top of Page

sodeep
Master Smack Fu Yak Hacker

7174 Posts

Posted - 2008-03-29 : 22:55:03
But only first snapshot goes through FTP and not the incremental changes in transactional rep.
Go to Top of Page

rmiao
Master Smack Fu Yak Hacker

7266 Posts

Posted - 2008-03-29 : 23:27:38
Why?
Go to Top of Page

sodeep
Master Smack Fu Yak Hacker

7174 Posts

Posted - 2008-03-29 : 23:36:58
WHAT???????
Go to Top of Page

rmiao
Master Smack Fu Yak Hacker

7266 Posts

Posted - 2008-03-30 : 00:08:25
The article never say it's for snapshot only, and there are several other kb articles on same topic. Read them.
Go to Top of Page
   

- Advertisement -