Hi Everyone,
I have an SQL question regarding the maintenance of a "rolling" database. At any given time, I would like to thave 1 year of transaction history held in my database. Data is downloaded from the system at monthend and placed into SQL. The month end updates only have 2.5 months of transaction data in them at a time. What I want to be able to do at month end is use a DTS package to upload the month's transaction data and remove that same month from the previous year from the database. (I know, clear as mud)
Is it possible to generate an SQL statement where I will not have to change the date manually each month? There is a table in the DB that holds the date of month end, if I can drive it off of that.
For example:
This is in simple form, I would imagine there will need to be a JOIN statement, and possibly some other code to acheive the desired result. ![[smile] [smile] [smile]](/data/assets/smilies/smile.gif)
Any guidance you can provide is greatly appreciated.
Regards,
Mike
______________________________________________________________
"It Seems All My Problems Exist Between Keyboard and Chair"
I have an SQL question regarding the maintenance of a "rolling" database. At any given time, I would like to thave 1 year of transaction history held in my database. Data is downloaded from the system at monthend and placed into SQL. The month end updates only have 2.5 months of transaction data in them at a time. What I want to be able to do at month end is use a DTS package to upload the month's transaction data and remove that same month from the previous year from the database. (I know, clear as mud)
Is it possible to generate an SQL statement where I will not have to change the date manually each month? There is a table in the DB that holds the date of month end, if I can drive it off of that.
For example:
Code:
DELETE * from TranData WHERE TranDate <= (table.CurrentMonthEnd-367)
![[smile] [smile] [smile]](/data/assets/smilies/smile.gif)
Any guidance you can provide is greatly appreciated.
Regards,
Mike
______________________________________________________________
![[banghead] [banghead] [banghead]](/data/assets/smilies/banghead.gif)