Welcome to the Oracle Analytics Community: Please complete your User Profile and upload your Profile Picture
Comments
-
Hi, What product/version are you using? Just to not give you random replies based on a product you aren't using (OAC is now almost 12 months ahead the latest OAS, and all the changes are in DV).
-
Hi, If you use the Semantic Model to model your data, you can easily create multiple logical table sources for a unique logical table "Sales" with fragmentation logic to tell the system what tables contains what data. Then, when you run queries, the system will automatically query the right table(s) based on the conditions…
-
Not sure you can do much. ODBC is a very generic and almost every source has its own little special things. The RPD supports generic ODBC and that's what it does try to speak with the sources. That's why I was saying to directly see if there is some data coming through when doing an analysis, because doing a row count in…
-
Hi, OAS 2024, also known as OAS 7.6, does comes with the Admin tool version 12.4.2.0.0. You should try to at least use products of the same versions. Not saying that this is your issue… What kind of database type did you select for your Databricks connection? The import of metadata maybe worked, but doesn't mean that the…
-
The timing is maybe going to play against you: the OAS 2025 release is probably being packaged right now, therefore even if they do implement the feature, you will not have it in OAS before 2026. But at least it's there. I imagine support for pagination can be handled by some attributes of each end point, because every…
-
As far as I know there isn't any setting for pagination of REST calls, and I doubt it does magically handle it (if it was the case, you wouldn't be asking). The REST connector is still defined as "preview", therefore it's possible that support for pagination could be added in the future. The best you can do for now is to…
-
In addition to what Federico said, if your 2 tables do not contains exactly the same data, you don't want to always query both tables. If you have a known rule defining what is in table A and what is in table B, you can define the fragmentation rule. In this way, if a filter is set in the front-end for that same criteria,…
-
This RPD was working fine in my previous Oracle Version OBIEE 11g. Going in the same direction of where @Brandon_H was going (I believe): did you upgrade your RPD before to try to deploy it in OAS 2024? Because OBIEE 11g is many many years older than OAS 2024, and there have been many changes. Even just OBIEE 12c required…
-
Hi, Do you mind to expand the "WACS" acronym? Is that Oracle Utilities Work and Asset Cloud Service? If it's the case, I imagine your Publisher is provided as part of that service, is an embedded thing and a product you installed independently, right? If WACS is that cloud service I mentioned, I have no clue what it does…
-
Hi, You seem to be asking a purely data-related question and not a Publisher question. As you refer to a MOS document about Oracle Fusion Cloud services, you should consider asking in the forum that cover Oracle Fusion Cloud applications: (it's a parallel forum fully independent from this one). This category is mostly for…
-
Hi @MSR16 , Another question for you, just to have a better understanding: as your Publisher is part of OAS, did you install the full OAS and are you using the Fusion Middleware security? Or it's fully standalone and you followed for the config of your LDAP?
-
Hi @Abd_Razak_Mohamed , This question being 6 years old, it has been migrated across a few forums and never really got an answer… Are you using FDI? If yes, then you better post a new question in If you aren't using FDI but are asking a data question about your Fusion solution, then the forum looking after Fusion…
-
Hi @Maalavica , what product are you asking about? This category is mostly for technical questions on Publisher. If you are using OBIA or FDI, there are dedicated categories for those products where to ask questions about the data model. If you are using a Fusion product, then you should consider asking your data question…
-
The "Download" button was there in 11g, 12c and is still there in OAS. But apparently you don't have it… Do you mind to post a screenshot of how that page looks like for you? Because it definitely should be there.
-
Hi, The error you get comes from your database and does tell you that something you expect to be a number isn't one ( https://docs.oracle.com/en/error-help/db/ora-01722/?r=23ai ). If you look in your logs you find the physical SQL that has been sent to your database and will easily be able to fix it. It generally comes…
-
@Rama123-Oracle , your users are able to see the analysis, but it simply doesn't have any data to show (it's different than not being able to see it). If you, with different roles, have results when opening the same analysis (assuming same prompts/filters if any), it's probably because of some row-level security jumping…
-
Hi, I assume you are using OAC with the January 2025 release, right? Do you see this issue only with this data flow or with many of them? I just built a quick test data flow in an OAC instance, it does preserve the names correctly. Therefore, if you only see the issue with this single data flow, it's possible that there is…
-
Hi @User_WA0HA , ODI is not an Oracle Analytics product, therefore it isn't covered by this forum. As your question isn't linked to your OAC usage but about a direct connection between ODI and your current source, it is an ODI-only question. Various other ODI questions have been pointed to this other forum: (In the…
-
Ok, first thing: you can get rid of EVALUATE, you don't need it. The strange thing is that you have an hardcoded value for the position where to start the SUBSTRING for Month2, does this mean that you know the exact position of all the ']'? In that case remove EVALUATE and just enter the numbers directly. There is a LSQL…
-
Hi, Tried substr and instr and its not working. What did you try exactly? Any particular reason for wanting to use EVALUATE? In simple SQL, with SUBSTR and INSTR you can do the job, adding some extra logic around it to manage boundaries. Also, if you have a fixed, constant number of "]" per row, it will be a lot simpler.…