Click here to Skip to main content
15,892,839 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I tried linked server to transfer data from local db to production db

It runs ok but has some issue
1: Performance : Linked server query takes too much time to perform.

for ex :select * from server1.udupikrishna.dbo.emp1

above query takes too much time to get dataset.

IS their any other service like linked server to transfer data from Local DB to Production DB

i am not doing transfer only once .. And also want to implement it in ASP.net project..So searching for different service which can easly done through asp.net
Posted
Updated 27-Mar-13 10:10am
v3

1 solution

1) Your performance depends on many things.
2) For transferring data between two remote databases you have some options, like this using the SQL Management Studio data import and export features: http://msdn.microsoft.com/en-us/library/ms140052.aspx[^]

[Update]
If you check the link, you will notice, that you can configure the same data transfer as SSIS package task. You can read in this article[^] how to run such a package from asp.net.
 
Share this answer
 
v2
Comments
k@ran 27-Mar-13 16:09pm    
But i am not doing transfer only once .. And also want to implement it in ASP.net project..So searching for different service which can easly done through asp.net
Zoltán Zörgő 27-Mar-13 16:10pm    
I doubt you have read the link. You can make SSIS package too, not only interactive transfer.
k@ran 27-Mar-13 16:38pm    
I have configureg my application in local intranet. so there i need some client requirement to move some secure data from local db to production daily..
Zoltán Zörgő 27-Mar-13 16:39pm    
Ok, and that excludes SSIS?
k@ran 27-Mar-13 16:42pm    
Using SSIS i am not able to fullfill my requirement as it moves all data . As i have to upload data from local and after sucessiful uploading i want to delete that information from local.

Is there any Stored procedure or anything else to achieve my goal please help ..

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900