Ssis Failed Validation and Returned Validation Status "Vs_Isbroken"

SSIS failed validation and returned validation status "VS_ISBROKEN"

I ended up solving the problem which was overloading tempDB. When I slowed the process down to one command to tempDb at a time it all ran through smoothly.

SSIS Error: VS_NEEDSNEWMETADATA

I finally found the issue and here's how I did it.

Because the error messages I was getting from SSMS weren't very insightful I first opened up my remote desktop and logged into the server. Then I went to Administrative Tools>Event Viewer and then Windows Logs>Application to see if the failed event would provide greater detail.

enter image description here
enter image description here
It didn't give me much still.

The next step I took was to run the package from the command line because the messages should be more verbose. Opened up cmd, changed directory to the one my package was in and then...

DTEXEC /FILE YourPackageName.dtsx

Finally, the error message here showed a missing column in the tables the package was trying to write to. I added those columns and voila!

ssis Package validation error ole db source failed

VS_NEEDSNEWMETADATA shows up when the underlying data behind one of the tasks changes. The fastest solution will probably be to just delete and re-create each element which is throwing an error.



Related Topics



Leave a reply



Submit