Viewing 14 posts - 61 through 74 (of 74 total)
if you haven't already, you need to add your Windows login as a SQL user to Adventure Works and give that login at least data reader permission.
I have seen it...
March 9, 2006 at 4:23 am
hmmm you've got a bit of a problem there... the best way to ensure that a column will always exist even if there's no data is to greate a group...
March 9, 2006 at 4:14 am
Here's a link to the download center for MSRS 2000, has an eval edition of MSRS 2000, but i'm sure if you are licensed for SS 2000 then you'll be...
March 1, 2006 at 12:15 pm
The scheduled report should create a sql agent job on the server which you can see from enterprise manager. you could check and see if the sql agent job has...
February 21, 2006 at 8:13 pm
Sounds to me like one of your params is trying to pass in a NULL value which is being bounced by the report... try allowing NULL values on your report...
December 22, 2005 at 3:56 pm
Maybe you could try using the List Object... this is designed for layout requirements that don't fit a table, like you need text in certain places or irregular layout... not...
October 24, 2005 at 2:30 pm
Sounds like you want to add a drill through linked report. I've never done this but here is some subject areas to search for in VS 2003 Help.
Adding a Drillthrough...
October 24, 2005 at 2:24 pm
A report can only have one default value per parameter, so if you up load the report you'll over ride the other defaults set up. which maybe OK depends...
However you...
October 2, 2005 at 9:36 pm
I'm assuming that when a user enters a date range like 03/10/2005 - 03/10/2005 (dd/mm/yyyy) then they just want everything for that day regardless of time...
So I'd give them two...
October 2, 2005 at 9:24 pm
Change your ORDER BY from
ORDER BY RTRIM(CAST(DATEPART(Year, TimeLineDate) AS char(4)) + '/' + CAST(DATEPART(Month, TimeLineDate) AS char)) DESC
to ...
ORDER BY DATEPART(Year, TimeLineDate) ASC, DATEPART(Month, TimeLineDate) ASC
September 7, 2005 at 10:11 pm
You may also have to process the cube and dimensions before you can view it.
July 24, 2005 at 3:30 pm
just a thought but have you checked that the shared data source for the parameter dataset has also been deployed to your live server?
July 21, 2005 at 7:36 pm
i was thinking that your code was being used to select records into your report ie in the data pane, if so then you can use SQL or a stored...
June 29, 2005 at 3:39 pm
Couldn't you just do this in the SQL? e.g.
SELECT * FROM mytable
WHERE (@Location = Location)
AND (
(@Date = Date)
OR (@DateRange >= DATEDIFF(dd, Date, GETDATE()))
)
Or am i missing...
June 29, 2005 at 3:18 pm
Viewing 14 posts - 61 through 74 (of 74 total)