Quantcast
Channel: SQL Server Reporting Services, Power View forum
Viewing all 10045 articles
Browse latest View live

Rendering extension in Excel: The number of lines exceeds the maximum number of lines per sheet in this format

$
0
0

Good afternoon,

I am generating the report and presented me this error:


"Rendering extension in Excel: The number of lines exceeds the maximum number of lines per sheet in this format; Requested Lines: 66013, Maximum Lines> 65536 (rrRenderingError). Rendering extension in Excel: the number of lines exceeds the maximum number of lines per sheet in this format; Requested Lines: 66013, Maximum Lines: 65536"

Can you help me?

The Query is correct and returns 148k rows:


SELECT 

       TABLE1.CD_EMPRESA as 'Empresa',
       MAX(TABLE2.ds_razaosocial) as 'Razao_Social',
       TABLE3.CD_UNIDADE as 'Unidade',
   TABLE3.DS_PRODUTO as 'Descricao',
   MAX(TABLE3.DS_REFERENCIAMODELO) as 'Referencia_Modelo',
   MAX(TABLE6.DS_MARCAS) as 'DS_Marca',
       MAX(TABLE8.DS_LINHAS)  as 'DS_Linhas',
       MAX(TABLE5.DS_SUBLINHA)  as 'DS_Sub Linha',
       MAX(GRPTABLE3.DS_GRUPOMAT)  as 'DS_Grupo',
       TABLE1.CD_LOCALIZACAO as 'Localizacao',
       TABLE1.CD_LOCAL as 'Local',       
       TABLE3.CD_PRODUTO as 'Produto',
   MAX(TABLE3.CD_GRUPOMAT) as 'CD_GRUPO_MAT',
       MAX(TABLE3.CD_MARCA) CD_MARCA,
       MAX(TABLE3.CD_LINHA) CD_LINHA,
       MAX(TABLE3.CD_SUBLINHA) CD_SUBLINHA,       
   TABLE1.NR_LOTE as 'NR_Lote',
   LOTES_TABLE3.NR_LOTEFORNEC as 'NR_LoteFornec',
   MAX(TABLE3.FG_CONTROLALOTE) FG_CONTROLALOTE,
   MAX(TABLE3.FG_EQUIPAMENTO) FG_EQUIPAMENTO,
       SUM(TABLE1.QT_SALDO) QT_SALDO,
   CONVERT(varchar, MAX(TABLE1.DT_SALDO) ,103) as 'DT_Saldo',
       MAX(TABLE4.DS_MASCARA) as 'DS_Mascara',
       CONVERT(varchar, MAX(LOTES_TABLE3.DT_VALIDADE) , 103) as 'DT_Val',
       MAX(TABLE3.fg_produtovalidade) as fg_produtovalidade,
       MAX(TABLE3.fg_controlalote) as fg_controlatole,
       0.00 as valor_unitario,
       0.00 as valor_total,
       CAST('' AS VARCHAR(20)) as DS_MASCARAVR
   FROM MATERIAIS WITH (NOLOCK) 
         LEFT JOIN UNIDADES WITH (NOLOCK)  on TABLE3.CD_UNIDADE = TABLE4.CD_UNIDADE
         LEFT JOIN SUBLINHAS WITH (NOLOCK)  on TABLE3.CD_SUBLINHA = TABLE5.CD_SUBLINHA
         LEFT JOIN MARCAS WITH (NOLOCK)  on TABLE3.CD_MARCA = TABLE6.CD_MARCA
         LEFT JOIN GRPMATERIAIS WITH (NOLOCK)  on TABLE3.CD_GRUPOMAT = GRPTABLE3.CD_GRUPOMAT
     LEFT JOIN LINHAS WITH (NOLOCK)  on TABLE3.CD_LINHA = TABLE8.CD_LINHA
         LEFT JOIN TABLE1 WITH (NOLOCK)  ON TABLE3.CD_PRODUTO = TABLE1.CD_PRODUTO
INNER JOIN EMPRESAS WITH (NOLOCK)  on TABLE1.CD_EMPRESA = TABLE2.CD_EMPRESA
         LEFT JOIN TABLE9. WITH (NOLOCK)  ON (TABLE1.NR_LOTE = TABLE9.NR_LOTE
         AND TABLE1.CD_EMPRESA = LOTES_TABLE3.CD_EMPRESA)
         LEFT JOIN TABLE10. WITH (NOLOCK) ON (TABLE9.CD_EMPRESA = LOTES_TABLE3.CD_EMPRESA
         AND TABLE10.CD_LOCAL_ESTOQUE = TABLE1.CD_LOCAL)
WHERE TABLE3.FG_SITUACAO = 'A'
AND TABLE1.CD_EMPRESA = 1
GROUP BY TABLE3.CD_PRODUTO,
TABLE3.DS_PRODUTO ,
TABLE3.CD_UNIDADE,
TABLE1.NR_LOTE,
TABLE1.CD_LOCALIZACAO,
TABLE1.CD_LOCAL ,
LOTES_TABLE3.NR_LOTEFORNEC,
TABLE1.CD_EMPRESA 
ORDER BY TABLE3.DS_PRODUTO

Thanks!

Matheus

                    

I NEED HEP WITH MARGING

$
0
0

Hello

When I preview the report it looks good but when I placed it on the dashboard looks bad. The blue is the h

header and the light blue is a table. Please advise.


An item with the same key has already been added. : Error

$
0
0
 select 
 distinct
  L2HdrTxt,L3HdrTxt,LeafhdrTxt,L3HdrTxt as HD,
