Click here to Skip to main content
15,892,281 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
how to insert data after every 20 minutes , i am fetching data from oracle and saving in sql , oracle database will update every time i want to update sql data base as well ,. using windows form ..
Posted
Updated 18-Dec-12 22:33pm
v2
Comments
CPallini 19-Dec-12 4:46am    
Please elaborate. Do you need to transfer data between databases?
Mohammed Abdul Muqeet 19-Dec-12 4:53am    
Yes i want to transfer data between databases using simple application
for every 15 or 20 min so that if any record inserted in oracle , and the application runs the record will add it to sql database.,
chester_it21 19-Dec-12 5:56am    
Why you not try using schedule in OS for run your app...

Hi,

You can create SSIS package for the same and schedule SSIS package to run as per your need.

In SSIS package create one task to read data from Oracle and with other task Save the fetched data into SQL server.

Hope this will help you.

Refer the below links for more information about SSIS.

Steps to Create your First SSIS Package[^]

http://www.accelebrate.com/sql_training/ssis_tutorial.htm[^]

http://www.devart.com/dotconnect/mysql/docs/Tutorial_SSIS.html[^]
 
Share this answer
 
A timer will handle the 15 or 20 minute ... have a look at http://www.dotnetperls.com/timer[^]
 
Share this answer
 

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