Click here to Skip to main content
15,886,362 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Example -
Database containing several tables - i choose one table name - hotel.
it has 1000 entries in it .
Suppose today 100 entries are added as data in hotel table, all this process is offline on my pc .
what i do ,export the table , open online database find the table , delete all entries from it , then import the table which i exported early and re-insert all data again . This how i update my database tables daily ,

I Have Tried Online Entries From my pc but , it generate a error ( max user connection ) . So i do all database process offline and then changes are done online as mention above .

So anybody have any idea.
Posted
Updated 19-Feb-13 0:15am
v2

Crate a stored procedure for updating and run this procedure automatically every day by using SQL job
for set up the sql job please follow this link
http://msdn.microsoft.com/en-us/library/ms135739.aspx

Hope this helps
 
Share this answer
 
Hi,
Please create a SSIS package with all of your steps (or if you can give more details I can help you.)
Schedule the package with SQL Server Agent.
 
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