Log in
::
Register
::
Not logged in
Home
Tags
Articles
Editorials
Stairways
Forums
Scripts
Videos
Blogs
QotD
Books
Ask SSC
SQL Jobs
Training
Authors
About us
Contact us
Newsletters
Write for us
Recent Posts
Recent Posts
Popular Topics
Popular Topics
Home
Search
Members
Calendar
Who's On
Home
»
SQL Server 2008
»
SQL Server Newbies
»
Backup failing
12 posts, Page 1 of 2
1
2
»»
Backup failing
Rate Topic
Display Mode
Topic Options
Author
Message
jitendra.padhiyar
jitendra.padhiyar
Posted Tuesday, December 04, 2012 10:43 PM
SSC-Enthusiastic
Group: General Forum Members
Last Login: Thursday, April 18, 2013 3:09 AM
Points: 167,
Visits: 440
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
Post Attachments
Error.jpg
(
13 views,
88.85 KB
)
Post #1392787
jitendra.padhiyar
jitendra.padhiyar
Posted Tuesday, December 04, 2012 11:31 PM
SSC-Enthusiastic
Group: General Forum Members
Last Login: Thursday, April 18, 2013 3:09 AM
Points: 167,
Visits: 440
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
Post #1392800
anthony.green
anthony.green
Posted Wednesday, December 05, 2012 2:36 AM
SSCertifiable
Group: General Forum Members
Last Login: Friday, April 12, 2013 3:51 AM
Points: 5,075,
Visits: 4,831
There is no connection specified at the top.
Want an answer fast? Try here
How to post data/code for the best help - Jeff Moden
Need a string splitter, try this - Jeff Moden
How to post performance problems - Gail Shaw
CrossTabs-Part1
&
Part2 - Jeff Moden
SQL Server Backup, Integrity Check, and Index and Statistics Maintenance - Ola Hallengren
Managing Transaction Logs - Gail Shaw
Troubleshooting SQL Server: A Guide for the Accidental DBA - Jonathan Kehayias and Ted Krueger
Post #1392857
Hemant.R
Hemant.R
Posted Wednesday, December 05, 2012 4:26 AM
SSC Rookie
Group: General Forum Members
Last Login: Yesterday @ 12:44 AM
Points: 45,
Visits: 175
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.
Post #1392912
anthony.green
anthony.green
Posted Wednesday, December 05, 2012 4:28 AM
SSCertifiable
Group: General Forum Members
Last Login: Friday, April 12, 2013 3:51 AM
Points: 5,075,
Visits: 4,831
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.
Want an answer fast? Try here
How to post data/code for the best help - Jeff Moden
Need a string splitter, try this - Jeff Moden
How to post performance problems - Gail Shaw
CrossTabs-Part1
&
Part2 - Jeff Moden
SQL Server Backup, Integrity Check, and Index and Statistics Maintenance - Ola Hallengren
Managing Transaction Logs - Gail Shaw
Troubleshooting SQL Server: A Guide for the Accidental DBA - Jonathan Kehayias and Ted Krueger
Post #1392913
Hemant.R
Hemant.R
Posted Wednesday, December 05, 2012 4:44 AM
SSC Rookie
Group: General Forum Members
Last Login: Yesterday @ 12:44 AM
Points: 45,
Visits: 175
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.
Post #1392918
anthony.green
anthony.green
Posted Wednesday, December 05, 2012 4:52 AM
SSCertifiable
Group: General Forum Members
Last Login: Friday, April 12, 2013 3:51 AM
Points: 5,075,
Visits: 4,831
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.
Want an answer fast? Try here
How to post data/code for the best help - Jeff Moden
Need a string splitter, try this - Jeff Moden
How to post performance problems - Gail Shaw
CrossTabs-Part1
&
Part2 - Jeff Moden
SQL Server Backup, Integrity Check, and Index and Statistics Maintenance - Ola Hallengren
Managing Transaction Logs - Gail Shaw
Troubleshooting SQL Server: A Guide for the Accidental DBA - Jonathan Kehayias and Ted Krueger
Post #1392920
Joie Andrew
Joie Andrew
Posted Wednesday, December 05, 2012 4:58 AM
Mr or Mrs. 500
Group: General Forum Members
Last Login: Today @ 3:10 AM
Points: 535,
Visits: 1,012
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"
Post #1392923
Divine Flame
Divine Flame
Posted Wednesday, December 05, 2012 5:23 AM
Ten Centuries
Group: General Forum Members
Last Login: Friday, May 17, 2013 2:00 PM
Points: 1,076,
Visits: 1,914
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
Post #1392932
Joie Andrew
Joie Andrew
Posted Wednesday, December 05, 2012 5:37 AM
Mr or Mrs. 500
Group: General Forum Members
Last Login: Today @ 3:10 AM
Points: 535,
Visits: 1,012
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"
Post #1392941
« Prev Topic
|
Next Topic »
12 posts, Page 1 of 2
1
2
»»
Permissions
You
cannot
post new topics.
You
cannot
post topic replies.
You
cannot
post new polls.
You
cannot
post replies to polls.
You
cannot
edit your own topics.
You
cannot
delete your own topics.
You
cannot
edit other topics.
You
cannot
delete other topics.
You
cannot
edit your own posts.
You
cannot
edit other posts.
You
cannot
delete your own posts.
You
cannot
delete other posts.
You
cannot
post events.
You
cannot
edit your own events.
You
cannot
edit other events.
You
cannot
delete your own events.
You
cannot
delete other events.
You
cannot
send private messages.
You
cannot
send emails.
You
may
read topics.
You
cannot
rate topics.
You
cannot
vote within polls.
You
cannot
upload attachments.
You
may
download attachments.
You
cannot
post HTML code.
You
cannot
edit HTML code.
You
cannot
post IFCode.
You
cannot
post JavaScript.
You
cannot
post EmotIcons.
You
cannot
post or upload images.
Copyright © 2002-2013 Simple Talk Publishing. All Rights Reserved.
Privacy Policy.
Terms of Use.
Report Abuse.