Welcome to the Oracle Analytics Community: Please complete your User Profile and upload your Profile Picture
Comments
-
Can't you use the time series calculations? TODATE should be able to sum all the required periods correctly. If you did model your fiscal calendar as alternative hierarchy in your time dimension, it will works just fine.
-
Technically "MONTHS_BETWEEN" works, but this exact function isn't exposed in OBIEE. If you don't want to use evaluate to push down to the database FLOOR(MONTHS_BETWEEN(...)), you have to adapt the logic by knowing how OBIEE translate TIMESTAMPDIFF. As said earlier, TIMESTAMPDIFF is MONTHS_BETWEEN, but it has a ROUND()…
-
As the example above shows, with customer create date = 11-March-2021 and current date = 09-June-2021, the result of MONTHS_BETWEEN would be 2.9554... So what's the logic for you to say that 2.9554 should be 2? Another example, MONTHS_BETWEEN 11-March and 12-June = 3.0323, do you want 3? Are you saying your logic should be…
-
Hi, The result you see is correct for the dates you provided: 3. You are asking a different question to OBIEE than what the logic of your formula does. TIMESTAMPDIFF at the MONTH level is translated, in an Oracle database, into ROUND(MONTHS_BETWEEN(...)). Run this piece of SQL on your Oracle database and you see the…
-
https://community.oracle.com/tech/apps-infra/discussion/comment/16798195#Comment_16798195 How is that supposed to help? Are you saying that new browsers are breaking the internet? "old MS Internet Explorer" shouldn't even exist anymore on your system, there are good reasons why Microsoft killed IE. The very new Chrome,…
-
You want a guide for tuning OAC? Open a SR if you have OAC issues, because that's managed by Oracle. For OAS, just like OBIEE, the good practices are the same. There isn't any "go_fast=42" flag, if you have a performance issue, track it down to the source case and fix that one (many believes they have to change all their…
-
Is that really a thing? Anyway, https://support.oracle.com/epmos/faces/DocContentDisplay?id=2707401.1 clearly says "applies to any platform", so it covers any OS on which OAS 5.9.0 is certified.
-
Did you see https://blogs.oracle.com/analytics/saml-20-and-kerberos-single-sign-on-configuration-for-oracle-analytics-server ? There are documents in MOS how to setup SSO with SAML2 for OAS (maybe not update to 5.9, but because Weblogic and FMW are the exact same version of OAS 5.5, they are still valid).
-
Is this the 3rd thread for the same exact thing? Once only a screenshot is posted and this time 1 line of log file?
-
Hi, A screenshot isn't very helpful. You have to find the logs and look there inside for the root cause. Failing at start means you should probably look into all the components which are being started to find the one (or many) being the problem.
-
You can't have a mixed datatype in the same column: if 'a' is a number, 'N/A' should be a number (which is impossible). If you really want 'N/A' then every single number in that column should also be a text, which is maybe not what you want... CAST() can be used to convert any datatype.
-
Can you look what the physical query looks like in the logs? Depending on the database used DATE is maybe not without time component, therefore even a CAST isn't changing anything at the real values.
-
I don't have a column with a time component handy, but you could try using CASE(<your column> as DATE). So in your case the filter would become CAST(<column 1> as DATE) = CAST(<column 2> as DATE)
-
Are those dates really just dates? You seeing '22-Dec-20' doesn't mean the real value isn't 2020-12-22 23:53:47.845 And if you have a time component in your dates, there are lot of chances they will not match the comparison as they will probably all have different times.
-
Hi, Is that an analysis or a report (BI Publisher)? Assuming you mean analysis (by the name of your columns), you take your first column and add a filter. There you check the "Convert this filter to SQL" checkbox. In the window you have, you can enter the SQL condition you want to use. Just write your column1 = column2…
-
Hi, You are already getting answers in the MOSC thread you open. Keeping it short: yes you can have as many installs as you want in a single server as long as they don't overlap on disk and that running environments don't conflicts in ports (so same ports are fine if the 2 or more instances aren't running at the same…
-
The ideal solution is to have a proper time dimension containing your own business rules for dates, because start and end date of a week is a something which must follow your own rules and is going to be different for other companies. If you want to do that in OBIEE itself you can calculate things by using the date…
-
You maybe misread what Joel was saying: what does the physical SQL looks like? It must be a valid query as you get something back, but what is it like? Because if the physical query is correct the result can't be wrong (ok, it can if you have selection steps or other things happening at the BI Server level, but you didn't…
-
The 10g piece of code was hand-made by somebody who shared it. For 11g somebody did it for sure, but they didn't share it (or maybe they did, no idea where).
-
And if you change the aggregation to count distinct in the front-end? Or create a new calculated column in the analysis?