multicloud365
  • Home
  • Cloud Architecture
    • OCI
    • GCP
    • Azure
    • AWS
    • IAC
    • Cloud Networking
    • Cloud Trends and Innovations
    • Cloud Security
    • Cloud Platforms
  • Data Management
  • DevOps and Automation
    • Tutorials and How-Tos
  • Case Studies and Industry Insights
    • AI and Machine Learning in the Cloud
No Result
View All Result
  • Home
  • Cloud Architecture
    • OCI
    • GCP
    • Azure
    • AWS
    • IAC
    • Cloud Networking
    • Cloud Trends and Innovations
    • Cloud Security
    • Cloud Platforms
  • Data Management
  • DevOps and Automation
    • Tutorials and How-Tos
  • Case Studies and Industry Insights
    • AI and Machine Learning in the Cloud
No Result
View All Result
multicloud365
No Result
View All Result

Solely Hyperion – Oracle Hyperion EPM weblog: All About Clear Dice & Merge Information Slices!

admin by admin
June 5, 2025
in Data Management
0
Solely Hyperion – Oracle Hyperion EPM weblog: All About Clear Dice & Merge Information Slices!
399
SHARES
2.3k
VIEWS
Share on FacebookShare on Twitter


 In
this Weblog submit we are going to discover the Clear Dice & Merge Information Slices possibility in
Planning and could be leveraged to EPCM purposes utilizing the REST API &
Groovy

The
Clear Dice could be accessed from the Simplified Interface. 

It
does enable to Create a “Clear Dice” job on this display the place you possibly can choose the
Dice you wish to clear the info.

It
does have the choices on what must be cleared?

& The
Clear Choices  

Lets see the choice on how one can invoke the Clear Dice utilizing the REST API. 

The
Clear Dice job deletes the info you specify inside enter and reporting cubes,
nevertheless it doesn’t delete the applying definition within the utility’s
relational tables.

With Partial Information Clear it offers the choice to selected the POV to clear the info in Fundamental Mode

You possibly can choose the Sub Variables to outline the clear. By Choosing the 

By Choosing the Superior Mode it is possible for you to to specify the MDX question for the clear.

Clear
Essbase knowledge solely by utilizing an MDX expression within the textual content field offered. 

*
Essbase Information Logical:
Through which the enter cells within the specified area are
written to a brand new knowledge slice with destructive, compensating values that lead to a
worth of zero for the cells you wish to clear. The method for logically
clearing knowledge completes in a size of time that’s proportional to the dimensions of
the info being cleared. As a result of compensating cells are created, this feature
will increase the dimensions of the database. 

* Essbase Information Bodily: Through which the enter
cells within the specified area are bodily faraway from the combination storage
database. The method for bodily clearing knowledge completes in a size of
time that’s proportional to the dimensions of the enter knowledge, not the dimensions of the
knowledge being cleared. Subsequently, you would possibly sometimes use this technique solely when
you’ll want to take away giant slices of information.

Pattern
Payload

{“jobType”:”CLEAR_CUBE”,
“jobName”:”ClearPlan1″} 

Lets discover how one can invoke the “Clear Dice”  utilizing the REST API & Groovy, 

jsonResponse
=
operation.utility.getConnection(“Localhost”).submit(‘/relaxation/v3/purposes/PCM/jobs’)

    .header(“Content material-Kind”,
“utility/json”)

    .physique(json([

        “jobType” : “Clear
Cube”,

        “jobName” :
“CLR_PCM_01”

        ])

    )

    .asString();

    println ‘Response Obtained’

    println jsonResponse.physique

Making a POST Request:

  • The code
    begins by making a POST request to a particular endpoint utilizing the submit()
    technique.
  • The
    endpoint is ‘/relaxation/v3/purposes/PCM/jobs’.

Setting Headers:

  1. The .header(“Content material-Kind”,
    “utility/json”) line units the request header to point
    that the content material being despatched is in JSON format.

Setting Request Physique:

  1. The .physique(json([…]))
    half specifies the request physique.
  2. Inside
    the json([…]), we now have an array with two key-value pairs:
  • “jobType”
    : “Clear Dice”: This means the kind of job being requested
    (on this case, “Clear Dice”).
  • “jobName”
    : “CLR_PCM_01”: This specifies the title of the job
    (“CLR_PCM_01”).

Executing the Request:

  1. The .asString()
    technique sends the request and receives the response.
  2. The
    response is saved within the jsonResponse variable.

Printing the Response:

  1. The println
    ‘Response Obtained’ line prints a message indicating that the response
    has been obtained.
  2. The println
    jsonResponse.physique line prints the precise response physique.

In abstract,
this code snippet sends a POST request to the desired endpoint with a JSON
payload containing job info. It then prints the response obtained from
the server.

Merges
incremental knowledge slices of an ASO dice. Fewer slices enhance a dice’s
efficiency. You possibly can merge all incremental knowledge slices into the primary database
slice or merge all incremental knowledge slices right into a single knowledge slice with out
altering the primary database slice. You possibly can optionally take away cells which have a
worth of zero.  

