Viewing 15 posts - 16 through 30 (of 44 total)
Sorry, probably I have explained badly. I'm looking for something like "justify" in Microsoft Word.
January 9, 2014 at 4:53 am
The ReportServer and ReportServerTempDB built with a differente version of SQL Server.
1) Backup your EncryptionKey
2) Backup ReportServer DB
3) Delete old ReportServer and ReportServerTempDB
4) Create new databases from Reporting Services...
January 8, 2014 at 9:33 am
Honestly i've never buil datasource programmaticaly but you can look at this:
I don't know if this is the best solution....sorry
December 30, 2013 at 2:40 am
The DataSourceID depends on your Reporting Services Instance.
December 30, 2013 at 2:21 am
It's not so simple. Are you using the SQL Connection Wizard for building the connection String?
You are missing two elements: SecurityType and DatabaseID. Take a look at this:
<DataSources>
...
December 30, 2013 at 2:19 am
Sorry but i don't undestand. Do you need 3 pages, one for tom, one for jerry and one for jim with a chart inside?
So use a list and a chart...
December 28, 2013 at 11:11 am
Can you attach a Design View of your Report?
December 24, 2013 at 2:33 am
Mmhhhh, strange. At Report level, take a look at InteractiveSize and PageSize properties. Interactive size is for HTML Rendering. PageSize is for PDF, Word, Excel, ecc....
Set a page break after...
December 24, 2013 at 1:23 am
You have a problem with category Axis. Change Group Expression from longDateTime to this one:
=DateSerial(Year(Fields!logdatetime.Value),
Month(Fields!logdatetime.Value),
Day(Fields!logdatetime.Value))
It will work
December 23, 2013 at 10:07 am
dwain.c (12/23/2013)
Brilliant Jeff, simply brilliant!
December 23, 2013 at 1:40 am
Little better:
select A.[Product Id] as ProductId,
'-' as SubProductId,
(
select exp(sum(log(quantity))) from product_table B
where isprimary = 0
and patindex(ltrim(rtrim(A.[Product Id]))+'.%',B.[Product Id]) > 0
) as Value
from product_table A
where
A.isPrimary = 1...
December 21, 2013 at 3:47 am
A Simple solution:
select A.[Product Id],
(
select exp(sum(log(quantity))) from product_table B
where isprimary = 0
and charindex(ltrim(rtrim(A.[Product Id]))+'.',B.[Product Id]) > 0
) as Value
from product_table A
where
A.isPrimary = 1
Union
select A.[Product Id],Null as Value
from...
December 21, 2013 at 3:23 am
It'easy with a Pie Chart.
With a Bar Chart you have to rearrange your Dataset and aggregate your small data in a single slice.
December 20, 2013 at 12:52 pm
Hope that it' works.
Merry Christmas to you 🙂
December 20, 2013 at 9:31 am
Viewing 15 posts - 16 through 30 (of 44 total)