Viewing 15 posts - 61 through 75 (of 145 total)
Thanks for the information. It sounds like groups are the way to go even if at the time it only ends up being one person.
June 27, 2019 at 7:01 pm
Steve - Thanks for the reply. There is a ton of helpful information in those search results. I should be able to piece enough together to make it work. Can...
June 27, 2019 at 2:55 pm
SQL Server won't be doing the decompressing. I'm trying to use a third party utility that needs the backups to be decompressed.
June 25, 2019 at 5:55 pm
I finally figured out what the issue was. I found that in the rsreportserver.config file this line existed
<Extension Name="ATOM" Type="Microsoft.ReportingServices.Rendering.DataRenderer.AtomDataReport,Microsoft.ReportingServices.DataRendering" Visible="False"/>
I had to update it to
June 20, 2019 at 5:34 pm
There will some data manipulation to create matrices, charts, etc. From what I've read this can act as a source in Excel. The SSRS output will mirror the Excel version.
June 19, 2019 at 12:06 pm
So in my hypothetical scenario, is my only option to find data changes to load the file and compare it to the previous day's table using the ID for all...
June 6, 2019 at 11:41 am
I called it a daily file in my hypothetical scenario of one that has the same structure of the tables. Sorry if that was not clear or got lost in...
June 5, 2019 at 8:01 pm
I understand the concept but not how it applies to the situation I'm working with. Suppose today I create a new target table with the VersionCol field you explained above...
June 5, 2019 at 7:37 pm
Phrasing my question a little better after thinking about RowVersion or adding my own data added field, wouldn't I still have to load the file to SQL, compare the source...
June 5, 2019 at 5:07 pm
Phil - From what I'm reading about RowVersion, that could be a potential solution going forward but won't help looking back at all of the archived tables to determine if...
June 5, 2019 at 3:55 pm
A last updated field would be too convenient so naturally this doesn't have one. I'm able to make the assumption that a large majority of records are inactive solely based...
June 5, 2019 at 3:39 pm
Jeff - How to do you suggest I add the total of all monthly averages to the result below
;
WITH AggCTE
AS (
SELECT DATENAME(mm, DateEntered) AS MonthChar
,Sales
FROM table1
)
SELECT *
FROM...
May 14, 2019 at 2:07 pm
Thom - Yes, each cell is an average of the set it's based on. I totally agree it's a strange way to see a yearly average but that's how the...
May 13, 2019 at 5:09 pm
That's what I'm doing but it isn't coming back with the amount of 10,466,457 which is the sum of the average per month. The result of that formula is a...
May 13, 2019 at 3:45 pm
When I do that I get the sum of all sales instead of the sum of the average sales for each month. I keep going back to starting with this...
May 13, 2019 at 3:37 pm
Viewing 15 posts - 61 through 75 (of 145 total)