Might be accessed from Jobs Console underneath Schedule it’s best to be capable to find the Merge Information Slices. 

 

It may be Scheduled or run instantly. 

Which provides the next choices, of choosing the Dice to run the Merge together with different choices.

The next Desk
summarizes the consumer request parameters particular to this job,

Groovy Code: 

jsonResponse
=
operation.utility.getConnection(“Localhost”).submit(‘/relaxation/v3/purposes/PCM/jobs’)

    .header(“Content material-Kind”,
“utility/json”)

    .physique(json([

        “jobType” : “Merge Data
Slices”,

        “jobName” : “Merge Data
Slices PCMRPT”,

        “parameters”: [

        “cubeName”: “PCMRPT”,

        “mergeSliceType”:
“allIncrementalSlicesInMain”,

        “keepZeroCells”:
“false”

    ]

        ])

    )

    .asString();

    println ‘Response Obtained’

    println jsonResponse.physique 

Set up
Connection
:

 jsonResponse
=
operation.utility.getConnection(“Localhost”).submit(‘/relaxation/v3/purposes/PCM/jobs’)

Set
Request Physique
:

This
specifies the physique of the request, formatted as JSON. The JSON object consists of:

  • “jobType”: Kind of
    the job to be carried out, right here it is “Merge Information Slices”.
  • “jobName”: Identify of
    the job, right here it is “Merge Information Slices PCMRPT”.
  • “parameters”: An
    array of parameters for the job:
    • “cubeName”: Identify
      of the dice to be processed, right here it is “PCMRPT”.
    • “mergeSliceType”: Kind
      of merge operation, right here it is “allIncrementalSlicesInMain”.
    • “keepZeroCells”: A flag
      indicating whether or not to maintain zero cells, right here set to “false”.

 

Hope this Helps, Comfortable Days on the Cloud!

Tags: BlogClearCubeDataEPMHyperionMergeOracleSlices
Previous Post

Sensible AI safety in multi-cloud environments

Next Post

Submit Quantum Encryption Cloud – Your Cloud Stack Is not Prepared

Next Post
Submit Quantum Encryption Cloud – Your Cloud Stack Is not Prepared

Submit Quantum Encryption Cloud - Your Cloud Stack Is not Prepared

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Trending

Amazon CTO’s Tackle ‘Fact’ in 2025 — AWSInsider

Amazon CTO’s Tackle ‘Fact’ in 2025 — AWSInsider

May 28, 2025
The place’s the SOAR Magic Quadrant?

The place’s the SOAR Magic Quadrant?

April 30, 2025
AI Price As A First Class Metric — Our Dialog With David Tepper, CEO and Founding father of Pay-I AI Price As A First Class Metric

AI Price As A First Class Metric — Our Dialog With David Tepper, CEO and Founding father of Pay-I AI Price As A First Class Metric

June 3, 2025
Are You Leaking Secrets and techniques with Terraform? | by Zachary King | Might, 2025

Are You Leaking Secrets and techniques with Terraform? | by Zachary King | Might, 2025

June 12, 2025
Coinbase Flips The Coin On Would-Be Extortionists

Coinbase Flips The Coin On Would-Be Extortionists

May 18, 2025
Cloud-Based mostly Blockchain To Improve Effectivity and Scalability

On-Demand Software program Testing Important For Fashionable Growth

April 24, 2025

MultiCloud365

Welcome to MultiCloud365 — your go-to resource for all things cloud! Our mission is to empower IT professionals, developers, and businesses with the knowledge and tools to navigate the ever-evolving landscape of cloud technology.

Category

  • AI and Machine Learning in the Cloud
  • AWS
  • Azure
  • Case Studies and Industry Insights
  • Cloud Architecture
  • Cloud Networking
  • Cloud Platforms
  • Cloud Security
  • Cloud Trends and Innovations
  • Data Management
  • DevOps and Automation
  • GCP
  • IAC
  • OCI

Recent News

PowerAutomate to GITLab Pipelines | Tech Wizard

PowerAutomate to GITLab Pipelines | Tech Wizard

June 13, 2025
Runtime is the actual protection, not simply posture

Runtime is the actual protection, not simply posture

June 13, 2025
  • About Us
  • Privacy Policy
  • Disclaimer
  • Contact

© 2025- https://multicloud365.com/ - All Rights Reserved

No Result
View All Result
  • Home
  • Cloud Architecture
    • OCI
    • GCP
    • Azure
    • AWS
    • IAC
    • Cloud Networking
    • Cloud Trends and Innovations
    • Cloud Security
    • Cloud Platforms
  • Data Management
  • DevOps and Automation
    • Tutorials and How-Tos
  • Case Studies and Industry Insights
    • AI and Machine Learning in the Cloud

© 2025- https://multicloud365.com/ - All Rights Reserved