{"id":4316,"date":"2024-02-27T20:01:39","date_gmt":"2024-02-27T20:01:39","guid":{"rendered":"https:\/\/quebit.com\/askquebit\/?p=4316"},"modified":"2026-01-16T15:28:38","modified_gmt":"2026-01-16T15:28:38","slug":"ibm-planning-analytics-selecting-copying-and-loading-performance","status":"publish","type":"post","link":"https:\/\/quebit.com\/askquebit\/ibm-planning-analytics-selecting-copying-and-loading-performance\/","title":{"rendered":"How Do Selecting, Copying, and Loading Operations Impact Performance in IBM Planning Analytics?"},"content":{"rendered":"<p><strong>IBM Planning Analytics &#8211; Selecting, Copying and Loading Performance<\/strong><\/p>\n<h2>Selecting, Copying and Loading<\/h2>\n<p>Moving data into, around, and \u201cout of\u201d a Planning Analytics model are examples of common operations and constitute essential practices.<\/p>\n<p><strong><em>Loading<\/em><\/strong> usually involves executing database commands to select information from external data sources, perhaps from a transactional general ledger system or from a data warehouse or lake, transforming that information in some way and then loading it into a model. <strong><em>Executing copies<\/em><\/strong> within a Planning Analytics model is also common practice, where typically an existing version or scenario\u2019s data is copied to a \u201cfresh\u201d version to start a new round of planning or perhaps current forecasted amounts are copied from a source cube and loaded into a shared cube for reporting (just a few of examples of copying data). Finally, you will also find views in a model that are routinely used to <strong><em>export<\/em><\/strong> slices of information from the model, to be consumed by external applications and consumers.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-4323\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2024\/02\/loading.bmp\" alt=\"\" width=\"852\" height=\"500\" \/><\/p>\n<p><strong>What is the Cost<\/strong><strong>\u00a0 <\/strong><\/p>\n<p>Each of the above-mentioned operations has a <em>cost <\/em>to perform<em>.<\/em> The higher the cost (the more resources consumed by the operation) the bigger the potential hit to your model\u2019s overall performance. Many factors influence operational cost and are worth understanding.<\/p>\n<p>Loading data (from external systems) and extracting data (from a Planning Analytics model) may involve executing complex database commands that can cause poor performance. Other factors, such as how a Planning Analytics process establishes connections to external systems, also have the potential to slow your model.<\/p>\n<p>When copies are \u201cin progress\u201d they can, at minimum, slow performance within a model and sometimes, depending upon how they have been implemented, may even lock the model so no work can be performed by any user and no other task or \u201cthread\u201d can execute until the lock is released, since copies typically establish views and subsets to identify source and target data intersection points.<\/p>\n<p>Finally, you may find that processes (both loading and copying) may be modifying <em>meta<\/em> data (for example adding new GL Accounts) \u201con the fly\u201d which can establish locks on objects within the model which influence model performance.<\/p>\n<p><strong>What to Look for<\/strong><\/p>\n<p>The following is not a comprehensive list, nor does it <em>guarantee<\/em> that you will notice a significant improvement in your model\u2019s performance but, but based upon years of experience, these items are typically simple to implement and will improve your model\u2019s overall health:<\/p>\n<p><strong>Poor Selectivity and Volumes<\/strong><\/p>\n<p>Whether you are identifying data in a <a href=\"https:\/\/support.microsoft.com\/en-us\/office\/introduction-to-queries-a9739a09-d3ff-4f36-8ac3-5760249fb65c#:~:text=A%20query%20can%20either%20be,delete%20data%20from%20a%20database.\"><strong>relational database query<\/strong><\/a> or establishing a <a href=\"https:\/\/www.ibm.com\/docs\/en\/planning-analytics\/2.0.0?topic=subset-using-cube-view-as-data-source\"><strong>cube source view<\/strong><\/a>, it is important to be as <em>explicit<\/em> as possible to \u201chandle\u201d only the data that is absolutely necessary. Make sure you are only reading the data you need to meet your objective as opposed to \u201cover-reading\u201d which is reading a larger amount of data and filtering or skipping unwanted data as you process it. Consider including a \u201cwhere clause\u201d in a select statement or subset insert when querying data and, additionally, make sure you \u201cshorten\u201d processing volumes wherever possible by excluding \u201cstale\u201d data, for example selecting and processing only current period record \u2013 as historical periods may not be necessary as part of a daily update.<\/p>\n<p><strong>Persistent Objects<\/strong><\/p>\n<p>TurboIntegrator processes use \u201c<a href=\"https:\/\/www.ibm.com\/docs\/no\/planning-analytics\/2.0.0?topic=wf-view\">Views<\/a>\u201d to establish what data to process.\u00a0 View creation consumes resources and can cause locking. Thankfully, you can use the <strong>ViewCreate<\/strong> function to create a temporary view which persists only for the duration of the TurboIntegrator process or chore in which the view is created (when th process completes, all temporary objects are cleaned up). Also, there is no locking associated with a temporary view, as a temporary view is never saved. This can result in improved performance, because there is no need for TurboIntegrator to wait for locks to be released before operating upon a temporary view.\u00a0Converting your processes from using persistent views to <a href=\"https:\/\/www.ibm.com\/docs\/en\/planning-analytics\/2.0.0?topic=functions-viewcreate\">temporary views<\/a> if accomplished simply by setting a parameter value.<\/p>\n<p><strong>SQL Inefficiencies<\/strong><\/p>\n<p>If you are executing <em>Structured Query Language<\/em> (SQL) commands from within a <a href=\"https:\/\/www.ibm.com\/docs\/en\/planning-analytics\/2.0.0?topic=turbointegrator-basics\">TurboIntegrator process<\/a>, inefficiently written commands can lead to database \u2013 and your model\u2019s &#8211; performance issues. The some of the most common mistakes I have come across include:<\/p>\n<ul>\n<li>Using Select * (over fetching) \u2013 a better option is to explicitly select only the columns that are needed.<\/li>\n<li>Overusing wildcards &#8211; to improve performance when searching for patterns in text fields, it is better to use an index if there is one or, if you must use a wild card search, <em>trailing<\/em> (rather than leading) wildcards are always more efficient.<\/li>\n<li>Using an ORDER BY with enormous amounts of data. If you need to sort a potentially large result set, try introducing a LIMITclause (along with the\u00a0ORDER BY)\u00a0so that the database only sorts the necessary rows.<\/li>\n<li>Using subqueries (<em>a query that appears inside another query) which can typically be slow. Consider rewriting SQL using a <\/em>JOIN, which is typically faster to execute.<\/li>\n<li>Using OR in a WHERE. Your DBA will tell you that the OR operator can cause a full table scan, which is very inefficient.<\/li>\n<\/ul>\n<p>You do not have to be a <em>SQL guru<\/em> to perform most of the above optimizations but if you are unsure, it is always worth a conversation with your database team.<\/p>\n<p><strong>User-imposed Object Locking<\/strong><\/p>\n<p>Another area which can potentially impact your model\u2019s performance is <strong>user privilege<\/strong>. For example, do multiple users have the ability (either by clicking an action button in Planning Analytics Workspace, running them directly through Planning Analytics for Excel or Architect)\u00a0 to initiate copy, load (or other) processes? <a href=\"https:\/\/www.ibm.com\/docs\/en\/planning-analytics\/2.0.0?topic=procedures-turbointegrator-security-is-assigned-by-administrator\">Granting user access to processes<\/a> for \u201con demand,\u201d \u201cself-service,\u201d seems like a good idea however running (and perhaps re-running) a process may restrict or throttle other users within the model, depending upon what the process or processes are doing. Additionally, those privileged users may be unaware of any <a href=\"https:\/\/www.ibm.com\/docs\/en\/planning-analytics\/2.0.0?topic=turbointegrator-scheduling-process-automatic-execution-chores\">scheduled chores<\/a> in the model, increasing the risk of creating <a href=\"https:\/\/www.ibm.com\/support\/pages\/how-troubleshoot-tm1-server-lock-contention\">Lock contention<\/a>.<\/p>\n<p>Another area of risk is when you grant <a href=\"https:\/\/www.ibm.com\/docs\/en\/planning-analytics\/2.0.0?topic=privileges-lock-privilege\">Lock Privileges<\/a> to users, allowing them to actually set and release locks on objects<strong>. <\/strong>Although not typically a mainstream practice, user object locking can cause unexpected behaviors, impacting performance.<\/p>\n<p>Establishing and publishing a daily chore schedule, restricting the number of privileged users (including those that can lock objects) and educating those users on\u00a0 what the processes do and the potential effect on performance are all highly recommended for maintaining your model\u2019s good health.<\/p>\n<p><strong>Frequency, and Scheduling<\/strong><\/p>\n<p>One of the many exciting things that Planning Analytics offers is real-time calculation, consolidation, and reporting. The perceived \u201cneed for speed\u201d often drives the design and operation of a model, and can result in higher levels of resource consumption, slower response at times and higher probability of locking.<\/p>\n<p>To keep your model healthy and performing well, review your design and consider the following:<\/p>\n<ul>\n<li>How <em>often<\/em> do you need to load external data to your model?<\/li>\n<li>Can any data be <em>incrementally loaded<\/em> (ingesting only the source data that became available or has changed since the previous load)?<\/li>\n<li>Can business logic and\/or the processing of data be compartmentalized in \u201creal-time cubes\u201d keeping results or transformed data in \u201cfinalized\u201d or \u201creporting\u201d cubes?<\/li>\n<li>Can access be restricted to cubes and other objects that have higher levels of real-time calculations or other processing? For example, providing simple \u201cinput cubes\u201d to users that periodically \u201csweep\u201d inputs and edits to a reporting cube.<\/li>\n<li>Avoid \u201c<em>trickle<\/em> <em>processing<\/em>\u201d \u2013 meaning consider performing updates as part of a scheduled batch, rather than in a \u201cconstant loop.\u201d<\/li>\n<li>Make scheduled copies of cubes that have higher levels of real-time calculations and use the copy for \u201creporting only\u201d users.<\/li>\n<li>Consider offering a read-only copy of a Planning Analytics server for reporting consumption.<\/li>\n<\/ul>\n<p><strong>Conclusion<\/strong><\/p>\n<p>Hopefully, the information provided here was helpful, and makes you want to learn more, if so, <a href=\"https:\/\/quebit.com\/askquebit\/diagnosing-pafe-performance-issues\/\"><strong>QueBIT\u2019s Knowledge\u00a0Base<\/strong><\/a> is a go-to resource for expert insights on data management, planning analytics, and more.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>IBM Planning Analytics &#8211; Selecting, Copying and Loading Performance Selecting, Copying and Loading Moving data into, around, and \u201cout of\u201d a Planning Analytics model are examples of common operations and constitute essential practices. Loading usually involves executing database commands to select information from external data sources, perhaps from a transactional general ledger system or from&hellip;<\/p>\n","protected":false},"author":5,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[24],"tags":[36,50],"class_list":["post-4316","post","type-post","status-publish","format-standard","hentry","category-ibm","tag-planning-analytics","tag-planning-analytics-user-experience"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How Do Selecting, Copying, and Loading Operations Impact Performance in IBM Planning Analytics? - QueBIT<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/quebit.com\/askquebit\/ibm-planning-analytics-selecting-copying-and-loading-performance\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How Do Selecting, Copying, and Loading Operations Impact Performance in IBM Planning Analytics? - QueBIT\" \/>\n<meta property=\"og:description\" content=\"IBM Planning Analytics &#8211; Selecting, Copying and Loading Performance Selecting, Copying and Loading Moving data into, around, and \u201cout of\u201d a Planning Analytics model are examples of common operations and constitute essential practices. Loading usually involves executing database commands to select information from external data sources, perhaps from a transactional general ledger system or from&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/quebit.com\/askquebit\/ibm-planning-analytics-selecting-copying-and-loading-performance\/\" \/>\n<meta property=\"og:site_name\" content=\"QueBIT\" \/>\n<meta property=\"article:published_time\" content=\"2024-02-27T20:01:39+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-01-16T15:28:38+00:00\" \/>\n<meta name=\"author\" content=\"Jennifer Field\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jennifer Field\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/ibm-planning-analytics-selecting-copying-and-loading-performance\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/ibm-planning-analytics-selecting-copying-and-loading-performance\\\/\"},\"author\":{\"name\":\"Jennifer Field\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#\\\/schema\\\/person\\\/082a9c4156466b9cdad2632e3de62601\"},\"headline\":\"How Do Selecting, Copying, and Loading Operations Impact Performance in IBM Planning Analytics?\",\"datePublished\":\"2024-02-27T20:01:39+00:00\",\"dateModified\":\"2026-01-16T15:28:38+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/ibm-planning-analytics-selecting-copying-and-loading-performance\\\/\"},\"wordCount\":1322,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/ibm-planning-analytics-selecting-copying-and-loading-performance\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/wp-content\\\/uploads\\\/2024\\\/02\\\/loading.bmp\",\"keywords\":[\"Planning Analytics\",\"Planning Analytics User Experience\"],\"articleSection\":[\"IBM\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/quebit.com\\\/askquebit\\\/ibm-planning-analytics-selecting-copying-and-loading-performance\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/ibm-planning-analytics-selecting-copying-and-loading-performance\\\/\",\"url\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/ibm-planning-analytics-selecting-copying-and-loading-performance\\\/\",\"name\":\"How Do Selecting, Copying, and Loading Operations Impact Performance in IBM Planning Analytics? - QueBIT\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/ibm-planning-analytics-selecting-copying-and-loading-performance\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/ibm-planning-analytics-selecting-copying-and-loading-performance\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/wp-content\\\/uploads\\\/2024\\\/02\\\/loading.bmp\",\"datePublished\":\"2024-02-27T20:01:39+00:00\",\"dateModified\":\"2026-01-16T15:28:38+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#\\\/schema\\\/person\\\/082a9c4156466b9cdad2632e3de62601\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/ibm-planning-analytics-selecting-copying-and-loading-performance\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/quebit.com\\\/askquebit\\\/ibm-planning-analytics-selecting-copying-and-loading-performance\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/ibm-planning-analytics-selecting-copying-and-loading-performance\\\/#primaryimage\",\"url\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/wp-content\\\/uploads\\\/2024\\\/02\\\/loading.bmp\",\"contentUrl\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/wp-content\\\/uploads\\\/2024\\\/02\\\/loading.bmp\",\"width\":852,\"height\":500},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/ibm-planning-analytics-selecting-copying-and-loading-performance\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How Do Selecting, Copying, and Loading Operations Impact Performance in IBM Planning Analytics?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#website\",\"url\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/\",\"name\":\"QueBIT\",\"description\":\"QueBIT\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#\\\/schema\\\/person\\\/082a9c4156466b9cdad2632e3de62601\",\"name\":\"Jennifer Field\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/02bd32c7255ad906cd2c6352f643559cfee048a9b227b5b07b6a6f48d5b4a658?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/02bd32c7255ad906cd2c6352f643559cfee048a9b227b5b07b6a6f48d5b4a658?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/02bd32c7255ad906cd2c6352f643559cfee048a9b227b5b07b6a6f48d5b4a658?s=96&d=mm&r=g\",\"caption\":\"Jennifer Field\"},\"url\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/author\\\/quebit\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How Do Selecting, Copying, and Loading Operations Impact Performance in IBM Planning Analytics? - QueBIT","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/quebit.com\/askquebit\/ibm-planning-analytics-selecting-copying-and-loading-performance\/","og_locale":"en_US","og_type":"article","og_title":"How Do Selecting, Copying, and Loading Operations Impact Performance in IBM Planning Analytics? - QueBIT","og_description":"IBM Planning Analytics &#8211; Selecting, Copying and Loading Performance Selecting, Copying and Loading Moving data into, around, and \u201cout of\u201d a Planning Analytics model are examples of common operations and constitute essential practices. Loading usually involves executing database commands to select information from external data sources, perhaps from a transactional general ledger system or from&hellip;","og_url":"https:\/\/quebit.com\/askquebit\/ibm-planning-analytics-selecting-copying-and-loading-performance\/","og_site_name":"QueBIT","article_published_time":"2024-02-27T20:01:39+00:00","article_modified_time":"2026-01-16T15:28:38+00:00","author":"Jennifer Field","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Jennifer Field","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/quebit.com\/askquebit\/ibm-planning-analytics-selecting-copying-and-loading-performance\/#article","isPartOf":{"@id":"https:\/\/quebit.com\/askquebit\/ibm-planning-analytics-selecting-copying-and-loading-performance\/"},"author":{"name":"Jennifer Field","@id":"https:\/\/quebit.com\/askquebit\/#\/schema\/person\/082a9c4156466b9cdad2632e3de62601"},"headline":"How Do Selecting, Copying, and Loading Operations Impact Performance in IBM Planning Analytics?","datePublished":"2024-02-27T20:01:39+00:00","dateModified":"2026-01-16T15:28:38+00:00","mainEntityOfPage":{"@id":"https:\/\/quebit.com\/askquebit\/ibm-planning-analytics-selecting-copying-and-loading-performance\/"},"wordCount":1322,"commentCount":0,"image":{"@id":"https:\/\/quebit.com\/askquebit\/ibm-planning-analytics-selecting-copying-and-loading-performance\/#primaryimage"},"thumbnailUrl":"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2024\/02\/loading.bmp","keywords":["Planning Analytics","Planning Analytics User Experience"],"articleSection":["IBM"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/quebit.com\/askquebit\/ibm-planning-analytics-selecting-copying-and-loading-performance\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/quebit.com\/askquebit\/ibm-planning-analytics-selecting-copying-and-loading-performance\/","url":"https:\/\/quebit.com\/askquebit\/ibm-planning-analytics-selecting-copying-and-loading-performance\/","name":"How Do Selecting, Copying, and Loading Operations Impact Performance in IBM Planning Analytics? - QueBIT","isPartOf":{"@id":"https:\/\/quebit.com\/askquebit\/#website"},"primaryImageOfPage":{"@id":"https:\/\/quebit.com\/askquebit\/ibm-planning-analytics-selecting-copying-and-loading-performance\/#primaryimage"},"image":{"@id":"https:\/\/quebit.com\/askquebit\/ibm-planning-analytics-selecting-copying-and-loading-performance\/#primaryimage"},"thumbnailUrl":"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2024\/02\/loading.bmp","datePublished":"2024-02-27T20:01:39+00:00","dateModified":"2026-01-16T15:28:38+00:00","author":{"@id":"https:\/\/quebit.com\/askquebit\/#\/schema\/person\/082a9c4156466b9cdad2632e3de62601"},"breadcrumb":{"@id":"https:\/\/quebit.com\/askquebit\/ibm-planning-analytics-selecting-copying-and-loading-performance\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/quebit.com\/askquebit\/ibm-planning-analytics-selecting-copying-and-loading-performance\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/quebit.com\/askquebit\/ibm-planning-analytics-selecting-copying-and-loading-performance\/#primaryimage","url":"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2024\/02\/loading.bmp","contentUrl":"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2024\/02\/loading.bmp","width":852,"height":500},{"@type":"BreadcrumbList","@id":"https:\/\/quebit.com\/askquebit\/ibm-planning-analytics-selecting-copying-and-loading-performance\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/quebit.com\/askquebit\/"},{"@type":"ListItem","position":2,"name":"How Do Selecting, Copying, and Loading Operations Impact Performance in IBM Planning Analytics?"}]},{"@type":"WebSite","@id":"https:\/\/quebit.com\/askquebit\/#website","url":"https:\/\/quebit.com\/askquebit\/","name":"QueBIT","description":"QueBIT","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/quebit.com\/askquebit\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/quebit.com\/askquebit\/#\/schema\/person\/082a9c4156466b9cdad2632e3de62601","name":"Jennifer Field","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/02bd32c7255ad906cd2c6352f643559cfee048a9b227b5b07b6a6f48d5b4a658?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/02bd32c7255ad906cd2c6352f643559cfee048a9b227b5b07b6a6f48d5b4a658?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/02bd32c7255ad906cd2c6352f643559cfee048a9b227b5b07b6a6f48d5b4a658?s=96&d=mm&r=g","caption":"Jennifer Field"},"url":"https:\/\/quebit.com\/askquebit\/author\/quebit\/"}]}},"_links":{"self":[{"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/posts\/4316","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/comments?post=4316"}],"version-history":[{"count":4,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/posts\/4316\/revisions"}],"predecessor-version":[{"id":4953,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/posts\/4316\/revisions\/4953"}],"wp:attachment":[{"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/media?parent=4316"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/categories?post=4316"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/tags?post=4316"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}