dbTalk Databases Forums  

Re: Change in 'sa' password, scheduled jobs failing

microsoft.public.sqlserver.dts microsoft.public.sqlserver.dts


Discuss Re: Change in 'sa' password, scheduled jobs failing in the microsoft.public.sqlserver.dts forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Rand Boyd [MSFT]
 
Posts: n/a

Default Re: Change in 'sa' password, scheduled jobs failing - 04-20-2004 , 12:35 PM






If this is the case, which it probably is, you can just reschedule the
package to get it to work. But as Sue indicated, before you do this change
you SQL Server registration properties to log you in with Windows
authentication.

Rand
This posting is provided "as is" with no warranties and confers no rights.


Reply With Quote
  #2  
Old   
Sue Hoegemeier
 
Posts: n/a

Default Re: Change in 'sa' password, scheduled jobs failing - 04-20-2004 , 12:47 PM






The only problem with that is that they lose the job history
which is what a few posters with similar issues where trying
to avoid. And rescheduling hundreds of packages wouldn't be
that quick of a task - especially with the default time
issue that shows up if he were to run through the Schedule
Package functionality of the package.

-Sue

On Tue, 20 Apr 2004 17:35:25 GMT, rboyd (AT) onlinemicrosoft (DOT) com
(Rand Boyd [MSFT]) wrote:

Quote:
If this is the case, which it probably is, you can just reschedule the
package to get it to work. But as Sue indicated, before you do this change
you SQL Server registration properties to log you in with Windows
authentication.

Rand
This posting is provided "as is" with no warranties and confers no rights.


Reply With Quote
  #3  
Old   
Darren Green
 
Posts: n/a

Default Re: Change in 'sa' password, scheduled jobs failing - 04-20-2004 , 02:16 PM



In message <s8oa80hqmo1s53k70s2j9cdibcpp6rp2cb (AT) 4ax (DOT) com>, Sue Hoegemeier
<Sue_H (AT) nomail (DOT) please> writes
Quote:
The only problem with that is that they lose the job history
which is what a few posters with similar issues where trying
to avoid. And rescheduling hundreds of packages wouldn't be
that quick of a task - especially with the default time
issue that shows up if he were to run through the Schedule
Package functionality of the package.

-Sue

Assuming the jobs where all created by the right-click schedule package
option, then you could write some SQL to generate some update code. Run
in "Results in Text" mode then paste generated code into a new window -
e.g.

SELECT 'EXEC msdb.dbo.sp_update_jobstep @step_name=''' + step_name +
''',
@command=''DTSRUN /S "(local)" /N "' + step_name + '" /E'
FROM dbo.sysjobsteps
WHERE command LIKE 'DTSRUN %'

(Untested!)

--
Darren Green (SQL Server MVP)
DTS - http://www.sqldts.com

PASS - the definitive, global community for SQL Server professionals
http://www.sqlpass.org



Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.