That pretty much wraps it up. I currently have everything working on all sides except the blob data portion. I am using Web services and Windows Services writen in VB.NET. Do you have any thoughts?
Main Topics
Browse All TopicsI am looking for the best way to read BLOB data (images) from one SQL Server 2000 database and insert it into another using a sql script. The databases are seperated by the internet.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
I am not sure if the BLOB data is being pulled or not. I am having a problem inserting it. The MSDN help is a little lacking on the subject. I am storing the data in a datatable. The information is then compared to a second database. If the second is differant than the first, a row is either added or edited. Replication can't work due to the internet factor.
Basicly I am looking for the best way to pull the data and store it. I'm not too worried about the internet portion. I believe that is working fine.
I have increased the point value.
I went to look around for you, found a rather excellent site that gives the complete source code to storing / retrieving/ viewing BLOB using SQL. I did a quick overview of it, and it seems pretty complete. Here's the site
http://www.akadia.com/serv
Hope that helps!
No comment has been added lately, so it's time to clean up this TA.
I will leave the following recommendation for this question in the Cleanup topic area:
Accept: morphinex {http:#9367770}
Please leave any comments here within the next seven days.
PLEASE DO NOT ACCEPT THIS COMMENT AS AN ANSWER!
TheLearnedOne
EE Cleanup Volunteer
Business Accounts
Answer for Membership
by: morphinexPosted on 2003-09-15 at 18:37:15ID: 9367510
Please tell us if this is what you have in mind...
You want to write a program in .NET that would grab the BLOB data image from a table in SQL Server. You'd probably want to use SQL DataAdapter.
Then, after you got the BLOB data image, you want to initiate a UDP/TCPIP procedure that would connect with the remote computer that's listening with a server program. When confirmation is recieved from the remote server, the connection would be formed and the transfer would begin.
When the transfer is completely over the protocol, you want the remote server to initiate a function that would connect to its local SQL server, and start a stored procedure that would store the BLOB data image in the table specified. Then, it would resume to listening mode again for any other incoming connection.
Am I close to what you are thinking about?