|
|
|
Old Hand
      
Group: General Forum Members
Last Login: Wednesday, December 19, 2012 10:42 AM
Points: 319,
Visits: 47
|
|
|
|
|
|
Grasshopper
      
Group: General Forum Members
Last Login: Thursday, May 13, 2010 12:54 PM
Points: 11,
Visits: 55
|
|
| Hello I was wondering how do you execute that statement. I saw that you said it was a vb script. So in my sql 05 database i would have to call that script or could i hard code it in the database. If so could you give detail insturctions.
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Tuesday, January 06, 2009 2:29 PM
Points: 3,
Visits: 3
|
|
As the other poster asked some instructions on running this would be grand!
Thanx in advance
Karuana
|
|
|
|
|
Grasshopper
      
Group: General Forum Members
Last Login: Wednesday, January 23, 2013 7:26 AM
Points: 16,
Visits: 106
|
|
Thanks this worked brilliantly for me . It has saved me much time and I now understand a bit more about vbs. :)
I have put this script into the last job step on my backup job in sql2005 . select type as activeXscript and language vb script and it runs !
Lovely job
Thanks again Lizzy
|
|
|
|
|
Grasshopper
      
Group: General Forum Members
Last Login: Wednesday, January 23, 2013 7:26 AM
Points: 16,
Visits: 106
|
|
Ahhhh after running this successfully for a month from 14/08/2008 I discovered a blip when the day changes from 9 th to the 10th (Discovered this on the 9/11/2008 which spooked me a bit ) The DateCheck function can not handle the extra digit on the expiration num and deletes the new files rather than the old files. However this is inconsistant as the results from my log file show:
-----------------------------------------------
YToday num =2008 MToday num =9 DToday num 15 YExpiration num = 2008 MExpiration num = 9 DExpiration num =14 lastmodified num = 200899 Expiration Num =2008914 DateCheck new
YToday num = 2008 MToday num = 9 DToday num =15 YExpiration num =2008 MExpiration num = 9 DExpiration num =14 lastmodified num =200888 Expiration Num = 2008914 database deleted = mydatabase_db_200808081830.bak,8/8/2008 6:30:02 PM -------------------------------------
LastmodifiedNum < ExpirationNum Why Then is 200888 < 2008914 correct but 200899 < 2008914 is not correct ?
I have amended the function to use DateDiff this is working well so far.
Function DateCheck(Lastmodified) DiffADate = DateDiff("d", Lastmodified,Date ) LogFile.Writeline "Date difference = " & " " & DiffADate If DiffADate > Days then DateCheck="old" LogFile.Writeline "DateCheck " & "" & DateCheck else DateCheck="new" LogFile.Writeline "DateCheck " & "" & DateCheck end if end Function
Will keep you posted of my progress. Cheers Lizzy
|
|
|
|
|
SSC Veteran
      
Group: General Forum Members
Last Login: Today @ 12:19 PM
Points: 280,
Visits: 1,028
|
|
DOes it works with sql server 2008R2?
Aim to inspire rather than to teach. SQL Server DBA
|
|
|
|