Viewing 10 posts - 1 through 10 (of 10 total)
Check all of your parameters - one of them could be lacking a default. That's what fixed it for me when I was getting this error.
Regards
Jonathan
January 13, 2012 at 9:32 am
Why is that?
I recently had an issue where 'AND @ProfileIDI IS NOT NULL' was extremely slow (> 1 min), whereas using 'OR @ProfileIDI IS NULL' was much faster (< 10...
April 21, 2009 at 3:41 am
If the value won't change for each row, you can do this by putting the first value of the field into a hidden parameter, and then using the hidden parameter...
July 16, 2008 at 4:56 am
Rather than using dynamic code unnecessarily, why not do it like this?
[font="Courier New"]
SELECT*
FROMtbl_profile
WHERE(id = @id OR @id IS NULL)
AND(lastname = @lastname OR @lastname IS NULL)
AND(jobs = @jobs OR @jobs IS...
February 11, 2008 at 8:30 am
The simple answers are to either use a parameter variable in your where clause in the SQL, or filter the rows in the table properties based on a parameter.
If you're...
February 8, 2008 at 3:03 am
On a slightly different note, in Business Intelligence Design Studio any date parameters seems to want input in MM/DD/YYYY format regardless of the language setting of the report. As...
January 24, 2008 at 6:24 am
January 23, 2008 at 10:02 am
I think that the answer is simply to forgo the creation of history items...as this requires default parameters. Then I can have multiple subscriptions (set to run the report)...
January 23, 2008 at 9:51 am
Many thanks for the response Scott - I'll take a look at the Pratt book, though it seems to be Oracle-based whereas for this purpose I'm looking at SQL Server.
Jeff -...
July 26, 2006 at 7:13 am
I'd say your best bet would be to use VBA in Access. You could then loop through all the ppt files and use the PowerPoint object model to inspect the...
June 8, 2006 at 4:47 am
Viewing 10 posts - 1 through 10 (of 10 total)