question

Sakthivel avatar image
Sakthivel asked

sql2005 error

Hi All, Can you give me the suggestion for following error in SQL Server2005 Standard Edition. Error: I configure a daily backup job for 9 Databases then again i alter that job for adding 10th database during that alteration i got an error 'No Description Found'
sql-server-2005ssismaintenance-plans
6 comments
10 |1200

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Usman Butt avatar image Usman Butt commented ·
Ok, seems like you are using maintenance plan wizard from SSIS. I have updated the tags accordingly. Frankly speaking, I am not a fan of maintenance plans. They sometimes behave abnormally.
1 Like 1 ·
Usman Butt avatar image Usman Butt commented ·
Can you please share the script for that?
0 Likes 0 ·
Sakthivel avatar image Sakthivel commented ·
Hi Usman, Thanks For your response then my script is DECLARE @jobId BINARY(16) EXEC @ReturnCode = msdb.dbo.sp_add_job @job_name=N'DailyDiffBackupForTaxExcise.Subplan_1', @enabled=1, @notify_level_eventlog=2, @notify_level_email=0, @notify_level_netsend=0, @notify_level_page=0, @delete_level=0, @description=N'No description available.', @category_name=N'Database Maintenance', @owner_login_name=N'Administrator', @job_id = @jobId OUTPUT IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback /****** Object: Step [Subplan_1] Script Date: 06/01/2012 00:53:42 ******/ EXEC @ReturnCode = msdb.dbo.sp_add_jobstep @job_id=@jobId, @step_name=N'Subplan_1', @step_id=1, @cmdexec_success_code=0, @on_success_action=1, @on_success_step_id=0, @on_fail_action=2, @on_fail_step_id=0, @retry_attempts=0, @retry_interval=0, @os_run_priority=0, @subsystem=N'SSIS', @command=N'/Server "$(ESCAPE_NONE(SRVR))" /SQL "Maintenance Plans\DailyDiffBackupForTaxExcise" /set "\Package\Subplan_1.Disable;false"', @flags=0
0 Likes 0 ·
ThomasRushton avatar image ThomasRushton ♦♦ commented ·
Are you using exactly the same configuration of server version / client version that you originally used? Have you applied a service pack in the mean time in one place but not another? What version of SSMS? What exact version of SQL Server?
0 Likes 0 ·
Sakthivel avatar image Sakthivel commented ·
I am using SQL Server 2005 Standard Edition and SSMS also same version.
0 Likes 0 ·
Show more comments

1 Answer

·
Shawn_Melton avatar image
Shawn_Melton answered
Have you worked through this KB? [You receive a "No description found" error message when you create an SSIS package or a SQL Server maintenance plan in SQL Server 2005][1] [1]: http://support.microsoft.com/kb/922546
10 |1200

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.