FullValue1 as IncFV,FullValue_OPI,fullValue_Opm,FullValue_Osy,FullValue_PFC,
FullValue_PRO,FullValue_ZTL,FullValue_ELM,FullValue_CYX,Full_Value,TotalYTDlessDep,ELMLessDEP,ZTLLessDep,PROLESSDEPP,PFCLessDep,PFCLessDep
,OSYLESSDEP,OPMLESSDEP,OIDLESSDEP
from Vw_Consolidated_Period_Range_G_A

I cannot update the above query into my report dataset.. I get the error message  An item with the same key has already been added. I have done some research and to my avail its not helping me.. I have changed the col names and all.. Can someone guide me ?


FM

Issues with Matrix view in SSRS

$
0
0

Hello,

i have a matrix report where i need to group the data based on location column and show row level attributes based on expression.

Is it possible to get a report of type of example given below where row attributes are shown and are grouped on location?

For example,

               Year         2001 2002 2003

Location1 purchase

               Sales

               Total

Location2 Purchase

               total

Location3 Sales 

               total

SSRS 2008 R2 - Matrix column group page break for different excel spreadsheet tab?

$
0
0
This forum is same as my post:

I have SSRS 2008 R2 Visual Studio 2008 R2 project. My Report has matrix on it. Matrix has row group by Month-Year & PostedDate and Column Group by : Country, State and City. In Column group property on Page Breaks tab, I selected Between each instance of a group. But when I export report to excel file, it does not create seperate excel spreadsheet tab for each column group by.
Output of my matrix looks like:
                                                Australia                 
                                                New South Wales                                       Queensland                         Tasmania   
                                                Sydney     New Castle     Wollongong     Brisbane       Gold Coast      Hobart
May-2011 01-May-2011   15               12                45               10              15                    45
               02-May-2011   18               56                89               15              28                    68
               ......
               ......
I follow below below links but no help:
http://msdn.microsoft.com/en-us/library/ms156434.aspx
http://social.msdn.microsoft.com/Forums/en/sqlreportingservices/thread/ea9d795b-8d17-41d2-a1d7-a4069ebb4539

 
Any idea how to add page break in matrix column group by to export in individual spreadsheet tab byCountry? so for each country colmun group will be created in new spreadsheet tab ? Thanks.

SSRS 2016 with SSL Prompting for Credentials

$
0
0

I have a test server set up with SQL Server 2016 and SSRS 2016.  I have the SSRS instance in native mode set up with SSL.    Whenever I go to the Web Portal URL or the Report Server URL, I get prompted for my credentials.  I have verified that the rsReportServer.config file has only <RSWindowsNTLM/> for the AuthenticationType.  The SSRS instance is in the domain and the non-SSL URLS do not prompt for credentials.  I have tried Kerberos by having the SPNS created for the SSL URLs and adding  <RSWindowsNegotiate/>. This doesn't work either.  I don't see any errors in the log files either.

I have scoured posts about SSL and SSRS and the settings for the rsReportServer.config file.  I am sure I am just missing something.  Can someone give advice?  

Thanks in advance.

jbud55


The underlying connection was closed: An unexpected error occurred on a receive.

$
0
0

I have SSRS 2008 running on a Windows 2008 server.  Recently when trying to access the report manager site, I get the following error:

The underlying connection was closed: An unexpected error occurred on a receive.

When I try to render reports, I get the following error:

Attempted to read or write protected memory. This is often an indication that other memory is corrupt.

I have no idea where to begin; my IT department will not allow me access to the logs, so I'm hoping to do some troubleshooting online so I can point them in the right direction. 


paul truland

Microsoft SQL Reporting Services: Something Went Wrong, Please find detail in Setup Log

$
0
0

Hi All,

Having this problem when Im installing SQL Server Express 2019 ..

Microsoft SQL Reporting Services: Something Went Wrong, Please find detail in Setup Log ..

It stated that the error code below

Microsoft SQL Server Reporting Services, errorCode: -2147483648 .. How to resolve this error?

Attach the log file - SSRS_20200401131352.log

