SamIAm
SamIAm

Reputation: 2491

During SSIS execution, how do I view the Errors?

I cannot view the error as it cuts off in visual studio. Is there a window that I am missing out on? At the moment, I have been copying and pasting the error in a notepad so that I can see the actual error message.

enter image description here

Upvotes: 4

Views: 14749

Answers (3)

Allan F
Allan F

Reputation: 2288

Menu Option View | Output.

But..

It seems that the Flat File Source component can have an error but no error shows in the Output window.

e.g. enter image description here

Upvotes: 0

billinkc
billinkc

Reputation: 61211

Actually, the View -> Error List will show you things wrong with your package at design time.

What you're seeing on the Results tab, the run-time information, is also going to be available to you in the Output window View -> Output or Ctrl+Alt+O for those who prefer keystrokes.

Upvotes: 9

Salman Syed
Salman Syed

Reputation: 568

You should be able to look at the errorlist. View -> ErrorList

Or you can put debug points at various intervals and catch it that way and see a whole lot of information.

Unless you are looking for something else, this is the basic error output you get from SSIS.

Upvotes: 0

Related Questions