Multi-Dimensional Indexes in DBMSs

Multi-Dimensional Indexes in DBMSs

Thomas Mercieca, Joseph G. Vella
Copyright: © 2019 |Pages: 11
DOI: 10.4018/JCIT.2019070103
OnDemand:
(Individual Articles)
Available
$37.50
No Current Special Offers
TOTAL SAVINGS: $37.50

Abstract

Multi-dimensional data is present across multimedia, data mining and other data-driven applications. The R-Tree is a popular index structure that DBMSs are implementing as core for efficient retrieval of such data. The gap between the best and worst-case performance is very wide in an R-tree. Thus, building quality R-trees quickly is desirable. Variations differ in how node overflow are approached during the building process. This article studies the R-Tree technique that the open-source PostgreSQL DBMS uses. Focus is on a specific parameter controlling node overflows as an optimisation target, and improved configurations are proposed. This parameter is hard-wired into the DBMS, and therefore, an implementation is presented to allow this parameter to become accessible through an SQL construct. The access method designer can resort to configuring this parameter when trying to meet specific storage or time-related performance targets. With this study, the reader can gain an insight into the effects of changing the parameter by considering the spatial indexes on well-known workloads.
Article Preview
Top

Literature Review

The R-Tree

Guttman’s R-Tree (1984) is a height-balanced tree structure characterized by grouping space into subspaces. Spaces are represented with a Minimum Bounding Rectangle (MBR) structure across dimensions. Each MBR is represented by a node or a page on a disk-based system. An MBR contains several entries of other MBRs, except at the leaf-level, in which the MBR tightly covers the object it is representing and points towards the data record of this object. The maximum value of an R-tree’s height can be given by JCIT.2019070103.m01 where m is the minimum number of entries allowed per node, and N is the number of data elements being indexed. The maximum number of nodes possible in a specific tree (Manolopoulos et al., 2010) is derived by summing the maximum possible number of nodes at each level of the tree:

JCIT.2019070103.m02

Searching an R-Tree consists of a traversal from the topmost level of the tree, checking which MBRs overlap with the input search item. Once the leaf level is reached, all elements on the node are examined to identify which element matches the input item.

Because MBRs can overlap, it is inevitable that an element is not found on the first path explored and multiple paths would have to be subsequently investigated. If the entries in an instance of a node are represented by E1, …, Ep, then the total overlap of an entry in a node, as interpreted by Beckmann, Kriegel, Schneider and Seeger (1990), can be expressed using Equation (2). This overlap is attributed to the large coverage and underused space of each MBR illustrated in Figure 1.

Figure 1.

A visualization of an R-Tree built over a set of data objects