[28FC:2B40][2020-04-01T13:13:48]i001: Burn v3.9.1208.0, Windows v10.0 (Build 18362: Service Pack 0), path: C:\Users\DT\Desktop\SQL Reporting Services\SQLServerReportingServices 2019.exe, cmdline: '-burn.unelevated BurnPipe.{A39A6302-18C6-4DED-A15F-8D2DE7B0D7CB} {07D6BD44-50B6-4B4B-A663-E3313971BF02} 10312 '
[28FC:2B40][2020-04-01T13:13:48]i000: Initializing string variable 'ProductName' to value 'Microsoft SQL Server Reporting Services'
[28FC:2B40][2020-04-01T13:13:48]i000: Initializing string variable 'ProductMode' to value 'SSRS'
[28FC:2B40][2020-04-01T13:13:48]i000: Initializing string variable 'ScheduleMSIChangeEdition' to value 'False'
[28FC:2B40][2020-04-01T13:13:48]i000: Initializing string variable 'SKU' to value ''
[28FC:2B40][2020-04-01T13:13:48]i000: Initializing string variable 'PID' to value ''
[28FC:2B40][2020-04-01T13:13:48]i000: Initializing string variable 'Edition' to value ''
[28FC:2B40][2020-04-01T13:13:48]i000: Initializing string variable 'IAcceptLicenseTerms' to value 'False'
[28FC:2B40][2020-04-01T13:13:48]i000: Initializing string variable 'InstallFolder' to value ''
[28FC:2B40][2020-04-01T13:13:52]i000: Setting string variable 'WixBundleLog' to value 'C:\Users\DT\AppData\Local\Temp\SSRS\SSRS_20200401131352.log'
[28FC:2B40][2020-04-01T13:13:52]i000: Setting string variable 'WixBundleOriginalSource' to value 'C:\Users\DT\Desktop\SQL Reporting Services\SQLServerReportingServices 2019.exe'
[28FC:2B40][2020-04-01T13:13:52]i000: Setting string variable 'WixBundleOriginalSourceFolder' to value 'C:\Users\DT\Desktop\SQL Reporting Services\'
[28FC:2B40][2020-04-01T13:13:52]i000: Loading managed bootstrapper application.
[28FC:2B40][2020-04-01T13:13:52]i000: Creating BA thread to run asynchronously.
[28FC:4068][2020-04-01T13:13:52]i000: Setup: Performing action: Install
[28FC:4068][2020-04-01T13:13:52]i000: Setup: Starting loading the file BootstrapperApplicationData.xml
[28FC:4068][2020-04-01T13:13:52]i000: Setup: Completed loading BootstrapperApplicationData.xml content: <BootstrapperApplicationData xmlns="http://schemas.microsoft.com/wix/2010/BootstrapperApplicationData">
  <WixBalCondition Condition="VersionNT64 &gt; v6.1" Message="This application is only supported on 64-bit Windows 8, Windows Server 2012, Windows 10 or higher." />
  <WixBalCondition Condition="Netfx4x64FullVersion &gt;= 394802" Message="This installer requires .NET 4.6.2 or higher." />
  <WixBalCondition Condition="Netfx4FullVersion &gt;= 394802" Message="This installer requires .NET 4.6.2 or higher." />
  <WixBundleProperties DisplayName="Microsoft SQL Server Reporting Services" LogPathVariable="WixBundleLog" Compressed="no" Id="{a2375e8e-b219-4268-9921-799f93bdd998}" UpgradeCode="{CDFB16AB-2502-4628-B527-2731933DE11C}" PerMachine="yes" />
  <WixMbaPrereqInformation PackageId="DotNetFx" LicenseUrl="NetfxLicense.rtf" />
  <WixPackageProperties Package="DotNetFx" Vital="yes" DisplayName="Installing Microsoft .NET 4.7.0" Description="Microsoft .NET Framework 4.7 Setup" DownloadSize="1426720" PackageSize="1426720" InstalledSize="1426720" PackageType="Exe" Permanent="yes" LogPathVariable="WixBundleLog_DotNetFx" RollbackLogPathVariable="WixBundleRollbackLog_DotNetFx" Compressed="yes" DisplayInternalUI="no" Version="4.7.2053.0" InstallCondition="NOT (Netfx4FullVersion &gt;= 460798 OR Netfx4x64FullVersion &gt;= 460798)" Cache="yes" />
  <WixPackageProperties Package="vc_redist.x64.exe" Vital="yes" DisplayName="Installing Microsoft Visual C++ redistributable" Description="Microsoft Visual C++ 2017 Redistributable (x64) - 14.16.27012" DownloadSize="15329280" PackageSize="15329280" InstalledSize="15329280" PackageType="Exe" Permanent="yes" LogPathVariable="WixBundleLog_vc_redist.x64.exe" RollbackLogPathVariable="WixBundleRollbackLog_vc_redist.x64.exe" Compressed="yes" DisplayInternalUI="no" Version="14.16.27012.6" Cache="no" />
  <WixPackageProperties Package="SQLSysClrTypes.msi" Vital="yes" DisplayName="Microsoft System CLR Types for SQL Server 2019 CTP3.0" DownloadSize="4263936" PackageSize="4263936" InstalledSize="10479964" PackageType="Msi" Permanent="yes" LogPathVariable="WixBundleLog_SQLSysClrTypes.msi" RollbackLogPathVariable="WixBundleRollbackLog_SQLSysClrTypes.msi" Compressed="yes" DisplayInternalUI="no" ProductCode="{95F92233-C25F-4722-B43B-3F736459DA3F}" UpgradeCode="{B6DA578A-35EE-4F9E-9531-796DEA2F9F5C}" Version="15.0.1600.8" Cache="yes" />
  <WixPackageProperties Package="adalsql.msi" Vital="yes" DisplayName="Active Directory Authentication Library for SQL Server" DownloadSize="2203648" PackageSize="2203648" InstalledSize="1886247" PackageType="Msi" Permanent="yes" LogPathVariable="WixBundleLog_adalsql.msi" RollbackLogPathVariable="WixBundleRollbackLog_adalsql.msi" Compressed="yes" DisplayInternalUI="no" ProductCode="{AA4514EC-4DB3-43F9-9FB8-C3C0C720D1D6}" UpgradeCode="{F2F0959D-4722-40B0-A8DA-FDC674FA0B32}" Version="14.0.3015.40" Cache="yes" />
  <WixPackageProperties Package="SSReportingServicesSetup" Vital="yes" DisplayName="Microsoft SQL Server Reporting Services" DownloadSize="0" PackageSize="0" InstalledSize="11527928" PackageType="Msi" Permanent="no" LogPathVariable="WixBundleLog_SSReportingServicesSetup" RollbackLogPathVariable="WixBundleRollbackLog_SSReportingServicesSetup" Compressed="yes" DisplayInternalUI="no" ProductCode="{65C09FD7-B3D4-4C4B-971B-48C2A38685F2}" UpgradeCode="{F1975C4B-9A3B-4656-A1F9-8884F8B6EF90}" Version="15.0.7243.37714" InstallCondition="RSInstanceKeyFound OR (IAcceptLicenseTerms = &quot;True&quot;)" Cache="yes" />
  <WixPayloadProperties Payload="DotNetFx" Package="DotNetFx" Container="WixAttachedContainer" Name="NDP47-KB3186500-Web.exe" Size="1426720" LayoutOnly="no" />
  <WixPayloadProperties Payload="vc_redist.x64.exe" Package="vc_redist.x64.exe" Container="WixAttachedContainer" Name="vc_redist.x64.exe" Size="15329280" LayoutOnly="no" />
  <WixPayloadProperties Payload="SQLSysClrTypes.msi" Package="SQLSysClrTypes.msi" Container="WixAttachedContainer" Name="SQLSysClrTypes.msi" Size="4263936" LayoutOnly="no" />
  <WixPayloadProperties Payload="adalsql.msi" Package="adalsql.msi" Container="WixAttachedContainer" Name="adalsql.msi" Size="2203648" LayoutOnly="no" />
  <WixPayloadProperties Payload="SSReportingServicesSetup" Package="SSReportingServicesSetup" Container="WixAttachedContainer" Name="SSReportingServicesSetup.msi" Size="0" LayoutOnly="no" />
  <WixStdbaOverridableVariable Name="PID" />
  <WixStdbaOverridableVariable Name="Edition" />
  <WixStdbaOverridableVariable Name="IAcceptLicenseTerms" />
  <WixStdbaOverridableVariable Name="InstallFolder" />
