Automatic record insertion depends on system date sql server 2000?
-
Hi, Im having two tables in sql server 2000 with same structure in first table if the current sysdate is equal to first table BDate column value means the first table that current sysdate record should be automatically insert to the second table,How can i acheive this one..any suggestions... First Table: --------------- Name BDate Content ------------------------------- Kanna 12/5/2008 Hapy birthday Second Table: -------------- Name BDate Content ------------------------------- Regards Kanna
-
Hi, Im having two tables in sql server 2000 with same structure in first table if the current sysdate is equal to first table BDate column value means the first table that current sysdate record should be automatically insert to the second table,How can i acheive this one..any suggestions... First Table: --------------- Name BDate Content ------------------------------- Kanna 12/5/2008 Hapy birthday Second Table: -------------- Name BDate Content ------------------------------- Regards Kanna
-
Create a job to fetch all rows from first table that matches to the current date and copies to second table Schedule the job to execute daily
Regards KP
Thanks for ur reply how should i create job.. im new to this concept..can u give me the example code??? regards Kanna
-
Thanks for ur reply how should i create job.. im new to this concept..can u give me the example code??? regards Kanna