Viewing 15 posts - 1 through 15 (of 52 total)
Are you referring to this?
April 24, 2025 at 3:16 pm
Add TrustServerCertificate=True; to the connection string.
April 24, 2025 at 2:29 pm
hmmmm.....
ISNULL(
SUM(
CASE
WHEN colB...
April 22, 2025 at 3:03 pm
you ran this?
ISNULL(
SUM(
colA * Constant1 * colC /
(NULLIF(colB, 0) * CASE WHEN colD = 'XX' THEN Constant2 ELSE 1 END)
), 0
) AS calcdfield
April 22, 2025 at 2:59 pm
Are you making any calculations in the report?
April 22, 2025 at 2:34 pm
Try this:
ISNULL(
SUM(
colA * Constant1 * colC /
(NULLIF(colB,...
April 22, 2025 at 1:57 pm
Visual Studio: You can't delete from the report. In Report Designer, go to Solutions Explorer and delete from the Shared Dataset Folder or the Shared Data Sources...
April 20, 2025 at 1:14 am
Specify the Columns your want avoid using Select *. Do you need all records returned? maybe use where clause to limit records.
in SSIS adjust CommandTimeOut set...
April 19, 2025 at 7:32 pm
I'm not sure what your issue is? Is it timing out? or giving you an error? Make a copy of you two views as a backup, just in case.
Does your...
April 19, 2025 at 3:10 am
I would think your problem is going to be a field where you are doing a calculation, also look at if your are grouping with totals.
April 18, 2025 at 3:46 pm
You can also disable report caching.
https://iatric.com/ssrs-tip-adding-a-tool-to-clear-the-ssrs-data-cache/
April 18, 2025 at 3:41 pm
Connect to Report server in SSMS .
DELETE FROM ReportServerTempDB.dbo.ExecutionCache
Restart SSRS Services
April 18, 2025 at 3:35 pm
Check connection string:
Sql Connection: Data Source=ServerName;Initial Catalog=DatabaseName;User ID=Username;Password=Password;
VS
OleDbConnection: Provider=SQLOLEDB;Data Source=ServerName;Initial Catalog=DatabaseName;User ID=Username;Password=Password;
If you're using SqlConnection in .NET, the connection string should not...
April 17, 2025 at 12:01 pm
What are the prerequisites?
April 16, 2025 at 12:58 pm
Viewing 15 posts - 1 through 15 (of 52 total)