Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to write a trigger

Status
Not open for further replies.

sabavno

Programmer
Jul 25, 2002
381
0
0
CA
Hi

I am little experienced in Access, but never worked with SQL Server

My task now is to copy SQL table into my access table. Actually I only need to copy a few fields, not the whole table.
The thing is that I want it to be done automatically, say every week.

Please give some ideas on what should I start with.

I'd appreciate your help

Thanks
 
I would recommend you ask this question on a group that focuses on SQL Server. I know they can set up maintenance events but don't know their limitations.
----------------------
scking@arinc.com
Life is filled with lessons.
We are responsible for the
results of the quizzes.
-----------------------
 
First link your SQL table in your Access Database.
Then make an update query to add the new info in your Access table.
 
That is a very simple solution, however, it doesn't answer the original question of automating the process. And since SQL Server has this functionality built in it would probably be easier than developing the capability inside Access.

Management/SQL Server Agent/Jobs
This allows you to build T-SQL scripts and specify job steps and schedule.

----------------------
scking@arinc.com
Life is filled with lessons.
We are responsible for the
results of the quizzes.
-----------------------
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top