Showing posts with label developed. Show all posts
Showing posts with label developed. Show all posts

Wednesday, March 21, 2012

Displaying variable values after execution

Hello,

I have just developed my first full package and it has been, ahem, an adventure- but I can see the power of SSIS. I am splitting 1M rows in to up to 11 parts (therefore up to 11M rows) for several files and it takes a matter of seconds!

I have used some variables in the package and would like to see the results of these at the end of execution. They are purely for interest at the moment.

I think I can output them to a flat file, but is it possible to output them to the Immediate window at the end of execution?

I can not figure out how to have a watch on them either- is this possible? Ideally I would like a counter on screen next to my loop containers.

All of the web pages I have seen regarding debugging seem to assume that VB is being used to create the package.

Thanks,

Alan.

I'm not sure how the output the variables to the Immediate window. You could log them, or output them to a flat file, as you suggested.

You can put a watch on them. To do this, set a breakpoint on a task (right-click on it). Pick on towards the end of your packageif you want to see the values at the end. When you run the package and it hits the breakpoint, you can type the variable name into the watch window.

|||You could also use a script component to issue a MsgBox, but that would only be handy when debugging.

Displaying variable values after execution

Hello,

I have just developed my first full package and it has been, ahem, an adventure- but I can see the power of SSIS. I am splitting 1M rows in to up to 11 parts (therefore up to 11M rows) for several files and it takes a matter of seconds!

I have used some variables in the package and would like to see the results of these at the end of execution. They are purely for interest at the moment.

I think I can output them to a flat file, but is it possible to output them to the Immediate window at the end of execution?

I can not figure out how to have a watch on them either- is this possible? Ideally I would like a counter on screen next to my loop containers.

All of the web pages I have seen regarding debugging seem to assume that VB is being used to create the package.

Thanks,

Alan.

I'm not sure how the output the variables to the Immediate window. You could log them, or output them to a flat file, as you suggested.

You can put a watch on them. To do this, set a breakpoint on a task (right-click on it). Pick on towards the end of your packageif you want to see the values at the end. When you run the package and it hits the breakpoint, you can type the variable name into the watch window.

|||You could also use a script component to issue a MsgBox, but that would only be handy when debugging.

Saturday, February 25, 2012

Displaying a SQL Server Report 2005 in a PDA....

Hello All,

Good day!

I have developed a report using SQL Server Reporting Services.

I can view the report in a Browser, but when I try to view the Report in a Pocket PC 2003 Emulator, the report displays but without the data or the contents of the report....

I tried appending &rc:=HTML3.2 to the end as suggested by in one of the posts but no luck....

Any suggestion or directions will be higly appreciated....

Regards,

Srikanth Pai

Hello,

To specify a rendering extension on a report server URL you need to use this syntax:

rs:Format=HTML3.2

Also, as far as I know PPC 2003 browsers support HTML 4.0. Why do you want to render to HTML 3.2?

Thanks,

Chris

Displaying a SQL Server Report 2005 in a PDA....

Hello All,

Good day!

I have developed a report using SQL Server Reporting Services.

I can view the report in a Browser, but when I try to view the Report in a Pocket PC 2003 Emulator, the report displays but without the data or the contents of the report....

I tried appending &rc:=HTML3.2 to the end as suggested by in one of the posts but no luck....

Any suggestion or directions will be higly appreciated....

Regards,

Srikanth Pai

Hello,

To specify a rendering extension on a report server URL you need to use this syntax:

rs:Format=HTML3.2

Also, as far as I know PPC 2003 browsers support HTML 4.0. Why do you want to render to HTML 3.2?

Thanks,

Chris