Hi Prabhat,
Can you explain some more?
Why are you hesitant to use the SSIS maintenance plan?
It should be possible to achieve similar functionality using t-sql backup
commands and using "XP_" stored procedures, but why would you want that??
Regards, Rob
> Hi friends,
>
[quoted text clipped - 13 lines]
>
> Please suggest.
Prabhat - 01 Jul 2008 19:04 GMT
On Jul 1, 12:18 pm, TheRealRobbie
<TheRealRob...@discussions.microsoft.com> wrote:
> Hi Prabhat,
>
[quoted text clipped - 25 lines]
>
> - Show quoted text -
I want the TASKs (both backup and delete old files) to be in ONE place
in a Agent JOB so that I can schedule those.... Also If the TASK will
be in SQL query within a JOB (without reference to package) that will
be easy to manage too (instead of managin the package and JOB, manage
ONLY JOB which has all). Hope I am making it clear :)
Thanks
> Hi friends,
>
[quoted text clipped - 13 lines]
>
> Please suggest.
Hi
You can quite easily put the backup command in a job step, if you want to
tailor it to include a date/time in the file name you can use the EXEC
command and create the command by concatentating a string.
For the file deletion you can use the COM filesystem object and use sp_OA*
procedures.
John