Thursday, March 29, 2012
Error when trying to filter a table
I have 2 tables in a report that runs against the same dataset. And
when I try to filter on a field called T0650_CONDITION_TYPE_ID, I get
an error.
"The processing of filter expression for the table 'table2' cannot be
performed. The comparison failed. Please check the data type retured
by filter expression."
The filter is =Fields!T0650_CONDITION_TYPE_ID.Value = 2
I've searched the internet and found different suggestions to
solutions but none of them works.
I've tried to =2 in the value-field, I have tried to convert, but I
doesn't get it to work.
And I need this filter to just show T0650_CONDITION_TYPE_ID.Value = 1
in one table and T0650_CONDITION_TYPE_ID.Value = 2 in the other.
I have tried to hide, but then I get empty spaces, and it doesn't look
good.
T0650_CONDITION_TYPE_ID is a tinyint.
I'm grateful for any help
BR LottaCould you try
=(CInt(Fields!T0650_CONDITION_TYPE_ID.Value) = 2) ?
--
This posting is provided "AS IS" with no warranties, and confers no rights.
"Lotta" <lotta.svensson@.europeiska.com> wrote in message
news:7ec6061a.0503020012.eb2f8f0@.posting.google.com...
> Hi!!
> I have 2 tables in a report that runs against the same dataset. And
> when I try to filter on a field called T0650_CONDITION_TYPE_ID, I get
> an error.
> "The processing of filter expression for the table 'table2' cannot be
> performed. The comparison failed. Please check the data type retured
> by filter expression."
> The filter is =Fields!T0650_CONDITION_TYPE_ID.Value = 2
> I've searched the internet and found different suggestions to
> solutions but none of them works.
> I've tried to =2 in the value-field, I have tried to convert, but I
> doesn't get it to work.
> And I need this filter to just show T0650_CONDITION_TYPE_ID.Value = 1
> in one table and T0650_CONDITION_TYPE_ID.Value = 2 in the other.
> I have tried to hide, but then I get empty spaces, and it doesn't look
> good.
> T0650_CONDITION_TYPE_ID is a tinyint.
> I'm grateful for any help
> BR Lotta
Tuesday, March 27, 2012
Error when transferring data from local database to hosted database
Hi,
I tried to tranfers some database tables from my local SQL Server 2000 database to a hosted database (SQL Server 2005) MSSQL Management Studio 2005. I did the same job successfully before also from my local MSSQL2000 to another hosted MSSQL2005 database. However, this time I encounter the following problem (in red below).
I opened a ticket for support from my service provider but they seemed to have no idea. Therefore, I must seek for help on this forum. Could anyone please give me some advice? Thank you very much in advance.
Regards,
Kenny
Messages
* ERROR : errorCode=-1073548784 description=Executing the query "CREATE TABLE [islandwidecatering.com.sg].[dbo].[Affiliates] (
[AffiliateId] int NOT NULL,
[VendorId] int,
[StartDate] datetime,
[EndDate] datetime,
[CPC] float NOT NULL,
[Clicks] int NOT NULL,
[CPA] float NOT NULL,
[Acquisitions] int NOT NULL
)
" failed with the following error: "Could not allocate space for object 'sys.syscolpars'.'clst' in database 'islandwidecatering.com.sg' because the 'PRIMARY' filegroup is full. Create disk space by deleting unneeded files, dropping objects in the filegroup, adding additional files to the filegroup, or setting autogrowth on for existing files in the filegroup.". Possible failure reasons: Problems with the query, "ResultSet" property not set correctly, parameters not set correctly, or connection not established correctly.
helpFile= helpContext=0 idofInterfaceWithError={8BDFE893-E9D8-4D23-9739-DA807BCDC2AC} (Microsoft.SqlServer.DtsTransferProvider)
Error when shrinking data file in SQL 2005
I got the same error,
When i moved all of user tables and indexes out of primary FG and to a new
FG, my Primary is left with around 17GB of which less than a 1GB is actually
used, and when I ran shrink file on the only file on that FG, it took ages.
then I stoped it (in 2000 it would have taken max 2-3 hours, our SAN is not
that bad :-) ). when I ran it again I get the error described.
when I back up the db and restore it, then I can shrink the file.
this is a db in simle mode, dev environment. worried what happens when we go
to production with this.
error:
File ID 1 of database ID X cannot be shrunk as it is either being shrunk by
another process or is empty.
Msg 0, Level 11, State 0, Line 0
A severe error occurred on the current command. The results, if any, should
be discarded.
CTS DBA
"XNMB" wrote:
> i came accross this problem too. what did was to restart the service
> and executed dbcc shrinkfile again. that time it succeeded.
>
I tried detach and re-attach the database fie and run DBCC SHRINKFILE
But I wouldn't recommend shrinking. Here's an article by the great Tibor
Karaszi on database shrinking
http://www.karaszi.com/SQLServer/info_dont_shrink.asp
"CTS_DBA" <CTSDBA@.discussions.microsoft.com> wrote in message
news:630320F3-22A4-4D33-A245-54D14D4784FD@.microsoft.com...[vbcol=seagreen]
> Hi,
> I got the same error,
> When i moved all of user tables and indexes out of primary FG and to a new
> FG, my Primary is left with around 17GB of which less than a 1GB is
> actually
> used, and when I ran shrink file on the only file on that FG, it took
> ages.
> then I stoped it (in 2000 it would have taken max 2-3 hours, our SAN is
> not
> that bad :-) ). when I ran it again I get the error described.
> when I back up the db and restore it, then I can shrink the file.
> this is a db in simle mode, dev environment. worried what happens when we
> go
> to production with this.
> error:
> File ID 1 of database ID X cannot be shrunk as it is either being shrunk
> by
> another process or is empty.
> Msg 0, Level 11, State 0, Line 0
> A severe error occurred on the current command. The results, if any,
> should
> be discarded.
> --
> CTS DBA
>
> "XNMB" wrote:
|||hi,
thanks for the reply.
I know what you mean, but what I don't understand is why shrinkfile wouldn't
work when there's so much free space in the file.
over 8GB
if the original database shrunk in SQL 2000 it works perfectly.
Thanks
CTS DBA
"bass_player [SBS-MVP]" wrote:
> I tried detach and re-attach the database fie and run DBCC SHRINKFILE
> But I wouldn't recommend shrinking. Here's an article by the great Tibor
> Karaszi on database shrinking
> http://www.karaszi.com/SQLServer/info_dont_shrink.asp
> "CTS_DBA" <CTSDBA@.discussions.microsoft.com> wrote in message
> news:630320F3-22A4-4D33-A245-54D14D4784FD@.microsoft.com...
>
>
Monday, March 26, 2012
Error when rendering to PDF
My report has one Matrix in it - no tables, lists or sub-reports.
Failure sending mail: Exception of type
Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
thrown.
From ReportServerService log:
ReportingServicesService!reportrendering!424!04/22/2005-15:06:03:: e ERROR:
Throwing
Microsoft.ReportingServices.ReportProcessing.WrapperReportRenderingException:
Exception of type
Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
thrown., ;
Info:
Microsoft.ReportingServices.ReportProcessing.WrapperReportRenderingException:
Exception of type
Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
thrown. -->
Microsoft.ReportingServices.ReportRendering.ReportRenderingException:
Exception of type
Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
thrown. --> System.NullReferenceException: Object reference not set to an
instance of an object.
at
Microsoft.ReportingServices.Rendering.ImageRenderer.Matrix.FindHeaderRowsForVerticalResize(Int32
headerRowRow, Int32 level, Int32 lastRowForLevel, Int32& startRow, Int32&
endRow, Double& startTop)
at
Microsoft.ReportingServices.Rendering.ImageRenderer.Matrix.ResizeCellsVertically(ReAdjustments& itemReAdjustment)
at
Microsoft.ReportingServices.Rendering.ImageRenderer.Matrix.CalculateItemMeasurement(Orientation
orientation, Double childrenMaximumDistance, ReAdjustments itemReAdjustment,
ItemContext savedContext)
at
Microsoft.ReportingServices.Rendering.ImageRenderer.RenderingItemContainer.CalculatePage(Orientation
orientation, Boolean repeatableParent, Boolean canDelete, Double&
minimumCoordinate, Double& distance)
at
Microsoft.ReportingServices.Rendering.ImageRenderer.RenderingItemContainer.CalculatePage(Orientation
orientation, Boolean repeatableParent, Boolean canDelete, Double&
minimumCoordinate, Double& distance)
at
Microsoft.ReportingServices.Rendering.ImageRenderer.RenderingItemContainer.CalculatePage(Orientation
orientation, Boolean repeatableParent, Boolean canDelete, Double&
minimumCoordinate, Double& distance)
at
Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRendererBase.ProcessPages(CompositionBase
theComposition, Report theReport, Boolean needTotalPages, Int32 startPage,
Int32 endPage, Boolean render)
at
Microsoft.ReportingServices.Rendering.ImageRenderer.PdfReport.RenderReport(Report
report, NameValueCollection deviceInfo, EvaluateHeaderFooterExpressions
evaluateHeaderFooterExpressions, CreateAndRegisterStream
createAndRegisterStreamCallback)
at
Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRendererBase.Render(Report
report, NameValueCollection reportServerParameters, NameValueCollection
deviceInfo, NameValueCollection clientCapabilities,
EvaluateHeaderFooterExpressions evaluateHeaderFooterExpressions,
CreateAndRegisterStream createAndRegisterStream)
-- End of inner exception stack trace --
at
Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRendererBase.Render(Report
report, NameValueCollection reportServerParameters, NameValueCollection
deviceInfo, NameValueCollection clientCapabilities,
EvaluateHeaderFooterExpressions evaluateHeaderFooterExpressions,
CreateAndRegisterStream createAndRegisterStream)
at
Microsoft.ReportingServices.ReportProcessing.ReportProcessing.a(DateTime A_0,
GetReportChunk A_1, ProcessingContext A_2, RenderingContext A_3,
CreateReportChunk A_4, Boolean& A_5)
-- End of inner exception stack trace --
ReportingServicesService!library!424!04/22/2005-15:06:03:: i INFO:
Initializing EnableExecutionLogging to 'True' as specified in Server system
properties.
ReportingServicesService!emailextension!424!04/22/2005-15:06:03:: Error
sending email. Microsoft.ReportingServices.Diagnostics.Utilities.RSException:
Exception of type
Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
thrown. -->
Microsoft.ReportingServices.ReportProcessing.WrapperReportRenderingException:
Exception of type
Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
thrown. -->
Microsoft.ReportingServices.ReportRendering.ReportRenderingException:
Exception of type
Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
thrown. --> System.NullReferenceException: Object reference not set to an
instance of an object.
at
Microsoft.ReportingServices.Rendering.ImageRenderer.Matrix.FindHeaderRowsForVerticalResize(Int32
headerRowRow, Int32 level, Int32 lastRowForLevel, Int32& startRow, Int32&
endRow, Double& startTop)
at
Microsoft.ReportingServices.Rendering.ImageRenderer.Matrix.ResizeCellsVertically(ReAdjustments& itemReAdjustment)
at
Microsoft.ReportingServices.Rendering.ImageRenderer.Matrix.CalculateItemMeasurement(Orientation
orientation, Double childrenMaximumDistance, ReAdjustments itemReAdjustment,
ItemContext savedContext)
at
Microsoft.ReportingServices.Rendering.ImageRenderer.RenderingItemContainer.CalculatePage(Orientation
orientation, Boolean repeatableParent, Boolean canDelete, Double&
minimumCoordinate, Double& distance)
at
Microsoft.ReportingServices.Rendering.ImageRenderer.RenderingItemContainer.CalculatePage(Orientation
orientation, Boolean repeatableParent, Boolean canDelete, Double&
minimumCoordinate, Double& distance)
at
Microsoft.ReportingServices.Rendering.ImageRenderer.RenderingItemContainer.CalculatePage(Orientation
orientation, Boolean repeatableParent, Boolean canDelete, Double&
minimumCoordinate, Double& distance)
at
Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRendererBase.ProcessPages(CompositionBase
theComposition, Report theReport, Boolean needTotalPages, Int32 startPage,
Int32 endPage, Boolean render)
at
Microsoft.ReportingServices.Rendering.ImageRenderer.PdfReport.RenderReport(Report
report, NameValueCollection deviceInfo, EvaluateHeaderFooterExpressions
evaluateHeaderFooterExpressions, CreateAndRegisterStream
createAndRegisterStreamCallback)
at
Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRendererBase.Render(Report
report, NameValueCollection reportServerParameters, NameValueCollection
deviceInfo, NameValueCollection clientCapabilities,
EvaluateHeaderFooterExpressions evaluateHeaderFooterExpressions,
CreateAndRegisterStream createAndRegisterStream)
-- End of inner exception stack trace --
at
Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRendererBase.Render(Report
report, NameValueCollection reportServerParameters, NameValueCollection
deviceInfo, NameValueCollection clientCapabilities,
EvaluateHeaderFooterExpressions evaluateHeaderFooterExpressions,
CreateAndRegisterStream createAndRegisterStream)
at
Microsoft.ReportingServices.ReportProcessing.ReportProcessing.a(DateTime A_0,
GetReportChunk A_1, ProcessingContext A_2, RenderingContext A_3,
CreateReportChunk A_4, Boolean& A_5)
-- End of inner exception stack trace --
at
Microsoft.ReportingServices.ReportProcessing.ReportProcessing.a(DateTime A_0,
GetReportChunk A_1, ProcessingContext A_2, RenderingContext A_3,
CreateReportChunk A_4, Boolean& A_5)
at
Microsoft.ReportingServices.ReportProcessing.ReportProcessing.RenderReport(DateTime
executionTimeStamp, GetReportChunk getCompiledDefinitionCallback,
ProcessingContext pc, RenderingContext rc)
at
Microsoft.ReportingServices.Library.RSService.RenderAsLive(CatalogItemContext
reportContext, ItemProperties properties, ParameterInfoCollection
effectiveParameters, Guid reportId, ClientRequest session, String
description, ReportSnapshot intermediateSnapshot, DataSourceInfoCollection
thisReportDataSources, Boolean cachingRequested, Warning[]& warnings,
ReportSnapshot& resultSnapshotData, DateTime& executionDateTime,
RuntimeDataSourceInfoCollection& alldataSources, UserProfileState&
usedUserProfile)
at
Microsoft.ReportingServices.Library.RSService.RenderAsLiveOrSnapshot(CatalogItemContext
reportContext, ClientRequest session, Warning[]& warnings,
ParameterInfoCollection& effectiveParameters)
at
Microsoft.ReportingServices.Library.RSService.RenderFirst(CatalogItemContext
reportContext, ClientRequest session, Warning[]& warnings,
ParameterInfoCollection& effectiveParameters, String[]& secondaryStreamNames)
at Microsoft.ReportingServices.Library.RenderFirstCancelableStep.Execute()
at
Microsoft.ReportingServices.Diagnostics.CancelablePhaseBase.ExecuteWrapper()
-- End of inner exception stack trace --
at
Microsoft.ReportingServices.Diagnostics.CancelablePhaseBase.ExecuteWrapper()
at
Microsoft.ReportingServices.Library.RenderFirstCancelableStep.RenderFirst(RSService
rs, CatalogItemContext reportContext, ClientRequest session, JobTypeEnum
type, Warning[]& warnings, ParameterInfoCollection& effectiveParameters,
String[]& secondaryStreamNames)
at Microsoft.ReportingServices.Library.ReportImpl.Render(String
renderFormat, String deviceInfo)
at
Microsoft.ReportingServices.EmailDeliveryProvider.EmailProvider.ConstructMessageBody(IMessage message, Notification notification, SubscriptionData data)
at
Microsoft.ReportingServices.EmailDeliveryProvider.EmailProvider.CreateMessage(Notification notification)
at
Microsoft.ReportingServices.EmailDeliveryProvider.EmailProvider.Deliver(Notification notification)
ReportingServicesService!notification!424!04/22/2005-15:06:03:: Notification
0d1fdf85-f75b-46a1-902f-564b4f5798ad completed. Success: False, Status:
Failure sending mail: Exception of type
Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
thrown., DeliveryExtension: Report Server Email, Report:
CompetitiveMarketAnalysisByCustomCategory2_Full, Attempt 0I'm running RS SP2
"Jon" wrote:
> I receive the following error ONLY when rendering to PDF format.
> My report has one Matrix in it - no tables, lists or sub-reports.
> Failure sending mail: Exception of type
> Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
> thrown.
> From ReportServerService log:
> ReportingServicesService!reportrendering!424!04/22/2005-15:06:03:: e ERROR:
> Throwing
> Microsoft.ReportingServices.ReportProcessing.WrapperReportRenderingException:
> Exception of type
> Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
> thrown., ;
> Info:
> Microsoft.ReportingServices.ReportProcessing.WrapperReportRenderingException:
> Exception of type
> Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
> thrown. -->
> Microsoft.ReportingServices.ReportRendering.ReportRenderingException:
> Exception of type
> Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
> thrown. --> System.NullReferenceException: Object reference not set to an
> instance of an object.
> at
> Microsoft.ReportingServices.Rendering.ImageRenderer.Matrix.FindHeaderRowsForVerticalResize(Int32
> headerRowRow, Int32 level, Int32 lastRowForLevel, Int32& startRow, Int32&
> endRow, Double& startTop)
> at
> Microsoft.ReportingServices.Rendering.ImageRenderer.Matrix.ResizeCellsVertically(ReAdjustments& itemReAdjustment)
> at
> Microsoft.ReportingServices.Rendering.ImageRenderer.Matrix.CalculateItemMeasurement(Orientation
> orientation, Double childrenMaximumDistance, ReAdjustments itemReAdjustment,
> ItemContext savedContext)
> at
> Microsoft.ReportingServices.Rendering.ImageRenderer.RenderingItemContainer.CalculatePage(Orientation
> orientation, Boolean repeatableParent, Boolean canDelete, Double&
> minimumCoordinate, Double& distance)
> at
> Microsoft.ReportingServices.Rendering.ImageRenderer.RenderingItemContainer.CalculatePage(Orientation
> orientation, Boolean repeatableParent, Boolean canDelete, Double&
> minimumCoordinate, Double& distance)
> at
> Microsoft.ReportingServices.Rendering.ImageRenderer.RenderingItemContainer.CalculatePage(Orientation
> orientation, Boolean repeatableParent, Boolean canDelete, Double&
> minimumCoordinate, Double& distance)
> at
> Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRendererBase.ProcessPages(CompositionBase
> theComposition, Report theReport, Boolean needTotalPages, Int32 startPage,
> Int32 endPage, Boolean render)
> at
> Microsoft.ReportingServices.Rendering.ImageRenderer.PdfReport.RenderReport(Report
> report, NameValueCollection deviceInfo, EvaluateHeaderFooterExpressions
> evaluateHeaderFooterExpressions, CreateAndRegisterStream
> createAndRegisterStreamCallback)
> at
> Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRendererBase.Render(Report
> report, NameValueCollection reportServerParameters, NameValueCollection
> deviceInfo, NameValueCollection clientCapabilities,
> EvaluateHeaderFooterExpressions evaluateHeaderFooterExpressions,
> CreateAndRegisterStream createAndRegisterStream)
> -- End of inner exception stack trace --
> at
> Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRendererBase.Render(Report
> report, NameValueCollection reportServerParameters, NameValueCollection
> deviceInfo, NameValueCollection clientCapabilities,
> EvaluateHeaderFooterExpressions evaluateHeaderFooterExpressions,
> CreateAndRegisterStream createAndRegisterStream)
> at
> Microsoft.ReportingServices.ReportProcessing.ReportProcessing.a(DateTime A_0,
> GetReportChunk A_1, ProcessingContext A_2, RenderingContext A_3,
> CreateReportChunk A_4, Boolean& A_5)
> -- End of inner exception stack trace --
> ReportingServicesService!library!424!04/22/2005-15:06:03:: i INFO:
> Initializing EnableExecutionLogging to 'True' as specified in Server system
> properties.
> ReportingServicesService!emailextension!424!04/22/2005-15:06:03:: Error
> sending email. Microsoft.ReportingServices.Diagnostics.Utilities.RSException:
> Exception of type
> Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
> thrown. -->
> Microsoft.ReportingServices.ReportProcessing.WrapperReportRenderingException:
> Exception of type
> Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
> thrown. -->
> Microsoft.ReportingServices.ReportRendering.ReportRenderingException:
> Exception of type
> Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
> thrown. --> System.NullReferenceException: Object reference not set to an
> instance of an object.
> at
> Microsoft.ReportingServices.Rendering.ImageRenderer.Matrix.FindHeaderRowsForVerticalResize(Int32
> headerRowRow, Int32 level, Int32 lastRowForLevel, Int32& startRow, Int32&
> endRow, Double& startTop)
> at
> Microsoft.ReportingServices.Rendering.ImageRenderer.Matrix.ResizeCellsVertically(ReAdjustments& itemReAdjustment)
> at
> Microsoft.ReportingServices.Rendering.ImageRenderer.Matrix.CalculateItemMeasurement(Orientation
> orientation, Double childrenMaximumDistance, ReAdjustments itemReAdjustment,
> ItemContext savedContext)
> at
> Microsoft.ReportingServices.Rendering.ImageRenderer.RenderingItemContainer.CalculatePage(Orientation
> orientation, Boolean repeatableParent, Boolean canDelete, Double&
> minimumCoordinate, Double& distance)
> at
> Microsoft.ReportingServices.Rendering.ImageRenderer.RenderingItemContainer.CalculatePage(Orientation
> orientation, Boolean repeatableParent, Boolean canDelete, Double&
> minimumCoordinate, Double& distance)
> at
> Microsoft.ReportingServices.Rendering.ImageRenderer.RenderingItemContainer.CalculatePage(Orientation
> orientation, Boolean repeatableParent, Boolean canDelete, Double&
> minimumCoordinate, Double& distance)
> at
> Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRendererBase.ProcessPages(CompositionBase
> theComposition, Report theReport, Boolean needTotalPages, Int32 startPage,
> Int32 endPage, Boolean render)
> at
> Microsoft.ReportingServices.Rendering.ImageRenderer.PdfReport.RenderReport(Report
> report, NameValueCollection deviceInfo, EvaluateHeaderFooterExpressions
> evaluateHeaderFooterExpressions, CreateAndRegisterStream
> createAndRegisterStreamCallback)
> at
> Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRendererBase.Render(Report
> report, NameValueCollection reportServerParameters, NameValueCollection
> deviceInfo, NameValueCollection clientCapabilities,
> EvaluateHeaderFooterExpressions evaluateHeaderFooterExpressions,
> CreateAndRegisterStream createAndRegisterStream)
> -- End of inner exception stack trace --
> at
> Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRendererBase.Render(Report
> report, NameValueCollection reportServerParameters, NameValueCollection
> deviceInfo, NameValueCollection clientCapabilities,
> EvaluateHeaderFooterExpressions evaluateHeaderFooterExpressions,
> CreateAndRegisterStream createAndRegisterStream)
> at
> Microsoft.ReportingServices.ReportProcessing.ReportProcessing.a(DateTime A_0,
> GetReportChunk A_1, ProcessingContext A_2, RenderingContext A_3,
> CreateReportChunk A_4, Boolean& A_5)
> -- End of inner exception stack trace --
> at
> Microsoft.ReportingServices.ReportProcessing.ReportProcessing.a(DateTime A_0,
> GetReportChunk A_1, ProcessingContext A_2, RenderingContext A_3,
> CreateReportChunk A_4, Boolean& A_5)
> at
> Microsoft.ReportingServices.ReportProcessing.ReportProcessing.RenderReport(DateTime
> executionTimeStamp, GetReportChunk getCompiledDefinitionCallback,
> ProcessingContext pc, RenderingContext rc)
> at
> Microsoft.ReportingServices.Library.RSService.RenderAsLive(CatalogItemContext
> reportContext, ItemProperties properties, ParameterInfoCollection
> effectiveParameters, Guid reportId, ClientRequest session, String
> description, ReportSnapshot intermediateSnapshot, DataSourceInfoCollection
> thisReportDataSources, Boolean cachingRequested, Warning[]& warnings,
> ReportSnapshot& resultSnapshotData, DateTime& executionDateTime,
> RuntimeDataSourceInfoCollection& alldataSources, UserProfileState&
> usedUserProfile)
> at
> Microsoft.ReportingServices.Library.RSService.RenderAsLiveOrSnapshot(CatalogItemContext
> reportContext, ClientRequest session, Warning[]& warnings,
> ParameterInfoCollection& effectiveParameters)
> at
> Microsoft.ReportingServices.Library.RSService.RenderFirst(CatalogItemContext
> reportContext, ClientRequest session, Warning[]& warnings,
> ParameterInfoCollection& effectiveParameters, String[]& secondaryStreamNames)
> at Microsoft.ReportingServices.Library.RenderFirstCancelableStep.Execute()
> at
> Microsoft.ReportingServices.Diagnostics.CancelablePhaseBase.ExecuteWrapper()
> -- End of inner exception stack trace --
> at
> Microsoft.ReportingServices.Diagnostics.CancelablePhaseBase.ExecuteWrapper()
> at
> Microsoft.ReportingServices.Library.RenderFirstCancelableStep.RenderFirst(RSService
> rs, CatalogItemContext reportContext, ClientRequest session, JobTypeEnum
> type, Warning[]& warnings, ParameterInfoCollection& effectiveParameters,
> String[]& secondaryStreamNames)
> at Microsoft.ReportingServices.Library.ReportImpl.Render(String
> renderFormat, String deviceInfo)
> at
> Microsoft.ReportingServices.EmailDeliveryProvider.EmailProvider.ConstructMessageBody(IMessage message, Notification notification, SubscriptionData data)
> at
> Microsoft.ReportingServices.EmailDeliveryProvider.EmailProvider.CreateMessage(Notification notification)
> at
> Microsoft.ReportingServices.EmailDeliveryProvider.EmailProvider.Deliver(Notification notification)
> ReportingServicesService!notification!424!04/22/2005-15:06:03:: Notification
> 0d1fdf85-f75b-46a1-902f-564b4f5798ad completed. Success: False, Status:
> Failure sending mail: Exception of type
> Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
> thrown., DeliveryExtension: Report Server Email, Report:
> CompetitiveMarketAnalysisByCustomCategory2_Full, Attempt 0
>|||Was this working before? Are all reports doing this or just this one? Does
it work in image formats? There weren't a lot of changes in PDF.
--
Brian Welcker
Group Program Manager
Microsoft SQL Server Reporting Services
This posting is provided "AS IS" with no warranties, and confers no rights.
"Jon" <Jon@.discussions.microsoft.com> wrote in message
news:0C0FFB1C-9ADC-41F8-9EE8-11A30DE45E04@.microsoft.com...
> I'm running RS SP2
> "Jon" wrote:
>> I receive the following error ONLY when rendering to PDF format.
>> My report has one Matrix in it - no tables, lists or sub-reports.
>> Failure sending mail: Exception of type
>> Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
>> thrown.
>> From ReportServerService log:
>> ReportingServicesService!reportrendering!424!04/22/2005-15:06:03:: e
>> ERROR:
>> Throwing
>> Microsoft.ReportingServices.ReportProcessing.WrapperReportRenderingException:
>> Exception of type
>> Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
>> thrown., ;
>> Info:
>> Microsoft.ReportingServices.ReportProcessing.WrapperReportRenderingException:
>> Exception of type
>> Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
>> thrown. -->
>> Microsoft.ReportingServices.ReportRendering.ReportRenderingException:
>> Exception of type
>> Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
>> thrown. --> System.NullReferenceException: Object reference not set to
>> an
>> instance of an object.
>> at
>> Microsoft.ReportingServices.Rendering.ImageRenderer.Matrix.FindHeaderRowsForVerticalResize(Int32
>> headerRowRow, Int32 level, Int32 lastRowForLevel, Int32& startRow, Int32&
>> endRow, Double& startTop)
>> at
>> Microsoft.ReportingServices.Rendering.ImageRenderer.Matrix.ResizeCellsVertically(ReAdjustments&
>> itemReAdjustment)
>> at
>> Microsoft.ReportingServices.Rendering.ImageRenderer.Matrix.CalculateItemMeasurement(Orientation
>> orientation, Double childrenMaximumDistance, ReAdjustments
>> itemReAdjustment,
>> ItemContext savedContext)
>> at
>> Microsoft.ReportingServices.Rendering.ImageRenderer.RenderingItemContainer.CalculatePage(Orientation
>> orientation, Boolean repeatableParent, Boolean canDelete, Double&
>> minimumCoordinate, Double& distance)
>> at
>> Microsoft.ReportingServices.Rendering.ImageRenderer.RenderingItemContainer.CalculatePage(Orientation
>> orientation, Boolean repeatableParent, Boolean canDelete, Double&
>> minimumCoordinate, Double& distance)
>> at
>> Microsoft.ReportingServices.Rendering.ImageRenderer.RenderingItemContainer.CalculatePage(Orientation
>> orientation, Boolean repeatableParent, Boolean canDelete, Double&
>> minimumCoordinate, Double& distance)
>> at
>> Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRendererBase.ProcessPages(CompositionBase
>> theComposition, Report theReport, Boolean needTotalPages, Int32
>> startPage,
>> Int32 endPage, Boolean render)
>> at
>> Microsoft.ReportingServices.Rendering.ImageRenderer.PdfReport.RenderReport(Report
>> report, NameValueCollection deviceInfo, EvaluateHeaderFooterExpressions
>> evaluateHeaderFooterExpressions, CreateAndRegisterStream
>> createAndRegisterStreamCallback)
>> at
>> Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRendererBase.Render(Report
>> report, NameValueCollection reportServerParameters, NameValueCollection
>> deviceInfo, NameValueCollection clientCapabilities,
>> EvaluateHeaderFooterExpressions evaluateHeaderFooterExpressions,
>> CreateAndRegisterStream createAndRegisterStream)
>> -- End of inner exception stack trace --
>> at
>> Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRendererBase.Render(Report
>> report, NameValueCollection reportServerParameters, NameValueCollection
>> deviceInfo, NameValueCollection clientCapabilities,
>> EvaluateHeaderFooterExpressions evaluateHeaderFooterExpressions,
>> CreateAndRegisterStream createAndRegisterStream)
>> at
>> Microsoft.ReportingServices.ReportProcessing.ReportProcessing.a(DateTime
>> A_0,
>> GetReportChunk A_1, ProcessingContext A_2, RenderingContext A_3,
>> CreateReportChunk A_4, Boolean& A_5)
>> -- End of inner exception stack trace --
>> ReportingServicesService!library!424!04/22/2005-15:06:03:: i INFO:
>> Initializing EnableExecutionLogging to 'True' as specified in Server
>> system
>> properties.
>> ReportingServicesService!emailextension!424!04/22/2005-15:06:03:: Error
>> sending email.
>> Microsoft.ReportingServices.Diagnostics.Utilities.RSException:
>> Exception of type
>> Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
>> thrown. -->
>> Microsoft.ReportingServices.ReportProcessing.WrapperReportRenderingException:
>> Exception of type
>> Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
>> thrown. -->
>> Microsoft.ReportingServices.ReportRendering.ReportRenderingException:
>> Exception of type
>> Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
>> thrown. --> System.NullReferenceException: Object reference not set to
>> an
>> instance of an object.
>> at
>> Microsoft.ReportingServices.Rendering.ImageRenderer.Matrix.FindHeaderRowsForVerticalResize(Int32
>> headerRowRow, Int32 level, Int32 lastRowForLevel, Int32& startRow, Int32&
>> endRow, Double& startTop)
>> at
>> Microsoft.ReportingServices.Rendering.ImageRenderer.Matrix.ResizeCellsVertically(ReAdjustments&
>> itemReAdjustment)
>> at
>> Microsoft.ReportingServices.Rendering.ImageRenderer.Matrix.CalculateItemMeasurement(Orientation
>> orientation, Double childrenMaximumDistance, ReAdjustments
>> itemReAdjustment,
>> ItemContext savedContext)
>> at
>> Microsoft.ReportingServices.Rendering.ImageRenderer.RenderingItemContainer.CalculatePage(Orientation
>> orientation, Boolean repeatableParent, Boolean canDelete, Double&
>> minimumCoordinate, Double& distance)
>> at
>> Microsoft.ReportingServices.Rendering.ImageRenderer.RenderingItemContainer.CalculatePage(Orientation
>> orientation, Boolean repeatableParent, Boolean canDelete, Double&
>> minimumCoordinate, Double& distance)
>> at
>> Microsoft.ReportingServices.Rendering.ImageRenderer.RenderingItemContainer.CalculatePage(Orientation
>> orientation, Boolean repeatableParent, Boolean canDelete, Double&
>> minimumCoordinate, Double& distance)
>> at
>> Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRendererBase.ProcessPages(CompositionBase
>> theComposition, Report theReport, Boolean needTotalPages, Int32
>> startPage,
>> Int32 endPage, Boolean render)
>> at
>> Microsoft.ReportingServices.Rendering.ImageRenderer.PdfReport.RenderReport(Report
>> report, NameValueCollection deviceInfo, EvaluateHeaderFooterExpressions
>> evaluateHeaderFooterExpressions, CreateAndRegisterStream
>> createAndRegisterStreamCallback)
>> at
>> Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRendererBase.Render(Report
>> report, NameValueCollection reportServerParameters, NameValueCollection
>> deviceInfo, NameValueCollection clientCapabilities,
>> EvaluateHeaderFooterExpressions evaluateHeaderFooterExpressions,
>> CreateAndRegisterStream createAndRegisterStream)
>> -- End of inner exception stack trace --
>> at
>> Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRendererBase.Render(Report
>> report, NameValueCollection reportServerParameters, NameValueCollection
>> deviceInfo, NameValueCollection clientCapabilities,
>> EvaluateHeaderFooterExpressions evaluateHeaderFooterExpressions,
>> CreateAndRegisterStream createAndRegisterStream)
>> at
>> Microsoft.ReportingServices.ReportProcessing.ReportProcessing.a(DateTime
>> A_0,
>> GetReportChunk A_1, ProcessingContext A_2, RenderingContext A_3,
>> CreateReportChunk A_4, Boolean& A_5)
>> -- End of inner exception stack trace --
>> at
>> Microsoft.ReportingServices.ReportProcessing.ReportProcessing.a(DateTime
>> A_0,
>> GetReportChunk A_1, ProcessingContext A_2, RenderingContext A_3,
>> CreateReportChunk A_4, Boolean& A_5)
>> at
>> Microsoft.ReportingServices.ReportProcessing.ReportProcessing.RenderReport(DateTime
>> executionTimeStamp, GetReportChunk getCompiledDefinitionCallback,
>> ProcessingContext pc, RenderingContext rc)
>> at
>> Microsoft.ReportingServices.Library.RSService.RenderAsLive(CatalogItemContext
>> reportContext, ItemProperties properties, ParameterInfoCollection
>> effectiveParameters, Guid reportId, ClientRequest session, String
>> description, ReportSnapshot intermediateSnapshot,
>> DataSourceInfoCollection
>> thisReportDataSources, Boolean cachingRequested, Warning[]& warnings,
>> ReportSnapshot& resultSnapshotData, DateTime& executionDateTime,
>> RuntimeDataSourceInfoCollection& alldataSources, UserProfileState&
>> usedUserProfile)
>> at
>> Microsoft.ReportingServices.Library.RSService.RenderAsLiveOrSnapshot(CatalogItemContext
>> reportContext, ClientRequest session, Warning[]& warnings,
>> ParameterInfoCollection& effectiveParameters)
>> at
>> Microsoft.ReportingServices.Library.RSService.RenderFirst(CatalogItemContext
>> reportContext, ClientRequest session, Warning[]& warnings,
>> ParameterInfoCollection& effectiveParameters, String[]&
>> secondaryStreamNames)
>> at
>> Microsoft.ReportingServices.Library.RenderFirstCancelableStep.Execute()
>> at
>> Microsoft.ReportingServices.Diagnostics.CancelablePhaseBase.ExecuteWrapper()
>> -- End of inner exception stack trace --
>> at
>> Microsoft.ReportingServices.Diagnostics.CancelablePhaseBase.ExecuteWrapper()
>> at
>> Microsoft.ReportingServices.Library.RenderFirstCancelableStep.RenderFirst(RSService
>> rs, CatalogItemContext reportContext, ClientRequest session, JobTypeEnum
>> type, Warning[]& warnings, ParameterInfoCollection& effectiveParameters,
>> String[]& secondaryStreamNames)
>> at Microsoft.ReportingServices.Library.ReportImpl.Render(String
>> renderFormat, String deviceInfo)
>> at
>> Microsoft.ReportingServices.EmailDeliveryProvider.EmailProvider.ConstructMessageBody(IMessage
>> message, Notification notification, SubscriptionData data)
>> at
>> Microsoft.ReportingServices.EmailDeliveryProvider.EmailProvider.CreateMessage(Notification
>> notification)
>> at
>> Microsoft.ReportingServices.EmailDeliveryProvider.EmailProvider.Deliver(Notification
>> notification)
>> ReportingServicesService!notification!424!04/22/2005-15:06:03::
>> Notification
>> 0d1fdf85-f75b-46a1-902f-564b4f5798ad completed. Success: False, Status:
>> Failure sending mail: Exception of type
>> Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
>> thrown., DeliveryExtension: Report Server Email, Report:
>> CompetitiveMarketAnalysisByCustomCategory2_Full, Attempt 0|||In case anyone else is having this issue, I seem to have found a workaround
for my particular problem. If I change the first textbox in the first column
'Hidden flag' to FALSE, it seems to work fine. I just reduced the size so it
doesn't take up any space on the report.
"Jon" wrote:
> I'm running RS SP2
> "Jon" wrote:
> > I receive the following error ONLY when rendering to PDF format.
> >
> > My report has one Matrix in it - no tables, lists or sub-reports.
> >
> > Failure sending mail: Exception of type
> > Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
> > thrown.
> >
> > From ReportServerService log:
> >
> > ReportingServicesService!reportrendering!424!04/22/2005-15:06:03:: e ERROR:
> > Throwing
> > Microsoft.ReportingServices.ReportProcessing.WrapperReportRenderingException:
> > Exception of type
> > Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
> > thrown., ;
> > Info:
> > Microsoft.ReportingServices.ReportProcessing.WrapperReportRenderingException:
> > Exception of type
> > Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
> > thrown. -->
> > Microsoft.ReportingServices.ReportRendering.ReportRenderingException:
> > Exception of type
> > Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
> > thrown. --> System.NullReferenceException: Object reference not set to an
> > instance of an object.
> > at
> > Microsoft.ReportingServices.Rendering.ImageRenderer.Matrix.FindHeaderRowsForVerticalResize(Int32
> > headerRowRow, Int32 level, Int32 lastRowForLevel, Int32& startRow, Int32&
> > endRow, Double& startTop)
> > at
> > Microsoft.ReportingServices.Rendering.ImageRenderer.Matrix.ResizeCellsVertically(ReAdjustments& itemReAdjustment)
> > at
> > Microsoft.ReportingServices.Rendering.ImageRenderer.Matrix.CalculateItemMeasurement(Orientation
> > orientation, Double childrenMaximumDistance, ReAdjustments itemReAdjustment,
> > ItemContext savedContext)
> > at
> > Microsoft.ReportingServices.Rendering.ImageRenderer.RenderingItemContainer.CalculatePage(Orientation
> > orientation, Boolean repeatableParent, Boolean canDelete, Double&
> > minimumCoordinate, Double& distance)
> > at
> > Microsoft.ReportingServices.Rendering.ImageRenderer.RenderingItemContainer.CalculatePage(Orientation
> > orientation, Boolean repeatableParent, Boolean canDelete, Double&
> > minimumCoordinate, Double& distance)
> > at
> > Microsoft.ReportingServices.Rendering.ImageRenderer.RenderingItemContainer.CalculatePage(Orientation
> > orientation, Boolean repeatableParent, Boolean canDelete, Double&
> > minimumCoordinate, Double& distance)
> > at
> > Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRendererBase.ProcessPages(CompositionBase
> > theComposition, Report theReport, Boolean needTotalPages, Int32 startPage,
> > Int32 endPage, Boolean render)
> > at
> > Microsoft.ReportingServices.Rendering.ImageRenderer.PdfReport.RenderReport(Report
> > report, NameValueCollection deviceInfo, EvaluateHeaderFooterExpressions
> > evaluateHeaderFooterExpressions, CreateAndRegisterStream
> > createAndRegisterStreamCallback)
> > at
> > Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRendererBase.Render(Report
> > report, NameValueCollection reportServerParameters, NameValueCollection
> > deviceInfo, NameValueCollection clientCapabilities,
> > EvaluateHeaderFooterExpressions evaluateHeaderFooterExpressions,
> > CreateAndRegisterStream createAndRegisterStream)
> > -- End of inner exception stack trace --
> > at
> > Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRendererBase.Render(Report
> > report, NameValueCollection reportServerParameters, NameValueCollection
> > deviceInfo, NameValueCollection clientCapabilities,
> > EvaluateHeaderFooterExpressions evaluateHeaderFooterExpressions,
> > CreateAndRegisterStream createAndRegisterStream)
> > at
> > Microsoft.ReportingServices.ReportProcessing.ReportProcessing.a(DateTime A_0,
> > GetReportChunk A_1, ProcessingContext A_2, RenderingContext A_3,
> > CreateReportChunk A_4, Boolean& A_5)
> > -- End of inner exception stack trace --
> > ReportingServicesService!library!424!04/22/2005-15:06:03:: i INFO:
> > Initializing EnableExecutionLogging to 'True' as specified in Server system
> > properties.
> > ReportingServicesService!emailextension!424!04/22/2005-15:06:03:: Error
> > sending email. Microsoft.ReportingServices.Diagnostics.Utilities.RSException:
> > Exception of type
> > Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
> > thrown. -->
> > Microsoft.ReportingServices.ReportProcessing.WrapperReportRenderingException:
> > Exception of type
> > Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
> > thrown. -->
> > Microsoft.ReportingServices.ReportRendering.ReportRenderingException:
> > Exception of type
> > Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
> > thrown. --> System.NullReferenceException: Object reference not set to an
> > instance of an object.
> > at
> > Microsoft.ReportingServices.Rendering.ImageRenderer.Matrix.FindHeaderRowsForVerticalResize(Int32
> > headerRowRow, Int32 level, Int32 lastRowForLevel, Int32& startRow, Int32&
> > endRow, Double& startTop)
> > at
> > Microsoft.ReportingServices.Rendering.ImageRenderer.Matrix.ResizeCellsVertically(ReAdjustments& itemReAdjustment)
> > at
> > Microsoft.ReportingServices.Rendering.ImageRenderer.Matrix.CalculateItemMeasurement(Orientation
> > orientation, Double childrenMaximumDistance, ReAdjustments itemReAdjustment,
> > ItemContext savedContext)
> > at
> > Microsoft.ReportingServices.Rendering.ImageRenderer.RenderingItemContainer.CalculatePage(Orientation
> > orientation, Boolean repeatableParent, Boolean canDelete, Double&
> > minimumCoordinate, Double& distance)
> > at
> > Microsoft.ReportingServices.Rendering.ImageRenderer.RenderingItemContainer.CalculatePage(Orientation
> > orientation, Boolean repeatableParent, Boolean canDelete, Double&
> > minimumCoordinate, Double& distance)
> > at
> > Microsoft.ReportingServices.Rendering.ImageRenderer.RenderingItemContainer.CalculatePage(Orientation
> > orientation, Boolean repeatableParent, Boolean canDelete, Double&
> > minimumCoordinate, Double& distance)
> > at
> > Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRendererBase.ProcessPages(CompositionBase
> > theComposition, Report theReport, Boolean needTotalPages, Int32 startPage,
> > Int32 endPage, Boolean render)
> > at
> > Microsoft.ReportingServices.Rendering.ImageRenderer.PdfReport.RenderReport(Report
> > report, NameValueCollection deviceInfo, EvaluateHeaderFooterExpressions
> > evaluateHeaderFooterExpressions, CreateAndRegisterStream
> > createAndRegisterStreamCallback)
> > at
> > Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRendererBase.Render(Report
> > report, NameValueCollection reportServerParameters, NameValueCollection
> > deviceInfo, NameValueCollection clientCapabilities,
> > EvaluateHeaderFooterExpressions evaluateHeaderFooterExpressions,
> > CreateAndRegisterStream createAndRegisterStream)
> > -- End of inner exception stack trace --
> > at
> > Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRendererBase.Render(Report
> > report, NameValueCollection reportServerParameters, NameValueCollection
> > deviceInfo, NameValueCollection clientCapabilities,
> > EvaluateHeaderFooterExpressions evaluateHeaderFooterExpressions,
> > CreateAndRegisterStream createAndRegisterStream)
> > at
> > Microsoft.ReportingServices.ReportProcessing.ReportProcessing.a(DateTime A_0,
> > GetReportChunk A_1, ProcessingContext A_2, RenderingContext A_3,
> > CreateReportChunk A_4, Boolean& A_5)
> > -- End of inner exception stack trace --
> > at
> > Microsoft.ReportingServices.ReportProcessing.ReportProcessing.a(DateTime A_0,
> > GetReportChunk A_1, ProcessingContext A_2, RenderingContext A_3,
> > CreateReportChunk A_4, Boolean& A_5)
> > at
> > Microsoft.ReportingServices.ReportProcessing.ReportProcessing.RenderReport(DateTime
> > executionTimeStamp, GetReportChunk getCompiledDefinitionCallback,
> > ProcessingContext pc, RenderingContext rc)
> > at
> > Microsoft.ReportingServices.Library.RSService.RenderAsLive(CatalogItemContext
> > reportContext, ItemProperties properties, ParameterInfoCollection
> > effectiveParameters, Guid reportId, ClientRequest session, String
> > description, ReportSnapshot intermediateSnapshot, DataSourceInfoCollection
> > thisReportDataSources, Boolean cachingRequested, Warning[]& warnings,
> > ReportSnapshot& resultSnapshotData, DateTime& executionDateTime,
> > RuntimeDataSourceInfoCollection& alldataSources, UserProfileState&
> > usedUserProfile)
> > at
> > Microsoft.ReportingServices.Library.RSService.RenderAsLiveOrSnapshot(CatalogItemContext
> > reportContext, ClientRequest session, Warning[]& warnings,
> > ParameterInfoCollection& effectiveParameters)
> > at
> > Microsoft.ReportingServices.Library.RSService.RenderFirst(CatalogItemContext
> > reportContext, ClientRequest session, Warning[]& warnings,
> > ParameterInfoCollection& effectiveParameters, String[]& secondaryStreamNames)
> > at Microsoft.ReportingServices.Library.RenderFirstCancelableStep.Execute()
> > at
> > Microsoft.ReportingServices.Diagnostics.CancelablePhaseBase.ExecuteWrapper()
> > -- End of inner exception stack trace --
> > at
> > Microsoft.ReportingServices.Diagnostics.CancelablePhaseBase.ExecuteWrapper()
> > at
> > Microsoft.ReportingServices.Library.RenderFirstCancelableStep.RenderFirst(RSService
> > rs, CatalogItemContext reportContext, ClientRequest session, JobTypeEnum
> > type, Warning[]& warnings, ParameterInfoCollection& effectiveParameters,
> > String[]& secondaryStreamNames)
> > at Microsoft.ReportingServices.Library.ReportImpl.Render(String
> > renderFormat, String deviceInfo)
> > at
> > Microsoft.ReportingServices.EmailDeliveryProvider.EmailProvider.ConstructMessageBody(IMessage message, Notification notification, SubscriptionData data)
> > at
> > Microsoft.ReportingServices.EmailDeliveryProvider.EmailProvider.CreateMessage(Notification notification)
> > at
> > Microsoft.ReportingServices.EmailDeliveryProvider.EmailProvider.Deliver(Notification notification)
> > ReportingServicesService!notification!424!04/22/2005-15:06:03:: Notification
> > 0d1fdf85-f75b-46a1-902f-564b4f5798ad completed. Success: False, Status:
> > Failure sending mail: Exception of type
> > Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
> > thrown., DeliveryExtension: Report Server Email, Report:
> > CompetitiveMarketAnalysisByCustomCategory2_Full, Attempt 0
> >|||Please email me a copy of your .rdl and .rdl.data file so I can see what's
going on.
--
This posting is provided "AS IS" with no warranties, and confers no rights.
"Jon" <Jon@.discussions.microsoft.com> wrote in message
news:0C0FFB1C-9ADC-41F8-9EE8-11A30DE45E04@.microsoft.com...
> I'm running RS SP2
> "Jon" wrote:
>> I receive the following error ONLY when rendering to PDF format.
>> My report has one Matrix in it - no tables, lists or sub-reports.
>> Failure sending mail: Exception of type
>> Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
>> thrown.
>> From ReportServerService log:
>> ReportingServicesService!reportrendering!424!04/22/2005-15:06:03:: e
>> ERROR:
>> Throwing
>> Microsoft.ReportingServices.ReportProcessing.WrapperReportRenderingException:
>> Exception of type
>> Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
>> thrown., ;
>> Info:
>> Microsoft.ReportingServices.ReportProcessing.WrapperReportRenderingException:
>> Exception of type
>> Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
>> thrown. -->
>> Microsoft.ReportingServices.ReportRendering.ReportRenderingException:
>> Exception of type
>> Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
>> thrown. --> System.NullReferenceException: Object reference not set to
>> an
>> instance of an object.
>> at
>> Microsoft.ReportingServices.Rendering.ImageRenderer.Matrix.FindHeaderRowsForVerticalResize(Int32
>> headerRowRow, Int32 level, Int32 lastRowForLevel, Int32& startRow, Int32&
>> endRow, Double& startTop)
>> at
>> Microsoft.ReportingServices.Rendering.ImageRenderer.Matrix.ResizeCellsVertically(ReAdjustments&
>> itemReAdjustment)
>> at
>> Microsoft.ReportingServices.Rendering.ImageRenderer.Matrix.CalculateItemMeasurement(Orientation
>> orientation, Double childrenMaximumDistance, ReAdjustments
>> itemReAdjustment,
>> ItemContext savedContext)
>> at
>> Microsoft.ReportingServices.Rendering.ImageRenderer.RenderingItemContainer.CalculatePage(Orientation
>> orientation, Boolean repeatableParent, Boolean canDelete, Double&
>> minimumCoordinate, Double& distance)
>> at
>> Microsoft.ReportingServices.Rendering.ImageRenderer.RenderingItemContainer.CalculatePage(Orientation
>> orientation, Boolean repeatableParent, Boolean canDelete, Double&
>> minimumCoordinate, Double& distance)
>> at
>> Microsoft.ReportingServices.Rendering.ImageRenderer.RenderingItemContainer.CalculatePage(Orientation
>> orientation, Boolean repeatableParent, Boolean canDelete, Double&
>> minimumCoordinate, Double& distance)
>> at
>> Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRendererBase.ProcessPages(CompositionBase
>> theComposition, Report theReport, Boolean needTotalPages, Int32
>> startPage,
>> Int32 endPage, Boolean render)
>> at
>> Microsoft.ReportingServices.Rendering.ImageRenderer.PdfReport.RenderReport(Report
>> report, NameValueCollection deviceInfo, EvaluateHeaderFooterExpressions
>> evaluateHeaderFooterExpressions, CreateAndRegisterStream
>> createAndRegisterStreamCallback)
>> at
>> Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRendererBase.Render(Report
>> report, NameValueCollection reportServerParameters, NameValueCollection
>> deviceInfo, NameValueCollection clientCapabilities,
>> EvaluateHeaderFooterExpressions evaluateHeaderFooterExpressions,
>> CreateAndRegisterStream createAndRegisterStream)
>> -- End of inner exception stack trace --
>> at
>> Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRendererBase.Render(Report
>> report, NameValueCollection reportServerParameters, NameValueCollection
>> deviceInfo, NameValueCollection clientCapabilities,
>> EvaluateHeaderFooterExpressions evaluateHeaderFooterExpressions,
>> CreateAndRegisterStream createAndRegisterStream)
>> at
>> Microsoft.ReportingServices.ReportProcessing.ReportProcessing.a(DateTime
>> A_0,
>> GetReportChunk A_1, ProcessingContext A_2, RenderingContext A_3,
>> CreateReportChunk A_4, Boolean& A_5)
>> -- End of inner exception stack trace --
>> ReportingServicesService!library!424!04/22/2005-15:06:03:: i INFO:
>> Initializing EnableExecutionLogging to 'True' as specified in Server
>> system
>> properties.
>> ReportingServicesService!emailextension!424!04/22/2005-15:06:03:: Error
>> sending email.
>> Microsoft.ReportingServices.Diagnostics.Utilities.RSException:
>> Exception of type
>> Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
>> thrown. -->
>> Microsoft.ReportingServices.ReportProcessing.WrapperReportRenderingException:
>> Exception of type
>> Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
>> thrown. -->
>> Microsoft.ReportingServices.ReportRendering.ReportRenderingException:
>> Exception of type
>> Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
>> thrown. --> System.NullReferenceException: Object reference not set to
>> an
>> instance of an object.
>> at
>> Microsoft.ReportingServices.Rendering.ImageRenderer.Matrix.FindHeaderRowsForVerticalResize(Int32
>> headerRowRow, Int32 level, Int32 lastRowForLevel, Int32& startRow, Int32&
>> endRow, Double& startTop)
>> at
>> Microsoft.ReportingServices.Rendering.ImageRenderer.Matrix.ResizeCellsVertically(ReAdjustments&
>> itemReAdjustment)
>> at
>> Microsoft.ReportingServices.Rendering.ImageRenderer.Matrix.CalculateItemMeasurement(Orientation
>> orientation, Double childrenMaximumDistance, ReAdjustments
>> itemReAdjustment,
>> ItemContext savedContext)
>> at
>> Microsoft.ReportingServices.Rendering.ImageRenderer.RenderingItemContainer.CalculatePage(Orientation
>> orientation, Boolean repeatableParent, Boolean canDelete, Double&
>> minimumCoordinate, Double& distance)
>> at
>> Microsoft.ReportingServices.Rendering.ImageRenderer.RenderingItemContainer.CalculatePage(Orientation
>> orientation, Boolean repeatableParent, Boolean canDelete, Double&
>> minimumCoordinate, Double& distance)
>> at
>> Microsoft.ReportingServices.Rendering.ImageRenderer.RenderingItemContainer.CalculatePage(Orientation
>> orientation, Boolean repeatableParent, Boolean canDelete, Double&
>> minimumCoordinate, Double& distance)
>> at
>> Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRendererBase.ProcessPages(CompositionBase
>> theComposition, Report theReport, Boolean needTotalPages, Int32
>> startPage,
>> Int32 endPage, Boolean render)
>> at
>> Microsoft.ReportingServices.Rendering.ImageRenderer.PdfReport.RenderReport(Report
>> report, NameValueCollection deviceInfo, EvaluateHeaderFooterExpressions
>> evaluateHeaderFooterExpressions, CreateAndRegisterStream
>> createAndRegisterStreamCallback)
>> at
>> Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRendererBase.Render(Report
>> report, NameValueCollection reportServerParameters, NameValueCollection
>> deviceInfo, NameValueCollection clientCapabilities,
>> EvaluateHeaderFooterExpressions evaluateHeaderFooterExpressions,
>> CreateAndRegisterStream createAndRegisterStream)
>> -- End of inner exception stack trace --
>> at
>> Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRendererBase.Render(Report
>> report, NameValueCollection reportServerParameters, NameValueCollection
>> deviceInfo, NameValueCollection clientCapabilities,
>> EvaluateHeaderFooterExpressions evaluateHeaderFooterExpressions,
>> CreateAndRegisterStream createAndRegisterStream)
>> at
>> Microsoft.ReportingServices.ReportProcessing.ReportProcessing.a(DateTime
>> A_0,
>> GetReportChunk A_1, ProcessingContext A_2, RenderingContext A_3,
>> CreateReportChunk A_4, Boolean& A_5)
>> -- End of inner exception stack trace --
>> at
>> Microsoft.ReportingServices.ReportProcessing.ReportProcessing.a(DateTime
>> A_0,
>> GetReportChunk A_1, ProcessingContext A_2, RenderingContext A_3,
>> CreateReportChunk A_4, Boolean& A_5)
>> at
>> Microsoft.ReportingServices.ReportProcessing.ReportProcessing.RenderReport(DateTime
>> executionTimeStamp, GetReportChunk getCompiledDefinitionCallback,
>> ProcessingContext pc, RenderingContext rc)
>> at
>> Microsoft.ReportingServices.Library.RSService.RenderAsLive(CatalogItemContext
>> reportContext, ItemProperties properties, ParameterInfoCollection
>> effectiveParameters, Guid reportId, ClientRequest session, String
>> description, ReportSnapshot intermediateSnapshot,
>> DataSourceInfoCollection
>> thisReportDataSources, Boolean cachingRequested, Warning[]& warnings,
>> ReportSnapshot& resultSnapshotData, DateTime& executionDateTime,
>> RuntimeDataSourceInfoCollection& alldataSources, UserProfileState&
>> usedUserProfile)
>> at
>> Microsoft.ReportingServices.Library.RSService.RenderAsLiveOrSnapshot(CatalogItemContext
>> reportContext, ClientRequest session, Warning[]& warnings,
>> ParameterInfoCollection& effectiveParameters)
>> at
>> Microsoft.ReportingServices.Library.RSService.RenderFirst(CatalogItemContext
>> reportContext, ClientRequest session, Warning[]& warnings,
>> ParameterInfoCollection& effectiveParameters, String[]&
>> secondaryStreamNames)
>> at
>> Microsoft.ReportingServices.Library.RenderFirstCancelableStep.Execute()
>> at
>> Microsoft.ReportingServices.Diagnostics.CancelablePhaseBase.ExecuteWrapper()
>> -- End of inner exception stack trace --
>> at
>> Microsoft.ReportingServices.Diagnostics.CancelablePhaseBase.ExecuteWrapper()
>> at
>> Microsoft.ReportingServices.Library.RenderFirstCancelableStep.RenderFirst(RSService
>> rs, CatalogItemContext reportContext, ClientRequest session, JobTypeEnum
>> type, Warning[]& warnings, ParameterInfoCollection& effectiveParameters,
>> String[]& secondaryStreamNames)
>> at Microsoft.ReportingServices.Library.ReportImpl.Render(String
>> renderFormat, String deviceInfo)
>> at
>> Microsoft.ReportingServices.EmailDeliveryProvider.EmailProvider.ConstructMessageBody(IMessage
>> message, Notification notification, SubscriptionData data)
>> at
>> Microsoft.ReportingServices.EmailDeliveryProvider.EmailProvider.CreateMessage(Notification
>> notification)
>> at
>> Microsoft.ReportingServices.EmailDeliveryProvider.EmailProvider.Deliver(Notification
>> notification)
>> ReportingServicesService!notification!424!04/22/2005-15:06:03::
>> Notification
>> 0d1fdf85-f75b-46a1-902f-564b4f5798ad completed. Success: False, Status:
>> Failure sending mail: Exception of type
>> Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
>> thrown., DeliveryExtension: Report Server Email, Report:
>> CompetitiveMarketAnalysisByCustomCategory2_Full, Attempt 0|||Not sure what email to send to, I tried donovans@.online.microsoft.com, but it
bounces.
"Donovan Smith [MSFT]" wrote:
> Please email me a copy of your .rdl and .rdl.data file so I can see what's
> going on.
> --
> This posting is provided "AS IS" with no warranties, and confers no rights.
>
> "Jon" <Jon@.discussions.microsoft.com> wrote in message
> news:0C0FFB1C-9ADC-41F8-9EE8-11A30DE45E04@.microsoft.com...
> > I'm running RS SP2
> >
> > "Jon" wrote:
> >
> >> I receive the following error ONLY when rendering to PDF format.
> >>
> >> My report has one Matrix in it - no tables, lists or sub-reports.
> >>
> >> Failure sending mail: Exception of type
> >> Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
> >> thrown.
> >>
> >> From ReportServerService log:
> >>
> >> ReportingServicesService!reportrendering!424!04/22/2005-15:06:03:: e
> >> ERROR:
> >> Throwing
> >> Microsoft.ReportingServices.ReportProcessing.WrapperReportRenderingException:
> >> Exception of type
> >> Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
> >> thrown., ;
> >> Info:
> >> Microsoft.ReportingServices.ReportProcessing.WrapperReportRenderingException:
> >> Exception of type
> >> Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
> >> thrown. -->
> >> Microsoft.ReportingServices.ReportRendering.ReportRenderingException:
> >> Exception of type
> >> Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
> >> thrown. --> System.NullReferenceException: Object reference not set to
> >> an
> >> instance of an object.
> >> at
> >> Microsoft.ReportingServices.Rendering.ImageRenderer.Matrix.FindHeaderRowsForVerticalResize(Int32
> >> headerRowRow, Int32 level, Int32 lastRowForLevel, Int32& startRow, Int32&
> >> endRow, Double& startTop)
> >> at
> >> Microsoft.ReportingServices.Rendering.ImageRenderer.Matrix.ResizeCellsVertically(ReAdjustments&
> >> itemReAdjustment)
> >> at
> >> Microsoft.ReportingServices.Rendering.ImageRenderer.Matrix.CalculateItemMeasurement(Orientation
> >> orientation, Double childrenMaximumDistance, ReAdjustments
> >> itemReAdjustment,
> >> ItemContext savedContext)
> >> at
> >> Microsoft.ReportingServices.Rendering.ImageRenderer.RenderingItemContainer.CalculatePage(Orientation
> >> orientation, Boolean repeatableParent, Boolean canDelete, Double&
> >> minimumCoordinate, Double& distance)
> >> at
> >> Microsoft.ReportingServices.Rendering.ImageRenderer.RenderingItemContainer.CalculatePage(Orientation
> >> orientation, Boolean repeatableParent, Boolean canDelete, Double&
> >> minimumCoordinate, Double& distance)
> >> at
> >> Microsoft.ReportingServices.Rendering.ImageRenderer.RenderingItemContainer.CalculatePage(Orientation
> >> orientation, Boolean repeatableParent, Boolean canDelete, Double&
> >> minimumCoordinate, Double& distance)
> >> at
> >> Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRendererBase.ProcessPages(CompositionBase
> >> theComposition, Report theReport, Boolean needTotalPages, Int32
> >> startPage,
> >> Int32 endPage, Boolean render)
> >> at
> >> Microsoft.ReportingServices.Rendering.ImageRenderer.PdfReport.RenderReport(Report
> >> report, NameValueCollection deviceInfo, EvaluateHeaderFooterExpressions
> >> evaluateHeaderFooterExpressions, CreateAndRegisterStream
> >> createAndRegisterStreamCallback)
> >> at
> >> Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRendererBase.Render(Report
> >> report, NameValueCollection reportServerParameters, NameValueCollection
> >> deviceInfo, NameValueCollection clientCapabilities,
> >> EvaluateHeaderFooterExpressions evaluateHeaderFooterExpressions,
> >> CreateAndRegisterStream createAndRegisterStream)
> >> -- End of inner exception stack trace --
> >> at
> >> Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRendererBase.Render(Report
> >> report, NameValueCollection reportServerParameters, NameValueCollection
> >> deviceInfo, NameValueCollection clientCapabilities,
> >> EvaluateHeaderFooterExpressions evaluateHeaderFooterExpressions,
> >> CreateAndRegisterStream createAndRegisterStream)
> >> at
> >> Microsoft.ReportingServices.ReportProcessing.ReportProcessing.a(DateTime
> >> A_0,
> >> GetReportChunk A_1, ProcessingContext A_2, RenderingContext A_3,
> >> CreateReportChunk A_4, Boolean& A_5)
> >> -- End of inner exception stack trace --
> >> ReportingServicesService!library!424!04/22/2005-15:06:03:: i INFO:
> >> Initializing EnableExecutionLogging to 'True' as specified in Server
> >> system
> >> properties.
> >> ReportingServicesService!emailextension!424!04/22/2005-15:06:03:: Error
> >> sending email.
> >> Microsoft.ReportingServices.Diagnostics.Utilities.RSException:
> >> Exception of type
> >> Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
> >> thrown. -->
> >> Microsoft.ReportingServices.ReportProcessing.WrapperReportRenderingException:
> >> Exception of type
> >> Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
> >> thrown. -->
> >> Microsoft.ReportingServices.ReportRendering.ReportRenderingException:
> >> Exception of type
> >> Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
> >> thrown. --> System.NullReferenceException: Object reference not set to
> >> an
> >> instance of an object.
> >> at
> >> Microsoft.ReportingServices.Rendering.ImageRenderer.Matrix.FindHeaderRowsForVerticalResize(Int32
> >> headerRowRow, Int32 level, Int32 lastRowForLevel, Int32& startRow, Int32&
> >> endRow, Double& startTop)
> >> at
> >> Microsoft.ReportingServices.Rendering.ImageRenderer.Matrix.ResizeCellsVertically(ReAdjustments&
> >> itemReAdjustment)
> >> at
> >> Microsoft.ReportingServices.Rendering.ImageRenderer.Matrix.CalculateItemMeasurement(Orientation
> >> orientation, Double childrenMaximumDistance, ReAdjustments
> >> itemReAdjustment,
> >> ItemContext savedContext)
> >> at
> >> Microsoft.ReportingServices.Rendering.ImageRenderer.RenderingItemContainer.CalculatePage(Orientation
> >> orientation, Boolean repeatableParent, Boolean canDelete, Double&
> >> minimumCoordinate, Double& distance)
> >> at
> >> Microsoft.ReportingServices.Rendering.ImageRenderer.RenderingItemContainer.CalculatePage(Orientation
> >> orientation, Boolean repeatableParent, Boolean canDelete, Double&
> >> minimumCoordinate, Double& distance)
> >> at
> >> Microsoft.ReportingServices.Rendering.ImageRenderer.RenderingItemContainer.CalculatePage(Orientation
> >> orientation, Boolean repeatableParent, Boolean canDelete, Double&
> >> minimumCoordinate, Double& distance)
> >> at
> >> Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRendererBase.ProcessPages(CompositionBase
> >> theComposition, Report theReport, Boolean needTotalPages, Int32
> >> startPage,
> >> Int32 endPage, Boolean render)
> >> at
> >> Microsoft.ReportingServices.Rendering.ImageRenderer.PdfReport.RenderReport(Report
> >> report, NameValueCollection deviceInfo, EvaluateHeaderFooterExpressions
> >> evaluateHeaderFooterExpressions, CreateAndRegisterStream
> >> createAndRegisterStreamCallback)
> >> at
> >> Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRendererBase.Render(Report
> >> report, NameValueCollection reportServerParameters, NameValueCollection
> >> deviceInfo, NameValueCollection clientCapabilities,
> >> EvaluateHeaderFooterExpressions evaluateHeaderFooterExpressions,
> >> CreateAndRegisterStream createAndRegisterStream)
> >> -- End of inner exception stack trace --
> >> at
> >> Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRendererBase.Render(Report
> >> report, NameValueCollection reportServerParameters, NameValueCollection
> >> deviceInfo, NameValueCollection clientCapabilities,
> >> EvaluateHeaderFooterExpressions evaluateHeaderFooterExpressions,
> >> CreateAndRegisterStream createAndRegisterStream)
> >> at
> >> Microsoft.ReportingServices.ReportProcessing.ReportProcessing.a(DateTime
> >> A_0,
> >> GetReportChunk A_1, ProcessingContext A_2, RenderingContext A_3,
> >> CreateReportChunk A_4, Boolean& A_5)
> >> -- End of inner exception stack trace --
> >> at
> >> Microsoft.ReportingServices.ReportProcessing.ReportProcessing.a(DateTime
> >> A_0,
> >> GetReportChunk A_1, ProcessingContext A_2, RenderingContext A_3,
> >> CreateReportChunk A_4, Boolean& A_5)
> >> at
> >> Microsoft.ReportingServices.ReportProcessing.ReportProcessing.RenderReport(DateTime
> >> executionTimeStamp, GetReportChunk getCompiledDefinitionCallback,
> >> ProcessingContext pc, RenderingContext rc)
> >> at
> >> Microsoft.ReportingServices.Library.RSService.RenderAsLive(CatalogItemContext
> >> reportContext, ItemProperties properties, ParameterInfoCollection
> >> effectiveParameters, Guid reportId, ClientRequest session, String
> >> description, ReportSnapshot intermediateSnapshot,
> >> DataSourceInfoCollection
> >> thisReportDataSources, Boolean cachingRequested, Warning[]& warnings,
> >> ReportSnapshot& resultSnapshotData, DateTime& executionDateTime,
> >> RuntimeDataSourceInfoCollection& alldataSources, UserProfileState&
> >> usedUserProfile)
> >> at
> >> Microsoft.ReportingServices.Library.RSService.RenderAsLiveOrSnapshot(CatalogItemContext
> >> reportContext, ClientRequest session, Warning[]& warnings,
> >> ParameterInfoCollection& effectiveParameters)
> >> at
> >> Microsoft.ReportingServices.Library.RSService.RenderFirst(CatalogItemContext
> >> reportContext, ClientRequest session, Warning[]& warnings,
> >> ParameterInfoCollection& effectiveParameters, String[]&
> >> secondaryStreamNames)
> >> at
> >> Microsoft.ReportingServices.Library.RenderFirstCancelableStep.Execute()
> >> at
> >> Microsoft.ReportingServices.Diagnostics.CancelablePhaseBase.ExecuteWrapper()
> >> -- End of inner exception stack trace --
> >> at
> >> Microsoft.ReportingServices.Diagnostics.CancelablePhaseBase.ExecuteWrapper()
> >> at
> >> Microsoft.ReportingServices.Library.RenderFirstCancelableStep.RenderFirst(RSService
> >> rs, CatalogItemContext reportContext, ClientRequest session, JobTypeEnum
> >> type, Warning[]& warnings, ParameterInfoCollection& effectiveParameters,
> >> String[]& secondaryStreamNames)
> >> at Microsoft.ReportingServices.Library.ReportImpl.Render(String
> >> renderFormat, String deviceInfo)
> >> at
> >> Microsoft.ReportingServices.EmailDeliveryProvider.EmailProvider.ConstructMessageBody(IMessage
> >> message, Notification notification, SubscriptionData data)
> >> at
> >> Microsoft.ReportingServices.EmailDeliveryProvider.EmailProvider.CreateMessage(Notification
> >> notification)
> >> at
> >> Microsoft.ReportingServices.EmailDeliveryProvider.EmailProvider.Deliver(Notification
> >> notification)
> >> ReportingServicesService!notification!424!04/22/2005-15:06:03::
> >> Notification
> >> 0d1fdf85-f75b-46a1-902f-564b4f5798ad completed. Success: False, Status:
> >> Failure sending mail: Exception of type
> >> Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
> >> thrown., DeliveryExtension: Report Server Email, Report:
> >> CompetitiveMarketAnalysisByCustomCategory2_Full, Attempt 0
> >>
>
>|||I can't say if this error was occuring before I applied SP2, although I did
not see the error occur until after I installed SP2.
I can not seem to reproduce this with my other reports.
Looks like exporting to TIFF produces the same error.
"Brian Welcker [MSFT]" wrote:
> Was this working before? Are all reports doing this or just this one? Does
> it work in image formats? There weren't a lot of changes in PDF.
> --
> Brian Welcker
> Group Program Manager
> Microsoft SQL Server Reporting Services
> This posting is provided "AS IS" with no warranties, and confers no rights.
> "Jon" <Jon@.discussions.microsoft.com> wrote in message
> news:0C0FFB1C-9ADC-41F8-9EE8-11A30DE45E04@.microsoft.com...
> > I'm running RS SP2
> >
> > "Jon" wrote:
> >
> >> I receive the following error ONLY when rendering to PDF format.
> >>
> >> My report has one Matrix in it - no tables, lists or sub-reports.
> >>
> >> Failure sending mail: Exception of type
> >> Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
> >> thrown.
> >>
> >> From ReportServerService log:
> >>
> >> ReportingServicesService!reportrendering!424!04/22/2005-15:06:03:: e
> >> ERROR:
> >> Throwing
> >> Microsoft.ReportingServices.ReportProcessing.WrapperReportRenderingException:
> >> Exception of type
> >> Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
> >> thrown., ;
> >> Info:
> >> Microsoft.ReportingServices.ReportProcessing.WrapperReportRenderingException:
> >> Exception of type
> >> Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
> >> thrown. -->
> >> Microsoft.ReportingServices.ReportRendering.ReportRenderingException:
> >> Exception of type
> >> Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
> >> thrown. --> System.NullReferenceException: Object reference not set to
> >> an
> >> instance of an object.
> >> at
> >> Microsoft.ReportingServices.Rendering.ImageRenderer.Matrix.FindHeaderRowsForVerticalResize(Int32
> >> headerRowRow, Int32 level, Int32 lastRowForLevel, Int32& startRow, Int32&
> >> endRow, Double& startTop)
> >> at
> >> Microsoft.ReportingServices.Rendering.ImageRenderer.Matrix.ResizeCellsVertically(ReAdjustments&
> >> itemReAdjustment)
> >> at
> >> Microsoft.ReportingServices.Rendering.ImageRenderer.Matrix.CalculateItemMeasurement(Orientation
> >> orientation, Double childrenMaximumDistance, ReAdjustments
> >> itemReAdjustment,
> >> ItemContext savedContext)
> >> at
> >> Microsoft.ReportingServices.Rendering.ImageRenderer.RenderingItemContainer.CalculatePage(Orientation
> >> orientation, Boolean repeatableParent, Boolean canDelete, Double&
> >> minimumCoordinate, Double& distance)
> >> at
> >> Microsoft.ReportingServices.Rendering.ImageRenderer.RenderingItemContainer.CalculatePage(Orientation
> >> orientation, Boolean repeatableParent, Boolean canDelete, Double&
> >> minimumCoordinate, Double& distance)
> >> at
> >> Microsoft.ReportingServices.Rendering.ImageRenderer.RenderingItemContainer.CalculatePage(Orientation
> >> orientation, Boolean repeatableParent, Boolean canDelete, Double&
> >> minimumCoordinate, Double& distance)
> >> at
> >> Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRendererBase.ProcessPages(CompositionBase
> >> theComposition, Report theReport, Boolean needTotalPages, Int32
> >> startPage,
> >> Int32 endPage, Boolean render)
> >> at
> >> Microsoft.ReportingServices.Rendering.ImageRenderer.PdfReport.RenderReport(Report
> >> report, NameValueCollection deviceInfo, EvaluateHeaderFooterExpressions
> >> evaluateHeaderFooterExpressions, CreateAndRegisterStream
> >> createAndRegisterStreamCallback)
> >> at
> >> Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRendererBase.Render(Report
> >> report, NameValueCollection reportServerParameters, NameValueCollection
> >> deviceInfo, NameValueCollection clientCapabilities,
> >> EvaluateHeaderFooterExpressions evaluateHeaderFooterExpressions,
> >> CreateAndRegisterStream createAndRegisterStream)
> >> -- End of inner exception stack trace --
> >> at
> >> Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRendererBase.Render(Report
> >> report, NameValueCollection reportServerParameters, NameValueCollection
> >> deviceInfo, NameValueCollection clientCapabilities,
> >> EvaluateHeaderFooterExpressions evaluateHeaderFooterExpressions,
> >> CreateAndRegisterStream createAndRegisterStream)
> >> at
> >> Microsoft.ReportingServices.ReportProcessing.ReportProcessing.a(DateTime
> >> A_0,
> >> GetReportChunk A_1, ProcessingContext A_2, RenderingContext A_3,
> >> CreateReportChunk A_4, Boolean& A_5)
> >> -- End of inner exception stack trace --
> >> ReportingServicesService!library!424!04/22/2005-15:06:03:: i INFO:
> >> Initializing EnableExecutionLogging to 'True' as specified in Server
> >> system
> >> properties.
> >> ReportingServicesService!emailextension!424!04/22/2005-15:06:03:: Error
> >> sending email.
> >> Microsoft.ReportingServices.Diagnostics.Utilities.RSException:
> >> Exception of type
> >> Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
> >> thrown. -->
> >> Microsoft.ReportingServices.ReportProcessing.WrapperReportRenderingException:
> >> Exception of type
> >> Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
> >> thrown. -->
> >> Microsoft.ReportingServices.ReportRendering.ReportRenderingException:
> >> Exception of type
> >> Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
> >> thrown. --> System.NullReferenceException: Object reference not set to
> >> an
> >> instance of an object.
> >> at
> >> Microsoft.ReportingServices.Rendering.ImageRenderer.Matrix.FindHeaderRowsForVerticalResize(Int32
> >> headerRowRow, Int32 level, Int32 lastRowForLevel, Int32& startRow, Int32&
> >> endRow, Double& startTop)
> >> at
> >> Microsoft.ReportingServices.Rendering.ImageRenderer.Matrix.ResizeCellsVertically(ReAdjustments&
> >> itemReAdjustment)
> >> at
> >> Microsoft.ReportingServices.Rendering.ImageRenderer.Matrix.CalculateItemMeasurement(Orientation
> >> orientation, Double childrenMaximumDistance, ReAdjustments
> >> itemReAdjustment,
> >> ItemContext savedContext)
> >> at
> >> Microsoft.ReportingServices.Rendering.ImageRenderer.RenderingItemContainer.CalculatePage(Orientation
> >> orientation, Boolean repeatableParent, Boolean canDelete, Double&
> >> minimumCoordinate, Double& distance)
> >> at
> >> Microsoft.ReportingServices.Rendering.ImageRenderer.RenderingItemContainer.CalculatePage(Orientation
> >> orientation, Boolean repeatableParent, Boolean canDelete, Double&
> >> minimumCoordinate, Double& distance)
> >> at
> >> Microsoft.ReportingServices.Rendering.ImageRenderer.RenderingItemContainer.CalculatePage(Orientation
> >> orientation, Boolean repeatableParent, Boolean canDelete, Double&
> >> minimumCoordinate, Double& distance)
> >> at
> >> Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRendererBase.ProcessPages(CompositionBase
> >> theComposition, Report theReport, Boolean needTotalPages, Int32
> >> startPage,
> >> Int32 endPage, Boolean render)
> >> at
> >> Microsoft.ReportingServices.Rendering.ImageRenderer.PdfReport.RenderReport(Report
> >> report, NameValueCollection deviceInfo, EvaluateHeaderFooterExpressions
> >> evaluateHeaderFooterExpressions, CreateAndRegisterStream
> >> createAndRegisterStreamCallback)
> >> at
> >> Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRendererBase.Render(Report
> >> report, NameValueCollection reportServerParameters, NameValueCollection
> >> deviceInfo, NameValueCollection clientCapabilities,
> >> EvaluateHeaderFooterExpressions evaluateHeaderFooterExpressions,
> >> CreateAndRegisterStream createAndRegisterStream)
> >> -- End of inner exception stack trace --
> >> at
> >> Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRendererBase.Render(Report
> >> report, NameValueCollection reportServerParameters, NameValueCollection
> >> deviceInfo, NameValueCollection clientCapabilities,
> >> EvaluateHeaderFooterExpressions evaluateHeaderFooterExpressions,
> >> CreateAndRegisterStream createAndRegisterStream)
> >> at
> >> Microsoft.ReportingServices.ReportProcessing.ReportProcessing.a(DateTime
> >> A_0,
> >> GetReportChunk A_1, ProcessingContext A_2, RenderingContext A_3,
> >> CreateReportChunk A_4, Boolean& A_5)
> >> -- End of inner exception stack trace --
> >> at
> >> Microsoft.ReportingServices.ReportProcessing.ReportProcessing.a(DateTime
> >> A_0,
> >> GetReportChunk A_1, ProcessingContext A_2, RenderingContext A_3,
> >> CreateReportChunk A_4, Boolean& A_5)
> >> at
> >> Microsoft.ReportingServices.ReportProcessing.ReportProcessing.RenderReport(DateTime
> >> executionTimeStamp, GetReportChunk getCompiledDefinitionCallback,
> >> ProcessingContext pc, RenderingContext rc)
> >> at
> >> Microsoft.ReportingServices.Library.RSService.RenderAsLive(CatalogItemContext
> >> reportContext, ItemProperties properties, ParameterInfoCollection
> >> effectiveParameters, Guid reportId, ClientRequest session, String
> >> description, ReportSnapshot intermediateSnapshot,
> >> DataSourceInfoCollection
> >> thisReportDataSources, Boolean cachingRequested, Warning[]& warnings,
> >> ReportSnapshot& resultSnapshotData, DateTime& executionDateTime,
> >> RuntimeDataSourceInfoCollection& alldataSources, UserProfileState&
> >> usedUserProfile)
> >> at
> >> Microsoft.ReportingServices.Library.RSService.RenderAsLiveOrSnapshot(CatalogItemContext
> >> reportContext, ClientRequest session, Warning[]& warnings,
> >> ParameterInfoCollection& effectiveParameters)
> >> at
> >> Microsoft.ReportingServices.Library.RSService.RenderFirst(CatalogItemContext
> >> reportContext, ClientRequest session, Warning[]& warnings,
> >> ParameterInfoCollection& effectiveParameters, String[]&
> >> secondaryStreamNames)
> >> at
> >> Microsoft.ReportingServices.Library.RenderFirstCancelableStep.Execute()
> >> at
> >> Microsoft.ReportingServices.Diagnostics.CancelablePhaseBase.ExecuteWrapper()
> >> -- End of inner exception stack trace --
> >> at
> >> Microsoft.ReportingServices.Diagnostics.CancelablePhaseBase.ExecuteWrapper()
> >> at
> >> Microsoft.ReportingServices.Library.RenderFirstCancelableStep.RenderFirst(RSService
> >> rs, CatalogItemContext reportContext, ClientRequest session, JobTypeEnum
> >> type, Warning[]& warnings, ParameterInfoCollection& effectiveParameters,
> >> String[]& secondaryStreamNames)
> >> at Microsoft.ReportingServices.Library.ReportImpl.Render(String
> >> renderFormat, String deviceInfo)
> >> at
> >> Microsoft.ReportingServices.EmailDeliveryProvider.EmailProvider.ConstructMessageBody(IMessage
> >> message, Notification notification, SubscriptionData data)
> >> at
> >> Microsoft.ReportingServices.EmailDeliveryProvider.EmailProvider.CreateMessage(Notification
> >> notification)
> >> at
> >> Microsoft.ReportingServices.EmailDeliveryProvider.EmailProvider.Deliver(Notification
> >> notification)
> >> ReportingServicesService!notification!424!04/22/2005-15:06:03::
> >> Notification
> >> 0d1fdf85-f75b-46a1-902f-564b4f5798ad completed. Success: False, Status:
> >> Failure sending mail: Exception of type
> >> Microsoft.ReportingServices.ReportRendering.ReportRenderingException was
> >> thrown., DeliveryExtension: Report Server Email, Report:
> >> CompetitiveMarketAnalysisByCustomCategory2_Full, Attempt 0
> >>
>
>|||Remove the .online part.
--
Brian Welcker
Group Program Manager
Microsoft SQL Server
This posting is provided "AS IS" with no warranties, and confers no rights.
"Jon" <Jon@.discussions.microsoft.com> wrote in message
news:21698829-5C41-4F80-AC1A-8A70658BF5C1@.microsoft.com...
> Not sure what email to send to, I tried donovans@.online.microsoft.com, but
> it
> bounces.
> "Donovan Smith [MSFT]" wrote:
>> Please email me a copy of your .rdl and .rdl.data file so I can see
>> what's
>> going on.
>> --
>> This posting is provided "AS IS" with no warranties, and confers no
>> rights.
>>
>> "Jon" <Jon@.discussions.microsoft.com> wrote in message
>> news:0C0FFB1C-9ADC-41F8-9EE8-11A30DE45E04@.microsoft.com...
>> > I'm running RS SP2
>> >
>> > "Jon" wrote:
>> >
>> >> I receive the following error ONLY when rendering to PDF format.
>> >>
>> >> My report has one Matrix in it - no tables, lists or sub-reports.
>> >>
>> >> Failure sending mail: Exception of type
>> >> Microsoft.ReportingServices.ReportRendering.ReportRenderingException
>> >> was
>> >> thrown.
>> >>
>> >> From ReportServerService log:
>> >>
>> >> ReportingServicesService!reportrendering!424!04/22/2005-15:06:03:: e
>> >> ERROR:
>> >> Throwing
>> >> Microsoft.ReportingServices.ReportProcessing.WrapperReportRenderingException:
>> >> Exception of type
>> >> Microsoft.ReportingServices.ReportRendering.ReportRenderingException
>> >> was
>> >> thrown., ;
>> >> Info:
>> >> Microsoft.ReportingServices.ReportProcessing.WrapperReportRenderingException:
>> >> Exception of type
>> >> Microsoft.ReportingServices.ReportRendering.ReportRenderingException
>> >> was
>> >> thrown. -->
>> >> Microsoft.ReportingServices.ReportRendering.ReportRenderingException:
>> >> Exception of type
>> >> Microsoft.ReportingServices.ReportRendering.ReportRenderingException
>> >> was
>> >> thrown. --> System.NullReferenceException: Object reference not set
>> >> to
>> >> an
>> >> instance of an object.
>> >> at
>> >> Microsoft.ReportingServices.Rendering.ImageRenderer.Matrix.FindHeaderRowsForVerticalResize(Int32
>> >> headerRowRow, Int32 level, Int32 lastRowForLevel, Int32& startRow,
>> >> Int32&
>> >> endRow, Double& startTop)
>> >> at
>> >> Microsoft.ReportingServices.Rendering.ImageRenderer.Matrix.ResizeCellsVertically(ReAdjustments&
>> >> itemReAdjustment)
>> >> at
>> >> Microsoft.ReportingServices.Rendering.ImageRenderer.Matrix.CalculateItemMeasurement(Orientation
>> >> orientation, Double childrenMaximumDistance, ReAdjustments
>> >> itemReAdjustment,
>> >> ItemContext savedContext)
>> >> at
>> >> Microsoft.ReportingServices.Rendering.ImageRenderer.RenderingItemContainer.CalculatePage(Orientation
>> >> orientation, Boolean repeatableParent, Boolean canDelete, Double&
>> >> minimumCoordinate, Double& distance)
>> >> at
>> >> Microsoft.ReportingServices.Rendering.ImageRenderer.RenderingItemContainer.CalculatePage(Orientation
>> >> orientation, Boolean repeatableParent, Boolean canDelete, Double&
>> >> minimumCoordinate, Double& distance)
>> >> at
>> >> Microsoft.ReportingServices.Rendering.ImageRenderer.RenderingItemContainer.CalculatePage(Orientation
>> >> orientation, Boolean repeatableParent, Boolean canDelete, Double&
>> >> minimumCoordinate, Double& distance)
>> >> at
>> >> Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRendererBase.ProcessPages(CompositionBase
>> >> theComposition, Report theReport, Boolean needTotalPages, Int32
>> >> startPage,
>> >> Int32 endPage, Boolean render)
>> >> at
>> >> Microsoft.ReportingServices.Rendering.ImageRenderer.PdfReport.RenderReport(Report
>> >> report, NameValueCollection deviceInfo,
>> >> EvaluateHeaderFooterExpressions
>> >> evaluateHeaderFooterExpressions, CreateAndRegisterStream
>> >> createAndRegisterStreamCallback)
>> >> at
>> >> Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRendererBase.Render(Report
>> >> report, NameValueCollection reportServerParameters,
>> >> NameValueCollection
>> >> deviceInfo, NameValueCollection clientCapabilities,
>> >> EvaluateHeaderFooterExpressions evaluateHeaderFooterExpressions,
>> >> CreateAndRegisterStream createAndRegisterStream)
>> >> -- End of inner exception stack trace --
>> >> at
>> >> Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRendererBase.Render(Report
>> >> report, NameValueCollection reportServerParameters,
>> >> NameValueCollection
>> >> deviceInfo, NameValueCollection clientCapabilities,
>> >> EvaluateHeaderFooterExpressions evaluateHeaderFooterExpressions,
>> >> CreateAndRegisterStream createAndRegisterStream)
>> >> at
>> >> Microsoft.ReportingServices.ReportProcessing.ReportProcessing.a(DateTime
>> >> A_0,
>> >> GetReportChunk A_1, ProcessingContext A_2, RenderingContext A_3,
>> >> CreateReportChunk A_4, Boolean& A_5)
>> >> -- End of inner exception stack trace --
>> >> ReportingServicesService!library!424!04/22/2005-15:06:03:: i INFO:
>> >> Initializing EnableExecutionLogging to 'True' as specified in Server
>> >> system
>> >> properties.
>> >> ReportingServicesService!emailextension!424!04/22/2005-15:06:03::
>> >> Error
>> >> sending email.
>> >> Microsoft.ReportingServices.Diagnostics.Utilities.RSException:
>> >> Exception of type
>> >> Microsoft.ReportingServices.ReportRendering.ReportRenderingException
>> >> was
>> >> thrown. -->
>> >> Microsoft.ReportingServices.ReportProcessing.WrapperReportRenderingException:
>> >> Exception of type
>> >> Microsoft.ReportingServices.ReportRendering.ReportRenderingException
>> >> was
>> >> thrown. -->
>> >> Microsoft.ReportingServices.ReportRendering.ReportRenderingException:
>> >> Exception of type
>> >> Microsoft.ReportingServices.ReportRendering.ReportRenderingException
>> >> was
>> >> thrown. --> System.NullReferenceException: Object reference not set
>> >> to
>> >> an
>> >> instance of an object.
>> >> at
>> >> Microsoft.ReportingServices.Rendering.ImageRenderer.Matrix.FindHeaderRowsForVerticalResize(Int32
>> >> headerRowRow, Int32 level, Int32 lastRowForLevel, Int32& startRow,
>> >> Int32&
>> >> endRow, Double& startTop)
>> >> at
>> >> Microsoft.ReportingServices.Rendering.ImageRenderer.Matrix.ResizeCellsVertically(ReAdjustments&
>> >> itemReAdjustment)
>> >> at
>> >> Microsoft.ReportingServices.Rendering.ImageRenderer.Matrix.CalculateItemMeasurement(Orientation
>> >> orientation, Double childrenMaximumDistance, ReAdjustments
>> >> itemReAdjustment,
>> >> ItemContext savedContext)
>> >> at
>> >> Microsoft.ReportingServices.Rendering.ImageRenderer.RenderingItemContainer.CalculatePage(Orientation
>> >> orientation, Boolean repeatableParent, Boolean canDelete, Double&
>> >> minimumCoordinate, Double& distance)
>> >> at
>> >> Microsoft.ReportingServices.Rendering.ImageRenderer.RenderingItemContainer.CalculatePage(Orientation
>> >> orientation, Boolean repeatableParent, Boolean canDelete, Double&
>> >> minimumCoordinate, Double& distance)
>> >> at
>> >> Microsoft.ReportingServices.Rendering.ImageRenderer.RenderingItemContainer.CalculatePage(Orientation
>> >> orientation, Boolean repeatableParent, Boolean canDelete, Double&
>> >> minimumCoordinate, Double& distance)
>> >> at
>> >> Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRendererBase.ProcessPages(CompositionBase
>> >> theComposition, Report theReport, Boolean needTotalPages, Int32
>> >> startPage,
>> >> Int32 endPage, Boolean render)
>> >> at
>> >> Microsoft.ReportingServices.Rendering.ImageRenderer.PdfReport.RenderReport(Report
>> >> report, NameValueCollection deviceInfo,
>> >> EvaluateHeaderFooterExpressions
>> >> evaluateHeaderFooterExpressions, CreateAndRegisterStream
>> >> createAndRegisterStreamCallback)
>> >> at
>> >> Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRendererBase.Render(Report
>> >> report, NameValueCollection reportServerParameters,
>> >> NameValueCollection
>> >> deviceInfo, NameValueCollection clientCapabilities,
>> >> EvaluateHeaderFooterExpressions evaluateHeaderFooterExpressions,
>> >> CreateAndRegisterStream createAndRegisterStream)
>> >> -- End of inner exception stack trace --
>> >> at
>> >> Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRendererBase.Render(Report
>> >> report, NameValueCollection reportServerParameters,
>> >> NameValueCollection
>> >> deviceInfo, NameValueCollection clientCapabilities,
>> >> EvaluateHeaderFooterExpressions evaluateHeaderFooterExpressions,
>> >> CreateAndRegisterStream createAndRegisterStream)
>> >> at
>> >> Microsoft.ReportingServices.ReportProcessing.ReportProcessing.a(DateTime
>> >> A_0,
>> >> GetReportChunk A_1, ProcessingContext A_2, RenderingContext A_3,
>> >> CreateReportChunk A_4, Boolean& A_5)
>> >> -- End of inner exception stack trace --
>> >> at
>> >> Microsoft.ReportingServices.ReportProcessing.ReportProcessing.a(DateTime
>> >> A_0,
>> >> GetReportChunk A_1, ProcessingContext A_2, RenderingContext A_3,
>> >> CreateReportChunk A_4, Boolean& A_5)
>> >> at
>> >> Microsoft.ReportingServices.ReportProcessing.ReportProcessing.RenderReport(DateTime
>> >> executionTimeStamp, GetReportChunk getCompiledDefinitionCallback,
>> >> ProcessingContext pc, RenderingContext rc)
>> >> at
>> >> Microsoft.ReportingServices.Library.RSService.RenderAsLive(CatalogItemContext
>> >> reportContext, ItemProperties properties, ParameterInfoCollection
>> >> effectiveParameters, Guid reportId, ClientRequest session, String
>> >> description, ReportSnapshot intermediateSnapshot,
>> >> DataSourceInfoCollection
>> >> thisReportDataSources, Boolean cachingRequested, Warning[]& warnings,
>> >> ReportSnapshot& resultSnapshotData, DateTime& executionDateTime,
>> >> RuntimeDataSourceInfoCollection& alldataSources, UserProfileState&
>> >> usedUserProfile)
>> >> at
>> >> Microsoft.ReportingServices.Library.RSService.RenderAsLiveOrSnapshot(CatalogItemContext
>> >> reportContext, ClientRequest session, Warning[]& warnings,
>> >> ParameterInfoCollection& effectiveParameters)
>> >> at
>> >> Microsoft.ReportingServices.Library.RSService.RenderFirst(CatalogItemContext
>> >> reportContext, ClientRequest session, Warning[]& warnings,
>> >> ParameterInfoCollection& effectiveParameters, String[]&
>> >> secondaryStreamNames)
>> >> at
>> >> Microsoft.ReportingServices.Library.RenderFirstCancelableStep.Execute()
>> >> at
>> >> Microsoft.ReportingServices.Diagnostics.CancelablePhaseBase.ExecuteWrapper()
>> >> -- End of inner exception stack trace --
>> >> at
>> >> Microsoft.ReportingServices.Diagnostics.CancelablePhaseBase.ExecuteWrapper()
>> >> at
>> >> Microsoft.ReportingServices.Library.RenderFirstCancelableStep.RenderFirst(RSService
>> >> rs, CatalogItemContext reportContext, ClientRequest session,
>> >> JobTypeEnum
>> >> type, Warning[]& warnings, ParameterInfoCollection&
>> >> effectiveParameters,
>> >> String[]& secondaryStreamNames)
>> >> at Microsoft.ReportingServices.Library.ReportImpl.Render(String
>> >> renderFormat, String deviceInfo)
>> >> at
>> >> Microsoft.ReportingServices.EmailDeliveryProvider.EmailProvider.ConstructMessageBody(IMessage
>> >> message, Notification notification, SubscriptionData data)
>> >> at
>> >> Microsoft.ReportingServices.EmailDeliveryProvider.EmailProvider.CreateMessage(Notification
>> >> notification)
>> >> at
>> >> Microsoft.ReportingServices.EmailDeliveryProvider.EmailProvider.Deliver(Notification
>> >> notification)
>> >> ReportingServicesService!notification!424!04/22/2005-15:06:03::
>> >> Notification
>> >> 0d1fdf85-f75b-46a1-902f-564b4f5798ad completed. Success: False,
>> >> Status:
>> >> Failure sending mail: Exception of type
>> >> Microsoft.ReportingServices.ReportRendering.ReportRenderingException
>> >> was
>> >> thrown., DeliveryExtension: Report Server Email, Report:
>> >> CompetitiveMarketAnalysisByCustomCategory2_Full, Attempt 0
>> >>
>>