</BootstrapperApplicationData>
[28FC:4068][2020-04-01T13:13:52]i000: Setting string variable 'InstallFolder' to value 'C:\Program Files\Microsoft SQL Server Reporting Services'
[28FC:4068][2020-04-01T13:13:52]i000: Setting string variable 'SKU' to value 'SsrsEvaluation'
[28FC:4068][2020-04-01T13:14:02]e000: UnexpectedError: Current security context is not associated with an Active Directory domain or forest.
[28FC:2B40][2020-04-01T13:14:02]i100: Detect begin, 5 packages
[28FC:2B40][2020-04-01T13:14:02]i052: Condition 'VersionNT64' evaluates to true.
[28FC:2B40][2020-04-01T13:14:02]i000: Setting numeric variable 'vc14x64Exists' to value 1
[28FC:2B40][2020-04-01T13:14:02]i052: Condition 'VersionNT64' evaluates to true.
[28FC:2B40][2020-04-01T13:14:02]i000: Setting version variable 'vc14x64Version' to value '14.15.26706.0'
[28FC:2B40][2020-04-01T13:14:02]i000: Setting numeric variable 'RSInstanceKeyFound' to value 1
[28FC:2B40][2020-04-01T13:14:02]i052: Condition 'RSInstanceKeyFound' evaluates to true.
[28FC:2B40][2020-04-01T13:14:02]i000: Setting string variable 'InstallFolder' to value 'C:\Program Files\Microsoft SQL Server Reporting Services'
[28FC:2B40][2020-04-01T13:14:02]i000: Setting string variable 'Netfx4FullVersion' to value '528040'
[28FC:2B40][2020-04-01T13:14:02]i000: Setting string variable 'Netfx4x64FullVersion' to value '528040'
[28FC:2B40][2020-04-01T13:14:02]i052: Condition 'Netfx4FullVersion >= 460798' evaluates to true.
[28FC:2B40][2020-04-01T13:14:02]i052: Condition 'vc14x64Exists AND vc14x64Version >= v14.16.27012' evaluates to false.
[28FC:2B40][2020-04-01T13:14:02]i103: Detected related package: {6BF11ECE-3CE8-4FBA-991A-1F55AA6BE5BF}, scope: PerMachine, version: 15.0.1300.359, language: 0 operation: Downgrade
[28FC:2B40][2020-04-01T13:14:02]w120: Detected partially cached package: SSReportingServicesSetup, invalid payload: SSReportingServicesSetup, reason: 0x80070570
[28FC:2B40][2020-04-01T13:14:02]i101: Detected package: DotNetFx, state: Present, cached: None
[28FC:2B40][2020-04-01T13:14:02]i101: Detected package: vc_redist.x64.exe, state: Absent, cached: None
[28FC:2B40][2020-04-01T13:14:02]i101: Detected package: SQLSysClrTypes.msi, state: Present, cached: Complete
[28FC:2B40][2020-04-01T13:14:02]i101: Detected package: adalsql.msi, state: Obsolete, cached: None
[28FC:2B40][2020-04-01T13:14:02]i101: Detected package: SSReportingServicesSetup, state: Present, cached: Partial
[28FC:2B40][2020-04-01T13:14:02]i052: Condition 'RebootPending = 1' evaluates to false.
[28FC:2B40][2020-04-01T13:14:03]i052: Condition 'VersionNT64 > v6.1' evaluates to true.
[28FC:2B40][2020-04-01T13:14:03]i052: Condition 'Netfx4x64FullVersion >= 394802' evaluates to true.
[28FC:2B40][2020-04-01T13:14:03]i052: Condition 'Netfx4FullVersion >= 394802' evaluates to true.
[28FC:2B40][2020-04-01T13:14:03]i199: Detect complete, result: 0x0
[28FC:4068][2020-04-01T13:14:08]i000: User: Repair clicked.
[28FC:2B40][2020-04-01T13:14:08]i200: Plan begin, 5 packages, action: Repair
[28FC:2B40][2020-04-01T13:14:08]i052: Condition 'NOT (Netfx4FullVersion >= 460798 OR Netfx4x64FullVersion >= 460798)' evaluates to false.
[28FC:2B40][2020-04-01T13:14:08]w321: Skipping dependency registration on package with no dependency providers: DotNetFx
[28FC:2B40][2020-04-01T13:14:08]w321: Skipping dependency registration on package with no dependency providers: vc_redist.x64.exe
[28FC:2B40][2020-04-01T13:14:08]i000: Setting string variable 'WixBundleLog_vc_redist.x64.exe' to value 'C:\Users\DT\AppData\Local\Temp\SSRS\SSRS_20200401131352_0_vc_redist.x64.exe.log'
[28FC:2B40][2020-04-01T13:14:08]i000: Setting string variable 'WixBundleLog_SQLSysClrTypes.msi' to value 'C:\Users\DT\AppData\Local\Temp\SSRS\SSRS_20200401131352_1_SQLSysClrTypes.msi.log'
[28FC:2B40][2020-04-01T13:14:08]i052: Condition 'RSInstanceKeyFound OR (IAcceptLicenseTerms = "True")' evaluates to true.
[28FC:2B40][2020-04-01T13:14:08]i000: Setting string variable 'WixBundleLog_SSReportingServicesSetup' to value 'C:\Users\DT\AppData\Local\Temp\SSRS\SSRS_20200401131352_2_SSReportingServicesSetup.log'
[28FC:2B40][2020-04-01T13:14:08]i201: Planned package: DotNetFx, state: Present, default requested: Absent, ba requested: Absent, execute: None, rollback: None, cache: No, uncache: No, dependency: None
[28FC:2B40][2020-04-01T13:14:08]i201: Planned package: vc_redist.x64.exe, state: Absent, default requested: Repair, ba requested: Repair, execute: Install, rollback: None, cache: Yes, uncache: Yes, dependency: None
[28FC:2B40][2020-04-01T13:14:08]i201: Planned package: SQLSysClrTypes.msi, state: Present, default requested: Repair, ba requested: Repair, execute: Repair, rollback: None, cache: No, uncache: No, dependency: Register
[28FC:2B40][2020-04-01T13:14:08]i201: Planned package: adalsql.msi, state: Obsolete, default requested: None, ba requested: None, execute: None, rollback: None, cache: No, uncache: No, dependency: None
[28FC:2B40][2020-04-01T13:14:08]i201: Planned package: SSReportingServicesSetup, state: Present, default requested: Repair, ba requested: Repair, execute: Repair, rollback: None, cache: Yes, uncache: No, dependency: Register
[28FC:2B40][2020-04-01T13:14:08]i299: Plan complete, result: 0x0
[28FC:2B40][2020-04-01T13:14:08]i300: Apply begin
[28FC:2B40][2020-04-01T13:14:08]i052: Condition 'RebootPending = 1' evaluates to false.
[28FC:2B40][2020-04-01T13:14:08]i000: Setup: Bundle action started
[2848:47F0][2020-04-01T13:14:08]i360: Creating a system restore point.
[2848:47F0][2020-04-01T13:14:08]w363: Could not create system restore point, error: 0x80070422. Continuing...
[2848:2878][2020-04-01T13:14:12]i305: Verified acquired payload: vc_redist.x64.exe at path: C:\ProgramData\Package Cache\.unverified\vc_redist.x64.exe, moving to: C:\ProgramData\Package Cache\68D8ED9AF12C2A015D96A3446878E139CE57294C\vc_redist.x64.exe.
[2848:2878][2020-04-01T13:14:12]i304: Verified existing payload: SQLSysClrTypes.msi at path: C:\ProgramData\Package Cache\{95F92233-C25F-4722-B43B-3F736459DA3F}v15.0.1600.8\SQLSysClrTypes.msi.
[2848:2878][2020-04-01T13:14:13]i304: Verified existing payload: SSReportingServicesSetup at path: C:\ProgramData\Package Cache\{65C09FD7-B3D4-4C4B-971B-48C2A38685F2}v15.0.7243.37714\SSReportingServicesSetup.msi.
[28FC:2B40][2020-04-01T13:14:13]i000: Setup: Repair Started for package Installing Microsoft Visual C++ redistributable
[2848:47F0][2020-04-01T13:14:13]i301: Applying execute package: vc_redist.x64.exe, action: Install, path: C:\ProgramData\Package Cache\68D8ED9AF12C2A015D96A3446878E139CE57294C\vc_redist.x64.exe, arguments: '"C:\ProgramData\Package Cache\68D8ED9AF12C2A015D96A3446878E139CE57294C\vc_redist.x64.exe" /install /quiet /norestart'
[28FC:2B40][2020-04-01T13:14:14]i000: Setup: Repair Completed for package Installing Microsoft Visual C++ redistributable
[28FC:2B40][2020-04-01T13:14:14]i319: Applied execute package: vc_redist.x64.exe, result: 0x0, restart: None
[2848:47F0][2020-04-01T13:14:14]i323: Registering package dependency provider: {95F92233-C25F-4722-B43B-3F736459DA3F}, version: 15.0.1600.8, package: SQLSysClrTypes.msi
[28FC:2B40][2020-04-01T13:14:14]i000: Setup: Repair Started for package Microsoft System CLR Types for SQL Server 2019 CTP3.0
[2848:47F0][2020-04-01T13:14:14]i301: Applying execute package: SQLSysClrTypes.msi, action: Repair, path: C:\ProgramData\Package Cache\{95F92233-C25F-4722-B43B-3F736459DA3F}v15.0.1600.8\SQLSysClrTypes.msi, arguments: ' MSIFASTINSTALL="7"'
[28FC:2B40][2020-04-01T13:14:34]i000: Setup: A restart is required.
[28FC:2B40][2020-04-01T13:14:34]i000: Setup: Repair Completed for package Microsoft System CLR Types for SQL Server 2019 CTP3.0
[28FC:2B40][2020-04-01T13:14:34]i319: Applied execute package: SQLSysClrTypes.msi, result: 0x0, restart: Required
[2848:47F0][2020-04-01T13:14:34]i325: Registering dependency: {a2375e8e-b219-4268-9921-799f93bdd998} on package provider: {95F92233-C25F-4722-B43B-3F736459DA3F}, package: SQLSysClrTypes.msi
[2848:47F0][2020-04-01T13:14:34]i323: Registering package dependency provider: {65C09FD7-B3D4-4C4B-971B-48C2A38685F2}, version: 15.0.7243.37714, package: SSReportingServicesSetup
[28FC:2B40][2020-04-01T13:14:34]i000: Setup: Repair Started for package Microsoft SQL Server Reporting Services
[2848:47F0][2020-04-01T13:14:34]i301: Applying execute package: SSReportingServicesSetup, action: Repair, path: C:\ProgramData\Package Cache\{65C09FD7-B3D4-4C4B-971B-48C2A38685F2}v15.0.7243.37714\SSReportingServicesSetup.msi, arguments: ' ARPSYSTEMCOMPONENT="1" MSIFASTINSTALL="7" INSTALLFOLDER="C:\Program Files\Microsoft SQL Server Reporting Services" SKU="SsrsEvaluation" CHANGEEDITION="False"'
[28FC:2B40][2020-04-01T13:14:59]i000: Setup: Removing callstack from message as callstack is available in MSI log.
[28FC:2B40][2020-04-01T13:14:59]e000: UnexpectedError: Burn engine encountered error. PackageId: SSReportingServicesSetup, ErrorType: WindowsInstaller, ErrorCode: -2147483648, Data: , ErrorMessage: Something went wrong, please find details in setup logs.CallStack:
Unhandled Exception: System.Exception: XmlException -    at System.Xml.XmlTextReaderImpl.Throw(Exception e)
   at System.Xml.XmlTextReaderImpl.ParseDocumentContent()
   at System.Xml.XmlLoader.Load(XmlDocument doc, XmlReader reader, Boolean preserveWhitespace)
   at System.Xml.XmlDocument.Load(XmlReader reader)
   at System.Xml.XmlDocument.Load(String filename)
   at Microsoft.BIServer.Setup.MigrateSettingsStep.MigrateMachineKeyFromWebToRsConfig()
   at SetupEngine.Install()
   at SetupEngine.Execute()
   at Microsoft.BIServer.Setup.Setup.Main(String cmdLine)
   at Microsoft.BIServer.Setup.Setup.Main(String cmdLine)
