Viewing 10 posts - 1 through 10 (of 10 total)
I have come up with a solution/workaround. Put all the tables into a List object. Then take the large text column out of the table and place it in the...
May 12, 2006 at 6:56 am
Here's an example. To illustrate, I'm just pulling back the Article Title and the Article Details. I made the table background dark just so to distinguish it from the rest...
May 2, 2006 at 10:54 am
Nope, SP2 didn't fix it. But I realized this is a year old too. Anyone have this problem in SSRS 2005?
Richard.
April 25, 2006 at 8:20 am
It seems that no-one has run into this problem before.
Anyway, hopefully SP2 will solve it.
April 24, 2006 at 12:14 pm
You would do something like this in an Expression.
=ReportItems!Textbox1.Value
HTH
Richard.
March 31, 2006 at 11:30 am
I would start by running your query through the Execution Plan in Query Analyzer and see where your bottlenecks are. Then, I would definitely rewrite your query.
March 28, 2006 at 8:07 am
I haven't found RS to be that slow. I have to different installations on different setups and some users are accessing these reports from the UK and the US. Have...
March 28, 2006 at 7:50 am
No, this is the for the url. It basically tells the report to not used the cached version and to always get a fresh copy from the database. Are you...
March 28, 2006 at 7:24 am
I believe what you're looking for is :
&rs:ClearSession=true
HTH.
March 28, 2006 at 7:19 am
-- create table variable
declare @resequence table( keyid integer identity(1,1),
stulink integer,
coursedate datetime)
declare @rowct integer
declare @numrows integer
declare @coursedate datetime
declare @sequenceno integer
declare @curstulink integer
declare @prestulink integer
January 24, 2006 at 6:59 am
Viewing 10 posts - 1 through 10 (of 10 total)