Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
rcr69er
Constraint Violating Yak Guru
327 Posts |
Posted - 2008-12-09 : 08:43:12
|
Hi GuysI have a parameter driven report. When I first run the report with the required parameters I get no data back, when I then run the same report straight after with the same parameters I do get data but this time it has been duplicated.Does anyone know why this could be happening? Is it to do with the cache?Thanking you in advance!!! |
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2008-12-09 : 11:58:17
|
nope. dont think its the problem with cache. are you using query or procedure as source?Either case, try executing it directly in query analyser and see what it returns. |
 |
|
rcr69er
Constraint Violating Yak Guru
327 Posts |
Posted - 2008-12-09 : 12:03:36
|
Its using a stored procedure. I've tried runnning it in management studios and the it seems to run through fine. Its just when its run in Reporting Services. |
 |
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2008-12-09 : 12:16:07
|
quote: Originally posted by rcr69er Its using a stored procedure. I've tried runnning it in management studios and the it seems to run through fine. Its just when its run in Reporting Services.
what heppened when you tried executing this in datatab of report to populate dataset grid? did it give desired results? also are you using temporary table and retrieving resultset from it in procedure? |
 |
|
rcr69er
Constraint Violating Yak Guru
327 Posts |
Posted - 2008-12-09 : 14:46:28
|
HiYes I get the desired result when run in the database. And yes there are temp tables involved.Thanks |
 |
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2008-12-10 : 02:37:40
|
quote: Originally posted by rcr69er HiYes I get the desired result when run in the database. And yes there are temp tables involved.Thanks
does you by any chance execute sp more than once in dataset? |
 |
|
rcr69er
Constraint Violating Yak Guru
327 Posts |
Posted - 2008-12-10 : 03:49:13
|
no its executed only once.I'm thinking about just re-creating the table to see what happens |
 |
|
|
|
|