Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Customer needed a "region" annotation for report purposes.
We created the annotation ("Region" for storage arrays) and populated it in the six OCI servers affected. The next day the DWH administrative portal shows "Region" as unpublished in the Annotations list on DWH. We published it, watched the job run to a successful conclusion, and restarted the reporting portal, but "Region" is not showing up in the capacity datamart.
What did I miss?
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I believe that custom annotations propagate no further than the Inventory mart. You might want to make sure it has gotten that far; use SQL something like this:
select distinct annotationType, valueIdentifier from dwh_inventory.annotation_value where annotationType like "Region"
You can get that into Cognos as a table with a SQL query something like this:
select av.valueIdentifier as region, obj2av.objectId as objId
from dwh_inventory.annotation_value av, dwh_inventory.object_to_annotation obj2av
where av.id = obj2av.annotationValueId
and av.annotationType like "Region"
You can then join this to dwh_capacity.storage_dimension on foo.objid = storage_dimension.id, or equivalent.
It would be great to find out that there's an easier way.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
It is within the realm of possibility to use Framework Manager to manipulate the Cognos model to add custom annotations to the model. I am not smart enough to offer more guidance on this topic