, UIHint: 0
[28FC:2B40][2020-04-01T13:14:59]i000: User: Error: Microsoft SQL Server Reporting Services: Something went wrong, please find details in setup logs.
[28FC:2B40][2020-04-01T13:14:59]e000: UnexpectedError: setup failed for packageId: SSReportingServicesSetup, package: Microsoft SQL Server Reporting Services, errorCode: -2147483648, errorMessage: Something went wrong, please find details in setup logs.
[28FC:2B40][2020-04-01T13:15:01]i000: Setup: Repair Completed for package Microsoft SQL Server Reporting Services
[28FC:2B40][2020-04-01T13:15:01]i319: Applied execute package: SSReportingServicesSetup, result: 0x0, restart: None
[2848:47F0][2020-04-01T13:15:01]i325: Registering dependency: {a2375e8e-b219-4268-9921-799f93bdd998} on package provider: {65C09FD7-B3D4-4C4B-971B-48C2A38685F2}, package: SSReportingServicesSetup
[28FC:2B40][2020-04-01T13:15:01]i000: Setup: Package action completed.
[2848:47F0][2020-04-01T13:15:01]i351: Removing cached package: vc_redist.x64.exe, from path: C:\ProgramData\Package Cache\68D8ED9AF12C2A015D96A3446878E139CE57294C\
[28FC:2B40][2020-04-01T13:15:01]i000: Setup: A restart is required.
[28FC:2B40][2020-04-01T13:15:01]i052: Condition 'RebootPending = 1' evaluates to false.
[28FC:2B40][2020-04-01T13:15:01]i000: User: Bundle action completed with errors, please fix the issue then try repair.
[28FC:2B40][2020-04-01T13:15:01]i399: Apply complete, result: 0x0, restart: Required, ba requested restart:  No
[28FC:4068][2020-04-01T13:15:01]i000: User: Opening url: C:\Users\DT\AppData\Local\Temp\SSRS
 


