Backup failing

  • Hello Masters,

    I have SQL Server 2008, My Maintenance plan for backup(Full, Diff and Log) has been failing from last two days. There are 33 DB (Including system db). Whenever i go to edit my maintenance plan its giving me an error "The task requuires connection to be initialised". After I click to "OK" Its allowing me to editing maintenance plan but I am not able to see any DB in the list at mainenance plan window ! I found that there are about 3 DB whose status has been changed to restored, but there is an option that we can exclude DB whose state is not online. i tried it too but still no luck.

    Can anyone help me to understand why its failing and how to recover from this error ?

    Thanks in advance.

    Jitendra

  • One thing that I found it Namedpipes disabled.. ! Is it affecting connection ? is it due to namedpipes backup job failing ?

    Correct me if I m wrong

  • There is no connection specified at the top.

  • please check sql server integration service is running or not. bcoz maintainace plan is a package.

    to execute package ,integration service should be in running state.

  • The SSIS service is not needed to run packages which are scheduled via SQL Agent, SQL will execute it via the DTExec command line tool.

    If your running the package manually then yes you will need to ensure the SSIS service is online in order for you to connect to SSIS and read the package from the filesystem or MSDB.

  • but if you are running maintainance plan for backup job then it is necessary that intergartion service in running state .

    if it not started then your job will fail.

  • If you run the package manually yes.

    If you run the package by a Agent Job no.

    If you only want to design and to execute SSIS packages, you do not have to start the SSIS service.

    http://support.microsoft.com/kb/942176

    http://sqlblog.com/blogs/tibor_karaszi/archive/2009/08/26/do-maintenance-plans-require-ssis.aspx

    You need to have SSIS installed so that the components are available for SQL to use, but the SSIS service doesnt need to be started, it is only a management interface service called when connecting to SSIS vis SSMS.

  • I second what Anthony said. Your "Connection" field at the top of the maintenance plan window is blank. You need to specify your SQL instance (I would not browse for an instance as that can take a LONG time) and then see if your database list gets populated. If it does not for some reason you may have permissions issues. Any further errors post the screenshot and we can assist further.

    Joie Andrew
    "Since 1982"

  • Hemant.R (12/5/2012)


    but if you are running maintainance plan for backup job then it is necessary that intergartion service in running state .

    if it not started then your job will fail.

    If that was true, then you should not be able to schedule maintenance plans for your database backup\maintenance activities if you didn't install Integration Services.


    Sujeet Singh

  • Hemant.R (12/5/2012)

    --------------------------------------------------------------------------------

    but if you are running maintainance plan for backup job then it is necessary that intergartion service in running state .

    if it not started then your job will fail.

    If that was true, then you should not be able to schedule maintenance plans for your database backup\maintenance activities if you didn't install Integration Services.

    - Divine Flame

    It is easy enough to verify that it is not true. Look at an instance of SQL without Integration Services installed. There should not be any Intergration Services service listed in SQL Server Configuration Manager yet you can still create and run Maintnenance Plans.

    Joie Andrew
    "Since 1982"

  • Joie Andrew (12/5/2012)


    Hemant.R (12/5/2012)

    --------------------------------------------------------------------------------

    but if you are running maintainance plan for backup job then it is necessary that intergartion service in running state .

    if it not started then your job will fail.

    If that was true, then you should not be able to schedule maintenance plans for your database backup\maintenance activities if you didn't install Integration Services.

    - Divine Flame

    It is easy enough to verify that it is not true. Look at an instance of SQL without Integration Services installed. There should not be any Intergration Services service listed in SQL Server Configuration Manager yet you can still create and run Maintnenance Plans.

    Yeah, Thats what I meant when I wrote my comment 😉


    Sujeet Singh

  • Guys got it.. !

    i restored database who was in restoring mode.. and than try my backup job manually and it works..!

    for restoration I used below command;

    Restore Database <Databasename> with Recovery;

    thanks all for your help and suggestions.!

    Regards,

    Jitendra

Viewing 12 posts - 1 through 11 (of 11 total)

You must be logged in to reply to this topic. Login to reply