JCIT.2019070103.f01
<i>Minimum Bounding Rectangles</i> (MBRs)</div><p><i>A</i>, <i>B</i> and <i>C</i> minimally cover the indicated elements. In <i>i</i> (as well as from <i>d</i> to <i>k</i>), each element takes the form of an MBR representation of an object with a pointer to its data tuple. Retrieving <i>k</i> requires a traversal down <i>A</i> and <i>C</i> before <i>k</i> is finally found – an example of a multipath problem. Figure has been adapted from <i>Introduction to PostGIS</i> (<i>Boundless</i>, 2017) which is licensed under the Creative Non Commercial-Commons Attribution-ShareAlike 3.0 United States License. A copy of this license can be viewed at <underline><a href="https://creativecommons.org/licenses/by-nc-sa/3.0/legalcode" xmlns:xlink="http://www.w3.org/1999/xlink" target="_blank">https://creativecommons.org/licenses/by-nc-sa/3.0/legalcode</a></underline>.</p><div style="width: 100%;"><a href="https://igiprodst.blob.core.windows.net:443/source-content/9781522563884_200293/JCIT.2019070103.m03.png?sv=2015-12-11&sr=c&sig=ELVdJqtcKf82Py5n7Wq1CrzSRj6kFdIuJc49O8yXcyA%3D&se=2019-11-14T18%3A48%3A54Z&sp=r" target="_blank"><img src="https://igiprodst.blob.core.windows.net:443/source-content/9781522563884_200293/JCIT.2019070103.m03.png?sv=2015-12-11&sr=c&sig=ELVdJqtcKf82Py5n7Wq1CrzSRj6kFdIuJc49O8yXcyA%3D&se=2019-11-14T18%3A48%3A54Z&sp=r" alt="JCIT.2019070103.m03" style="max-width: 100%;" /></a></div><p>The insertion operation builds the R-Tree structure. An insertion identifies a leaf node in which to allocate the new element through finding the least MBR enlargement required. In the case that the enlargement is the same as insertions in other locations, this conflict is resolved by choosing the MBR of the smallest area. Such insertions may overflow a node, in which case a node split is performed. When splitting a node having <i>M</i> entries, the <i>M+1</i> entries are distributed over two nodes.</p><p>The difficulty behind node splitting lies in obtaining a good quality distribution. A decision between possible distributions has to be taken in reasonable time and in some way that future searches on that structure attenuate the problem of traversing multiple paths for a search. Guttman (1984), in the original R-Tree proposal, suggests minimizing the area of the MBR of each resulting node and discusses three splitting heuristics based on their computational time complexity:</p><ul class="xmlReaderUl"><li><i>• </i><p>An exhaustive split where all possible distributions, Guttman quantifies this as 2<sup>M-1</sup>, are examined to select an optimal one.</p></li><li><i>• </i><p>A quadratic split where two entries that would together form the largest possible area are selected as the first item for each node. The remaining entries are assigned to either node depending on where the least area enlargement is generated.</p></li><li><i>• </i><p>A linear split achieving linear time complexity by selecting the pair of MBRs that are furthest away from each other as initial entries. Then, the remaining entries are distributed over the nodes without any condition.</p></li></ul><p>Since the original R-Tree, there have been many notable algorithms and modifications for building good quality splits efficiently: Greene’s (1989) split, the R<sup>+</sup>-Tree (Sellis, Roussopoulos & Faloutsos, 1987) and the Hilbert R-Tree (Kamel & Faloutsos, 1994) are some examples. Minimization of area is no longer the main factor considered for inserting entries. Attention is also given to storage utilisation and overlaps between MBRs among other things. The following explains other node splitting algorithm variations in some detail.</p><p>The R*-Tree (Beckmann et al., 1990) uses a reinsertion strategy when a node overflows. If the overflow remains unresolved, several parameters are taken into account for node split selection: minimization of area covered, minimization of overlap, minimization of perimeter and maximization of storage utilisation. The R*-Tree proposal claims that the best retrieval performance was obtained when the resulting nodes after a split were 40% filled at minimum.</p><p> Ang and Tan’s (1997) new linear split technique emphasizes minimisation of MBR overlap through the use of MBR pairs that are away from each other. For each dimension, an element is allocated to its closest boundary. A split is selected based on the dimension having the most elements. Conflicts are solved by selecting the split with the lowest overlap, and further conflicts are resolved by selecting the split with the least area. The time complexity of this algorithm is linear as it involves a linear scan of all MBRs to place them in an indicated list.</p><p>In Korotkov’s (2012) double sorting-based node splitting algorithm, the MBR of the elements of the overflowing node are projected onto each axis. A set of intervals is formed such that each interval represents the range of the projected box per that dimension in the form of (range<sub>Lower</sub>, range<sub>Upper</sub>) where range<sub>Lower</sub> is the beginning of this range and range<sub>Upper</sub>, the end. This set of intervals is stored in two sets, one sorted by range<sub>Lower</sub> and another sorted by range<sub>Upper</sub>. This algorithm iterates through both sets to create the resulting split. One grouping is formed by taking the smallest range<sub>Lower</sub> and investigating all possible range<sub>Upper</sub>. At the same time, the other entry is formed by taking the largest range<sub>Upper</sub> and investigating all range<sub>Lower</sub>. With every iteration, a split is being proposed for investigation against the previous split: first, the split is checked for the minimum number of entries on each of the resulting nodes against a threshold, then the distribution with minimal overlap is selected, and in case of equal overlap, the split with the nodes being furthest apart is selected. This process is then repeated across dimensions. Korotkov demonstrates that index build time is marginally slower, but node accesses are much less in comparison to Ang and Tan’s (1997) new linear algorithm. The most expensive operation in this technique is sorting with a time complexity of <i>n</i>log(<i>n</i>) with <i>n</i> being the number of items to sort.</p></div></div></div></span><div id="article-list"><h2 class="margin-top"> Complete Article List </h2><div class="search-contents"><span class="text"> Search this Journal: </span><span class="text-box-container"><input id="txtKeywords" type="text" maxlength="50" onkeypress="return SearchJournalFulltextHandleEnter(event, 1075, '');" title="Full text search term(s)" class="SearchTextBox TextBoxWatermark text-box" /></span><div class="inline-block search-contents-xs-full-width"><span class="search"><span class="search-button" onclick="RemoveSpecialCharacters();SearchJournalFulltext(1075, '');"></span></span><span class="reset"><span onclick="RemoveSpecialCharacters();SearchJournalFulltextReset();" class="link-gray-s">Reset</span></span></div></div><div id="searchResults"></div><div id="issues"><div class="bottomspace"><div class="listitemouter toggle-arrow-container" onclick="GetArticles(332807, 227, '', 1075, 26, '')" style="display:block;"><div class="listiteminner listiteminnersmall"><div id="volume332807" class="mar-l-4"><span class="toggle-arrow-15 toggle-arrow-up-15"></span> Volume 26: 1 Issue (2024) </div></div></div><div id="articles332807"></div><div class="listitemouter toggle-arrow-container" style="display:none;cursor:default;"><div class="listiteminner listiteminnersmall"><div class="mar-l-4"> Volume 26: 1 Issue (2024): Forthcoming, Available for Pre-Order </div></div></div><div class="listitemouter toggle-arrow-container" onclick="GetArticles(310093, 227, '', 1075, 25, '')" style="display:block;"><div class="listiteminner listiteminnersmall"><div id="volume310093" class="mar-l-4"><span class="toggle-arrow-15 toggle-arrow-up-15"></span> Volume 25: 1 Issue (2023) </div></div></div><div id="articles310093"></div><div class="listitemouter toggle-arrow-container" style="display:none;cursor:default;"><div class="listiteminner listiteminnersmall"><div class="mar-l-4"> Volume 25: 1 Issue (2023): Forthcoming, Available for Pre-Order </div></div></div><div class="listitemouter toggle-arrow-container" onclick="GetArticles(266318, 227, '', 1075, 24, '')" style="display:block;"><div class="listiteminner listiteminnersmall"><div id="volume266318" class="mar-l-4"><span class="toggle-arrow-15 toggle-arrow-up-15"></span> Volume 24: 5 Issues (2022) </div></div></div><div id="articles266318"></div><div class="listitemouter toggle-arrow-container" style="display:none;cursor:default;"><div class="listiteminner listiteminnersmall"><div class="mar-l-4"> Volume 24: 5 Issues (2022): Forthcoming, Available for Pre-Order </div></div></div><div class="listitemouter toggle-arrow-container" onclick="GetArticles(253907, 227, '', 1075, 23, '')" style="display:block;"><div class="listiteminner listiteminnersmall"><div id="volume253907" class="mar-l-4"><span class="toggle-arrow-15 toggle-arrow-up-15"></span> Volume 23: 4 Issues (2021) </div></div></div><div id="articles253907"></div><div class="listitemouter toggle-arrow-container" style="display:none;cursor:default;"><div class="listiteminner listiteminnersmall"><div class="mar-l-4"> Volume 23: 4 Issues (2021): Forthcoming, Available for Pre-Order </div></div></div><div class="listitemouter toggle-arrow-container" onclick="GetArticles(229442, 227, '', 1075, 22, '')" style="display:block;"><div class="listiteminner listiteminnersmall"><div id="volume229442" class="mar-l-4"><span class="toggle-arrow-15 toggle-arrow-up-15"></span> Volume 22: 4 Issues (2020) </div></div></div><div id="articles229442"></div><div class="listitemouter toggle-arrow-container" style="display:none;cursor:default;"><div class="listiteminner listiteminnersmall"><div class="mar-l-4"> Volume 22: 4 Issues (2020): Forthcoming, Available for Pre-Order </div></div></div><div class="listitemouter toggle-arrow-container" onclick="GetArticles(200290, 227, '', 1075, 21, '')" style="display:block;"><div class="listiteminner listiteminnersmall"><div id="volume200290" class="mar-l-4"><span class="toggle-arrow-15 toggle-arrow-up-15"></span> Volume 21: 4 Issues (2019) </div></div></div><div id="articles200290"></div><div class="listitemouter toggle-arrow-container" style="display:none;cursor:default;"><div class="listiteminner listiteminnersmall"><div class="mar-l-4"> Volume 21: 4 Issues (2019): Forthcoming, Available for Pre-Order </div></div></div><div class="listitemouter toggle-arrow-container" onclick="GetArticles(184794, 227, '', 1075, 20, '')" style="display:block;"><div class="listiteminner listiteminnersmall"><div id="volume184794" class="mar-l-4"><span class="toggle-arrow-15 toggle-arrow-up-15"></span> Volume 20: 4 Issues (2018) </div></div></div><div id="articles184794"></div><div class="listitemouter toggle-arrow-container" style="display:none;cursor:default;"><div class="listiteminner listiteminnersmall"><div class="mar-l-4"> Volume 20: 4 Issues (2018): Forthcoming, Available for Pre-Order </div></div></div><div class="listitemouter toggle-arrow-container" onclick="GetArticles(158193, 227, '', 1075, 19, '')" style="display:block;"><div class="listiteminner listiteminnersmall"><div id="volume158193" class="mar-l-4"><span class="toggle-arrow-15 toggle-arrow-up-15"></span> Volume 19: 4 Issues (2017) </div></div></div><div id="articles158193"></div><div class="listitemouter toggle-arrow-container" style="display:none;cursor:default;"><div class="listiteminner listiteminnersmall"><div class="mar-l-4"> Volume 19: 4 Issues (2017): Forthcoming, Available for Pre-Order </div></div></div><div class="listitemouter toggle-arrow-container" onclick="GetArticles(131586, 227, '', 1075, 18, '')" style="display:block;"><div class="listiteminner listiteminnersmall"><div id="volume131586" class="mar-l-4"><span class="toggle-arrow-15 toggle-arrow-up-15"></span> Volume 18: 4 Issues (2016) </div></div></div><div id="articles131586"></div><div class="listitemouter toggle-arrow-container" style="display:none;cursor:default;"><div class="listiteminner listiteminnersmall"><div class="mar-l-4"> Volume 18: 4 Issues (2016): Forthcoming, Available for Pre-Order </div></div></div><div class="listitemouter toggle-arrow-container" onclick="GetArticles(118381, 227, '', 1075, 17, '')" style="display:block;"><div class="listiteminner listiteminnersmall"><div id="volume118381" class="mar-l-4"><span class="toggle-arrow-15 toggle-arrow-up-15"></span> Volume 17: 4 Issues (2015) </div></div></div><div id="articles118381"></div><div class="listitemouter toggle-arrow-container" style="display:none;cursor:default;"><div class="listiteminner listiteminnersmall"><div class="mar-l-4"> Volume 17: 4 Issues (2015): Forthcoming, Available for Pre-Order </div></div></div><div class="listitemouter toggle-arrow-container" onclick="GetArticles(91262, 227, '', 1075, 16, '')" style="display:block;"><div class="listiteminner listiteminnersmall"><div id="volume91262" class="mar-l-4"><span class="toggle-arrow-15 toggle-arrow-up-15"></span> Volume 16: 4 Issues (2014) </div></div></div><div id="articles91262"></div><div class="listitemouter toggle-arrow-container" style="display:none;cursor:default;"><div class="listiteminner listiteminnersmall"><div class="mar-l-4"> Volume 16: 4 Issues (2014): Forthcoming, Available for Pre-Order </div></div></div><div class="listitemouter toggle-arrow-container" onclick="GetArticles(71199, 227, '', 1075, 15, '')" style="display:block;"><div class="listiteminner listiteminnersmall"><div id="volume71199" class="mar-l-4"><span class="toggle-arrow-15 toggle-arrow-up-15"></span> Volume 15: 4 Issues (2013) </div></div></div><div id="articles71199"></div><div class="listitemouter toggle-arrow-container" style="display:none;cursor:default;"><div class="listiteminner listiteminnersmall"><div class="mar-l-4"> Volume 15: 4 Issues (2013): Forthcoming, Available for Pre-Order </div></div></div><div class="listitemouter toggle-arrow-container" onclick="GetArticles(59107, 227, '', 1075, 14, '')" style="display:block;"><div class="listiteminner listiteminnersmall"><div id="volume59107" class="mar-l-4"><span class="toggle-arrow-15 toggle-arrow-up-15"></span> Volume 14: 4 Issues (2012) </div></div></div><div id="articles59107"></div><div class="listitemouter toggle-arrow-container" style="display:none;cursor:default;"><div class="listiteminner listiteminnersmall"><div class="mar-l-4"> Volume 14: 4 Issues (2012): Forthcoming, Available for Pre-Order </div></div></div><div class="listitemouter toggle-arrow-container" onclick="GetArticles(47558, 227, '', 1075, 13, '')" style="display:block;"><div class="listiteminner listiteminnersmall"><div id="volume47558" class="mar-l-4"><span class="toggle-arrow-15 toggle-arrow-up-15"></span> Volume 13: 4 Issues (2011) </div></div></div><div id="articles47558"></div><div class="listitemouter toggle-arrow-container" style="display:none;cursor:default;"><div class="listiteminner listiteminnersmall"><div class="mar-l-4"> Volume 13: 4 Issues (2011): Forthcoming, Available for Pre-Order </div></div></div><div class="listitemouter toggle-arrow-container" onclick="GetArticles(38787, 227, '', 1075, 12, '')" style="display:block;"><div class="listiteminner listiteminnersmall"><div id="volume38787" class="mar-l-4"><span class="toggle-arrow-15 toggle-arrow-up-15"></span> Volume 12: 4 Issues (2010) </div></div></div><div id="articles38787"></div><div class="listitemouter toggle-arrow-container" style="display:none;cursor:default;"><div class="listiteminner listiteminnersmall"><div class="mar-l-4"> Volume 12: 4 Issues (2010): Forthcoming, Available for Pre-Order </div></div></div><div class="listitemouter toggle-arrow-container" onclick="GetArticles(34995, 227, '', 1075, 11, '')" style="display:block;"><div class="listiteminner listiteminnersmall"><div id="volume34995" class="mar-l-4"><span class="toggle-arrow-15 toggle-arrow-up-15"></span> Volume 11: 4 Issues (2009) </div></div></div><div id="articles34995"></div><div class="listitemouter toggle-arrow-container" style="display:none;cursor:default;"><div class="listiteminner listiteminnersmall"><div class="mar-l-4"> Volume 11: 4 Issues (2009): Forthcoming, Available for Pre-Order </div></div></div><div class="listitemouter toggle-arrow-container" onclick="GetArticles(34990, 227, '', 1075, 10, '')" style="display:block;"><div class="listiteminner listiteminnersmall"><div id="volume34990" class="mar-l-4"><span class="toggle-arrow-15 toggle-arrow-up-15"></span> Volume 10: 4 Issues (2008) </div></div></div><div id="articles34990"></div><div class="listitemouter toggle-arrow-container" style="display:none;cursor:default;"><div class="listiteminner listiteminnersmall"><div class="mar-l-4"> Volume 10: 4 Issues (2008): Forthcoming, Available for Pre-Order </div></div></div><div class="listitemouter toggle-arrow-container" onclick="GetArticles(34985, 227, '', 1075, 9, '')" style="display:block;"><div class="listiteminner listiteminnersmall"><div id="volume34985" class="mar-l-4"><span class="toggle-arrow-15 toggle-arrow-up-15"></span> Volume 9: 4 Issues (2007) </div></div></div><div id="articles34985"></div><div class="listitemouter toggle-arrow-container" style="display:none;cursor:default;"><div class="listiteminner listiteminnersmall"><div class="mar-l-4"> Volume 9: 4 Issues (2007): Forthcoming, Available for Pre-Order </div></div></div><div class="listitemouter toggle-arrow-container" onclick="GetArticles(34980, 227, '', 1075, 8, '')" style="display:block;"><div class="listiteminner listiteminnersmall"><div id="volume34980" class="mar-l-4"><span class="toggle-arrow-15 toggle-arrow-up-15"></span> Volume 8: 4 Issues (2006) </div></div></div><div id="articles34980"></div><div class="listitemouter toggle-arrow-container" style="display:none;cursor:default;"><div class="listiteminner listiteminnersmall"><div class="mar-l-4"> Volume 8: 4 Issues (2006): Forthcoming, Available for Pre-Order </div></div></div><div class="listitemouter toggle-arrow-container" onclick="GetArticles(34975, 227, '', 1075, 7, '')" style="display:block;"><div class="listiteminner listiteminnersmall"><div id="volume34975" class="mar-l-4"><span class="toggle-arrow-15 toggle-arrow-up-15"></span> Volume 7: 4 Issues (2005) </div></div></div><div id="articles34975"></div><div class="listitemouter toggle-arrow-container" style="display:none;cursor:default;"><div class="listiteminner listiteminnersmall"><div class="mar-l-4"> Volume 7: 4 Issues (2005): Forthcoming, Available for Pre-Order </div></div></div><div class="listitemouter toggle-arrow-container" onclick="GetArticles(34970, 227, '', 1075, 6, '')" style="display:block;"><div class="listiteminner listiteminnersmall"><div id="volume34970" class="mar-l-4"><span class="toggle-arrow-15 toggle-arrow-up-15"></span> Volume 6: 1 Issue (2004) </div></div></div><div id="articles34970"></div><div class="listitemouter toggle-arrow-container" style="display:none;cursor:default;"><div class="listiteminner listiteminnersmall"><div class="mar-l-4"> Volume 6: 1 Issue (2004): Forthcoming, Available for Pre-Order </div></div></div><div class="listitemouter toggle-arrow-container" onclick="GetArticles(34965, 227, '', 1075, 5, '')" style="display:block;"><div class="listiteminner listiteminnersmall"><div id="volume34965" class="mar-l-4"><span class="toggle-arrow-15 toggle-arrow-up-15"></span> Volume 5: 1 Issue (2003) </div></div></div><div id="articles34965"></div><div class="listitemouter toggle-arrow-container" style="display:none;cursor:default;"><div class="listiteminner listiteminnersmall"><div class="mar-l-4"> Volume 5: 1 Issue (2003): Forthcoming, Available for Pre-Order </div></div></div><div class="listitemouter toggle-arrow-container" onclick="GetArticles(34960, 227, '', 1075, 4, '')" style="display:block;"><div class="listiteminner listiteminnersmall"><div id="volume34960" class="mar-l-4"><span class="toggle-arrow-15 toggle-arrow-up-15"></span> Volume 4: 1 Issue (2002) </div></div></div><div id="articles34960"></div><div class="listitemouter toggle-arrow-container" style="display:none;cursor:default;"><div class="listiteminner listiteminnersmall"><div class="mar-l-4"> Volume 4: 1 Issue (2002): Forthcoming, Available for Pre-Order </div></div></div><div class="listitemouter toggle-arrow-container" onclick="GetArticles(34955, 227, '', 1075, 3, '')" style="display:block;"><div class="listiteminner listiteminnersmall"><div id="volume34955" class="mar-l-4"><span class="toggle-arrow-15 toggle-arrow-up-15"></span> Volume 3: 1 Issue (2001) </div></div></div><div id="articles34955"></div><div class="listitemouter toggle-arrow-container" style="display:none;cursor:default;"><div class="listiteminner listiteminnersmall"><div class="mar-l-4"> Volume 3: 1 Issue (2001): Forthcoming, Available for Pre-Order </div></div></div><div class="listitemouter toggle-arrow-container" onclick="GetArticles(34950, 227, '', 1075, 2, '')" style="display:block;"><div class="listiteminner listiteminnersmall"><div id="volume34950" class="mar-l-4"><span class="toggle-arrow-15 toggle-arrow-up-15"></span> Volume 2: 1 Issue (2000) </div></div></div><div id="articles34950"></div><div class="listitemouter toggle-arrow-container" style="display:none;cursor:default;"><div class="listiteminner listiteminnersmall"><div class="mar-l-4"> Volume 2: 1 Issue (2000): Forthcoming, Available for Pre-Order </div></div></div><div class="listitemouter toggle-arrow-container" onclick="GetArticles(34945, 227, '', 1075, 1, '')" style="display:block;"><div class="listiteminner listiteminnersmall"><div id="volume34945" class="mar-l-4"><span class="toggle-arrow-15 toggle-arrow-up-15"></span> Volume 1: 1 Issue (1999) </div></div></div><div id="articles34945"></div><div class="listitemouter toggle-arrow-container" style="display:none;cursor:default;"><div class="listiteminner listiteminnersmall"><div class="mar-l-4"> Volume 1: 1 Issue (1999): Forthcoming, Available for Pre-Order </div></div></div></div></div><a href="/journal-contents/journal-cases-information-technology/1075" id="ctl00_cphFeatured_ucJournalContentOverview_lnkJournalContents">View Complete Journal Contents Listing</a></div></div></div></div><script> $(document).ready(function() { $('meta[name="citation_fulltext_world_readable"][content="_EMPTY_"]').attr('content', ''); }); </script><input type="hidden" name="ctl00$cphMain$hfJournalTitleId" id="ctl00_cphMain_hfJournalTitleId" value="1075" /><input type="hidden" name="ctl00$cphMain$hfJournalTitle" id="ctl00_cphMain_hfJournalTitle" value="Journal of Cases on Information Technology (JCIT)" /><input type="hidden" name="ctl00$cphMain$hfJournalUrlKeywords" id="ctl00_cphMain_hfJournalUrlKeywords" value="journal-cases-information-technology" /><script type="text/javascript"> MenuAdjust(); $(window).on('resize orientationChange', function (event) { MenuAdjust(); }); //Shopping cart - Adding item and displaying banner, signup, etc. var userAuthenticated = "false"; function setAddToCartOnClick(sender) { var lblTitle = document.getElementById('lblTitle'); var coverImage = $("#imgCover"); var tdpid = sender.getAttribute('tdpid'); AddShoppingCartSessionItemDynamic(tdpid, sender.getAttribute("a"), null, 1, lblTitle.innerText, coverImage.attr('src'), coverImage.attr('alt'), userAuthenticated); } </script><footer class="footer"><div class="container"><div class="row"><div class="top-margin"><div class="col-md-6"><div class="footer-header"> Learn More </div><div class="text"><a href="/about/" class="footer-link">About IGI Global</a> | <a href="/about/partnerships/" class="footer-link">Partnerships</a> | <a href="/about/memberships/cope/" class="footer-link">COPE Membership</a> | <a href="/contact/" class="footer-link">Contact Us</a> | <a href="/about/staff/job-opportunities/" class="footer-link">Job Opportunities</a> | <a href="/faq/" class="footer-link">FAQ</a> | <a href="/about/staff/" class="footer-link">Management Team</a></div><div class="footer-header header-margin-top"> Resources For </div><div class="text"><a href="/librarians/" class="footerlink">Librarians</a> | <a href="/publish/" class="footerlink">Authors/Editors</a> | <a href="/distributors/" class="footerlink">Distributors</a> | <a href="/course-adoption/" class="footerlink">Instructors</a> | <a href="/about/rights-permissions/translation-rights/" class="footerlink">Translators</a></div><div class="footer-header header-margin-top"> Media Center </div><div class="text"><a href="/symposium/" class="footer-link">Webinars</a> | <a href="/newsroom/" class="footer-link">Blogs</a> | <a href="/catalogs/" class="footer-link">Catalogs</a> | <a href="/newsletters/" class="footer-link">Newsletters</a></div><div class="footer-header header-margin-top"> Policies </div><div class="text"><a href="/about/rights-permissions/privacy-policy/" class="footer-link">Privacy Policy</a> | <a href="/cookies-agreement/" class="footer-link">Cookie & Tracking Notice</a> | <a href="/about/rights-permissions/content-reuse/" class="footer-link">Fair Use Policy</a> | <a href="/accessibility/" class="footer-link">Accessibility</a> | <a href="/about/rights-permissions/ethics-malpractice/" class="footer-link">Ethics and Malpractice</a> | <a href="/about/rights-permissions/" class="footer-link">Rights & Permissions</a></div></div><div class="col-md-6 td-r"><div class="td-r-t"><div class="footer-rightside-container"><div class="left"><div><a href="http://www.facebook.com/pages/IGI-Global/138206739534176?ref=sgm" target="_blank" rel="noopener" aria-label="Facebook"><span class="fb"></span></a>  <a href="http://twitter.com/igiglobal" target="_blank" rel="noopener" aria-label="Twitter"><span class="tw"></span></a>  <a href="https://www.linkedin.com/company/igiglobal" target="_blank" rel="noopener" aria-label="LinkedIn"><span class="linkedin"></span></a></div><div><a href="http://www.world-forgotten-children.org" target="_blank" rel="noopener"><img src="https://coverimages.igi-global.com/images/proud-supporter-of-wfcf-07282015.png" alt="World Forgotten Children's Foundation" title="Proud Supporter of the World Forgotten Children's Foundation" width="157" height="52" /></a></div><div class="margin-top-5"><a href="https://publicationethics.org/category/publisher/igi-global" target="_blank" rel="noopener"><img src="https://coverimages.igi-global.com/images/cope-logo-footer-white.png" alt="Committee on Publication Ethics (COPE)" title="Committee on Publication Ethics (COPE)" /></a></div></div><div class="right"></div></div></div><div class="text copyright-text">Copyright © 1988-2024, IGI Global - All Rights Reserved</div></div></div></div></div></footer><div class="aspNetHidden"><input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="2173C2F0" /><input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION" value="nDtfKUZR/HwQe+Gi4e/p/yTxlVkhDIO7ElAuRU8BfFLKXr2QCnX4IUiraM6SyOox+tQNn1h5oOYVmhiyfxNoldf4D7Rb9g3KoUQGYBb1U0hFnmuX9hNJDXVRdZFAXXRnYq8qm0lGw71e/UhQJyMkdnM0xs/VDMGASMXHd0Ot6RKeFY0KcgI3ciR93ViWDjS143u6BVh0857EaU6xyB0bbNJm+JOCtqQ97knJ4BFnftBvwhXe9Vp/KGDm3KdQKk9GSFWUmfVHQ22hB4H/jejNpTPZNZ9J6X+Mi6TuLNDIGGKlw8vGhrHJ29RNfcyVrjs51CWjKMxU4nWxGk6nG5E7AUe9EwtAiSBIpZjb5Grf4rE64IfOTg9K9fpYYvKLvXbC06xuA2r8/PcY7TQ2ymnWTqXNufZn6vFLwACwesbp5yxHw/ZzebaJBIVvp+aN6gGHyproG7J9+Os7Ao/XnIukC4nyfRw=" /></div><div class="aspNetHidden"><input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" /><input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" /><input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="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" /></div><script type="text/javascript"> //<![CDATA[ var theForm = document.forms['aspnetForm']; if (!theForm) { theForm = document.aspnetForm; } function __doPostBack(eventTarget, eventArgument) { if (!theForm.onsubmit || (theForm.onsubmit() != false)) { theForm.__EVENTTARGET.value = eventTarget; theForm.__EVENTARGUMENT.value = eventArgument; theForm.submit(); } } //]]></script><script src="/WebResource.axd?d=pynGkmcFUV13He1Qd6_TZPmWIJVCCio-VoI6UnxNfXMaVvGMFhCa3dM7UN6i8k0G8WmiNg2&t=638393069798026697" type="text/javascript"></script><script src="/ScriptResource.axd?d=uHIkleVeDJf4xS50Krz-yOT-kfAaRuV-B7a0_ZNSdVUFWr-7W-ryPK68YXruybLkHs7RIc3W1IYflL4tzHONzzojnib5ozbEZ15ZHTDGA9Gkm10Rtr3d5WM0s-FyiiJKLAUYDcUAnCxwqA4cLjLzzjxwxHE1&t=511fa37d" type="text/javascript"></script><script src="/ScriptResource.axd?d=Jw6tUGWnA15YEa3ai3FadL_n9JMC_S7Bq4ts-hrE6DWCsVJj-TE1FXOUvXOhG6IIrXEfRMNe2wJMWY8e2o12m7TbbIMXSKL6tZ4PCpuLpLBASyKBuvZe-tqzJyO7JuP1IFsnDRple9S9lEhSCs2cj-RptvM1&t=511fa37d" type="text/javascript"></script><script type="text/javascript"> //<![CDATA[ Sys.WebForms.PageRequestManager._initialize('ctl00$sm', 'aspnetForm', [], [], [], 90, 'ctl00'); //]]></script><!--**End**--></form></body></html>