Viewing 15 posts - 511 through 525 (of 595 total)
In SQL you could just do this:
CAST('1:2:3' AS DATETIME)[/code]
which would return "1900-01-01 01:02:03.000" and then use SSRS to extract the time only, preserving the zeros.
November 20, 2013 at 7:59 am
Then that's most probably the issue. SSRS takes up memory for rendering reports aside from the sql server that takes the query.
Have a look at this article about configuring...
November 20, 2013 at 3:13 am
Could be any number of reasons. Is the dev server less powerful than the production one? Are the dev server reports looking at the same database location as the production...
November 20, 2013 at 2:15 am
No it won't loop, assuming you are only showing one unit id record in your first tablix then the sub report you set up will show the many records of...
November 19, 2013 at 10:20 am
You could achieve this by having your second tablix as a sub report. You could have a (hidden) parameter in the sub report for say Unit_ID that is passed into...
November 19, 2013 at 9:49 am
What is the timeout message saying? Is it a connection timeout? Have you run a profile on the target server and run the report? If so does the SQL complete?
The...
November 19, 2013 at 6:09 am
You can achieve this through using subscriptions.
Wherever the report is located (Report Server/Sharepoint etc) go to the properties and click on Manage Subscriptions. Then click Add Subscription and configure...
November 19, 2013 at 4:31 am
I can only answer this from a perspective of using the SQL Server BI stack but I thought I'd share some thoughts.
I'm going to assume a scenario of data...
November 15, 2013 at 6:05 am
This is a big area and doesn't have one simple answer. I would suggest starting with this article (and it's sub pages) and then decide from that which is the...
November 15, 2013 at 2:58 am
Set the default value of your parameter as an expression like
=Today()
with any formatting of the date that you need (I'm thinking that since you are passing this value to...
November 15, 2013 at 2:51 am
Have a read of this article on conditional formatting in SSRS
http://technet.microsoft.com/en-us/library/ms156400%28v=sql.100%29.aspx
November 14, 2013 at 7:32 am
It will show "All" because in your query you are specifying a different member.
So in the context of [DimTagInstance].[Site Id].[Site Id] the calculation [DimTagInstance].[Latitude].CURRENTMEMBER.Name will return "All" because you...
November 14, 2013 at 3:50 am
Koen Verbeeck (7/15/2013)
How about you start designing the package and ask a question when you run into problems, instead of relying on other people to do your job?
Haha brilliant! 😀
To...
November 11, 2013 at 4:39 am
Your test environment should mirror your production environment. If it works in test it works in production. Simple.
November 11, 2013 at 4:36 am
Hello again 🙂
I have to admit I don't have experience of this myself but I'd imagine it's something to do with permissions. Have a read of this article, paying attention...
November 7, 2013 at 10:09 am
Viewing 15 posts - 511 through 525 (of 595 total)