Danny



SQL Server Reporting Services - Web portal not working - ReportingServiesWebApp is not configured - not listening on any URLs

$
0
0

I freshly installed SQL Server 2019 Enterprise and SQL Server Reporting Services 2019 to a fresh Windows 10 installation, but I don't seem to be able to run the web portal.

Everything seems to be set up alright. Report Server Configuration Manager managed to perform the set-up for me.

However, when I follow the hyperlink suggested by Report Server Configuration Manager (http://devtest:1088/ReportServer), all I get is quite an empty web page, displaying only this:

devtest/ReportServer - /



Microsoft SQL Server Reporting Services, Version 15.0.1102.675

SQL Server seems to be set-up fine:

Object Explorer

The RSPortal log reads:

2020-03-31 23:27:17.9970|INFO|1|File Logger created: C:\Program Files\Microsoft SQL Server Reporting Services\SSRS\LogFiles\RSPortal_2020_03_31_23_27_17.log - level Info, will roll at 32 Mb, process id 8076
2020-03-31 23:27:18.0134|INFO|1|Provider name 
2020-03-31 23:27:18.0134|INFO|1|Container name Microsoft SQL Server Reporting Services Key Container 2010
2020-03-31 23:27:18.0282|INFO|1|Setting up Hosted Process State
2020-03-31 23:27:18.6537|INFO|1|Starting ReportServerWebApp
2020-03-31 23:27:19.2475|INFO|1|ReportingServiesWebApp is not configured - not listening on any URLs
2020-03-31 23:27:19.2475|INFO|1|Ensure the database instance hosting the catalog is running, and URLs are configured via RSConfig tool.

What's wrong?

Your help is very much appreciated.

SSRS not returning values for separate fields within the report

$
0
0
I have two fields in my report. The first is Prev Mo Hours based on the following formula: =iif(Fields!Previous.Value="Y", Fields!Mo_Base_Hrs.Value,0). Next to it is a column labeled Curr Mo Hours which uses the following formula: =iif(Fields!Current.Value="Y", Fields!Mo_Base_Hrs.Value,0).

The sum on the bottom for each of the fields is very similar. Prev Mo Hours is =sum(iif(Fields!Previous.Value = "Y",Fields!Mo_Base_Hrs.Value,Nothing)) and Curr Mo Hours is =sum(iif(Fields!Current.Value = "Y",Fields!Mo_Base_Hrs.Value,Nothing)). They both correctly sum the valuesin the report for each column.

The problem I am having is that it is only returning values for the Prev Mo Hours if the Curr Mo Hours is 0. For example, I have Employee John Smith who has Prev Mo Hours of 126.5 and Curr Mo Hours 120.5. The report only shows a value of 120.5 in the Curr Mo Hours field and 0 in the Prev Mo.

I also have Employee Allen Jones who has 41.2 Prev Mo Hours and 0 Curr Mo Hours. The correct values show up, 41.2 and 0 respectively. But again, any time I have an Employee that has Curr Mo Hours, the Prev Mo Hours show as 0.

I do not have a filter on this report. I do have sorting, but that should have no bearing. I am at a total loss. I have tried to recreate the report with a very simple table and keep getting the same problem. Can someone please help?


Katie Vaughan

SSRS 2019 and Oracle DB with Oracle Client 12c

$
0
0

Hello GM.

We just installed SSRS 2019 on a new Windows 2016 server (Amazon ec2, our app server). We are now using Oracle Client 12c on the app server to create a data source. We are able to connect to the Oracle db fine (validated via SQLPlus), but not able to create a data source.

We also installed the 64 bit drivers per https://docs.microsoft.com/en-us/sql/reporting-services/report-data/oracle-connection-type-ssrs?view=sql-server-ver15.

we are getting the below error message.

Error in the Report Manager

Couldn't connect

The report server couldn't connect to the data source using the information you entered. Make sure you've entered the connection string and any credentials correctly.

A connection cannot be made. Ensure that the server is running.

 

Error in the SSRS Trace Log file

 

processing!ReportServer_0-7!2f58!03/12/2020-15:24:14:: e ERROR: Throwing Microsoft.ReportingServices.ReportProcessing.ReportProcessingException: , Microsoft.ReportingServices.ReportProcessing.ReportProcessingException: Cannot create a connection to data source ''. ---> Microsoft.ReportingServices.XmlaClient.AdomdConnectionException: A connection cannot be made. Ensure that the server is running. ---> System.Net.Sockets.SocketException: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond 10.237.242.149:2383

   at System.Net.Sockets.TcpClient..ctor(String hostname, Int32 port)

   at Microsoft.ReportingServices.XmlaClient.XmlaClient.GetTcpClientByAddress(String hostName, Int32 port)

   at Microsoft.ReportingServices.XmlaClient.XmlaClient.GetTcpClient(ConnectionInfo connectionInfo)

   --- End of inner exception stack trace ---

   at Microsoft.ReportingServices.XmlaClient.XmlaClient.GetTcpClient(ConnectionInfo connectionInfo)

   at Microsoft.ReportingServices.XmlaClient.XmlaClient.OpenTcpConnection(ConnectionInfo connectionInfo)

   at Microsoft.ReportingServices.XmlaClient.XmlaClient.Connect(ConnectionInfo connectionInfo, Boolean beginSession)

   at Microsoft.ReportingServices.XmlaClient.AdomdConnection.XmlaClientProvider.Microsoft.ReportingServices.XmlaClient.AdomdConnection.IXmlaClientProviderEx.ConnectXmla()

   at Microsoft.ReportingServices.XmlaClient.AdomdConnection.ConnectToXMLA(Boolean createSession, Boolean isHTTP)

   at Microsoft.ReportingServices.XmlaClient.AdomdConnection.Open()

   at Microsoft.ReportingServices.Diagnostics.DataExtensionConnectionBase.<>c__DisplayClass5_0.<OpenDataSourceExtensionConnection>b__0()

   at Microsoft.ReportingServices.Diagnostics.DataExtensionConnectionBase.HandleImpersonation(IProcessingDataSource dataSource, DataSourceInfo dataSourceInfo, String datasetName, IDbConnection connection, Action afterImpersonationAction)

   at Microsoft.ReportingServices.Diagnostics.DataExtensionConnectionBase.OpenDataSourceExtensionConnection(IProcessingDataSource dataSourceObj, String connectString, DataSourceInfo dataSourceInfo, String datasetName)

Agrupamentos SQL Reporting Services

$
0
0

Good evening,

How do I group the data that is attached?

They are duplicated.

Thanks!


I would like the color of a text box to be based on the derived value of the text box and not on an expression

$
0
0

The value of my text box (Textbox128) is derived by an expression which references 5 fields from a dataset.

Instead of having the color expression of that text box also reference the long expression, like:

=IIf(
	(	Fields!Shippable_By_EOM.Value 
		-(Fields!AtRisk.Value * IIf(Fields!RemainingBusDays.Value <= 5, 1, 
								IIf(Fields!RemainingBusDays.Value <= 10, .5, 
									.25
									)
								)
		)
	)+ Fields!Invoice_MTD_Sales.Value 
    - Fields!Invoice_MTD_Budget.Value < 0, "Red", "Black")


... it would be much cleaner and easier to have the color only reference the result of the text box expression, like:

=IIf( Tablix1.Textbox128.Value < 0, "Red", "Black")

... i.e. If the text box value is negative then foreground color is RED, else BLACK.

Is this possible?

Thank you in advance!

SSRS Category Axis Problem

$
0
0

Sorry but I am unable to upload picture until my account is verified....

I am currently working on a dashboard report for engineers performance and seemed to have found some rather strange behaviour that I can not seem to fathom out.  The report consists of a number of similar charts showing several different KPIs that the business relies on.  I tried to highlight a selected category selected by the user but some charts work and some others fail.  After searching around the data trying different things I found what the problem is but unsure what needs to be done to stop the problem.

Basic Report with no highlights works correctly, data sorted ok.


Labels on first columns correct with data expected.

Selecting a person to highlight depending on values for AB





Both charts have the correctly highlighted category and labels on axis are correct.

Selecting first category on the top chart (which is the one that works correctly).





Again both charts have a correctly highlighted category.

Choosing to highlight the first category in the bottom chart the following happens.





The category label for the first column is incorrect it instead duplicates one off the other categories, but the data value is correct.  This is only happening on the first column of some charts. 



By adding in a dummy row of data so that the data for CH is in column 2, the highlighting works see below.





Any ideas on what I need to do to sort the problem out.  Adding the extra data is possible but looks untidy, I can blank out labels etc, but adding filter to chart creates the same problem.

Thank you

Jason





Limit report from being exported to excel

$
0
0
We have a report that we do not want to be able to be exported to excel. Is there a way, just on one report to limit the types it is exported to
DBA

Report Builder Error

$
0
0
When I try to Preview a .rdl file that was created using SSRS 2012 Report Builder several years ago with SSRS 2016 Report Builder I get the following error message: "The definition of this report is not valid or supported by this version of Reporting Services. The report definition may have been created with a later version of Reporting Services or contain content that is not well-formed..."

Is this error being caused as a result of using the newer version of Report Builder on an older .rdl file or something else that has nothing to do with the Report Builder itself?

Refresh SSRS when stop processing

$
0
0

Hello, everyone.

I have an auto refresh SSRS 2016 report. Is there a way to refresh it when it throws errors like:An error has occurred during report processing. I mean, keep refreshing although I got the same error because when the error is resolved I have to go manually and load the whole page. This reports is used to monitor online transactions. 

Thanks in advanced.

Regards, 


Geraldo Peralta


Pass pagination variables to a Oracle Query in SSRS 2016 and restrict date filters on calendar

$
0
0

Hello, Forum. 

I am creating a report in SSRS 2016. The database I'm connected to is Oracle 18c. 

Number 1

I need to know how can I pass the parameter in the query to use pagination (OFFSET/FETCH, etc.) and go through the results per page. I want to paginate 50 rows per page. 

Image the query is like 

SELECT column1,column2,column3 FROM table1 WHERE column1='SOME_FLAG'

Number 2 

How can I restrict date filters on reporting services? Because if I have a date filter in my report, a calendar is shown but I want to restrict it to one month so users can no access beyond it. 

Thanks in advanced. 

Regards, 


Geraldo Peralta


google analytics

$
0
0

 

Has anyone experience with pulling data from Google Analytics into SSRS or an SQL database using SSIS?

Reporting Services Connection

$
0
0

I've been tasked with editing a 4yr old report that was created in SSRS 2012. The only report editing tool that's available now is Report Builder 2016. When I try to connect to the SSRS 2012 Reporting Services via the Report Builder in order to use any of the available Data Sources on that version of SSRS for any report that I want to create, let alone the report that I've been tasked to edit, I get the following error message:

"The permissions granted to the current user are insufficient for performing this operation..."

Report Builder Tool version: 2016
Reporting Services version: 2012

Is the Report Builder tool causing this issue or are there some permissions that need to be granted to my Domain Account in Reporting Services?

If permissions need to granted to my Domain Account in Reporting Services, where do I need to go grant those permissions and what should those permissions be?

Thanks All For Your Help With This Issue

Viewing all 10045 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>