Viewing 15 posts - 1 through 15 (of 49 total)
Thanks for trusting my nose, i don't even trust it myself sometimes!
My bad, I was looking for it in the left panel and drop-down menus.
May 30, 2024 at 5:53 am
You are right about date ranges, I'll fix them in final version, similar to 7 days range. Ideally, Daily averages should have calculated beyond the date limit, all time daily...
May 28, 2024 at 3:24 am
I was able to do it without CTE:
declare @FromDate as datetime2 = '2023-02-01';declare @ToDate as datetime2 = '2024-04-16';
declare @DtRef datetime = Dateadd(dd, Datediff(dd, 0,@ToDate), 0);
select ...
May 27, 2024 at 8:38 am
This is great improvment compared my code, thank you for that.
I only have read access to this database, will talk to the devs about createing function, hopefully they agree.
The averages...
May 24, 2024 at 10:19 am
You can try this:
=IIF(
SUM(IIF(Fields!IN_OPERATING_HOURS.Value = 1, 1, 0)) = 0 OR SUM(IIF(Fields!IN_OPERATING_HOURS.Value = 1, 1, 0)) = Nothing,
0,
...
September 12, 2023 at 2:19 am
You can group you sub report with ID and apply page breaks. This way every ID will be displayed in different pages.
August 15, 2023 at 7:07 am
This could be out of context, as I'm not expert. But why not just publish SSRS reports to Power BI, as power bi seems to act as report server, at...
August 15, 2023 at 7:00 am
It's multidimensional. And for the front end using Devexpress dashboard. All this workarounds are mostly because tool doesn't have option to show/hide nulls by default
June 13, 2023 at 4:15 am
I see, so it has to be in every select statement. I think I'll stick with your original solution, because every select is kind of retrieves different step types. But...
March 6, 2023 at 8:19 am
Here is what my actual select statement looks like (simplified) instead of #sample provided above:
select ps.[Oid]
,o.Oid [Order]
...
March 6, 2023 at 5:51 am
Thanks folks for the great answers, both seems to work correct as I checked with data. Just second query looks more compact. Although, my "sample" is actually 7 complex select...
March 6, 2023 at 3:29 am
Did check the data, in Domino and Oracle looks same : '0200-10-29' and their type is date as well. As far as I know they are not converting it...
November 13, 2013 at 8:35 am
Data type in SQL Server is date in both cases. Previous data flow was Domino->Oracle->SQL Server, now getting direct Domino->SQL Server
November 12, 2013 at 11:52 pm
No it was not. Randomly stops connecting while Node B is active, anybody have any suggestions? I've run out ideas.
There is another package that imports data from Oracle. That...
October 23, 2013 at 10:36 pm
Finally fixed, it was third party firewall blocking the connection
October 23, 2013 at 12:31 am
Viewing 15 posts - 1 through 15 (of 49 total)