Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

[b]Failure precedence is not triggered. Why? [/b]

Status
Not open for further replies.

mjjks

Programmer
Jun 22, 2005
138
0
0
US
Hello,

I have a SQL task where I drop primary key and index on table:

IF EXISTS (Select * from INFORMATION_SCHEMA.TABLES Where TABLE_NAME = 'cpr_charm_file_current')
ALTER TABLE [RC].chrateimportadmin.CPR_CHARM_FILE_CURRENT
DROP CONSTRAINT PK_CPR_CHARM_FILE_CURRENT

DROP INDEX cpr_charm_file_current.idx_initial_low

On failure workflow precedence, it should jump to another SQL task to log an error into table but that never happens. Step errors out and execution stops.

Any ideas why?

Thanks

mjjks
 
In the package properties, Logging tab, do you have "Fail package on first error" checked?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top