WO2020010115A1 - Index data structures and graphical user interface - Google Patents
Index data structures and graphical user interface Download PDFInfo
- Publication number
- WO2020010115A1 WO2020010115A1 PCT/US2019/040352 US2019040352W WO2020010115A1 WO 2020010115 A1 WO2020010115 A1 WO 2020010115A1 US 2019040352 W US2019040352 W US 2019040352W WO 2020010115 A1 WO2020010115 A1 WO 2020010115A1
- Authority
- WO
- WIPO (PCT)
- Prior art keywords
- data structure
- hierarchy
- processor
- data
- search
- Prior art date
- Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
- Ceased
Links
Classifications
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F16/00—Information retrieval; Database structures therefor; File system structures therefor
- G06F16/20—Information retrieval; Database structures therefor; File system structures therefor of structured data, e.g. relational data
- G06F16/22—Indexing; Data structures therefor; Storage structures
- G06F16/2228—Indexing structures
- G06F16/2255—Hash tables
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F16/00—Information retrieval; Database structures therefor; File system structures therefor
- G06F16/20—Information retrieval; Database structures therefor; File system structures therefor of structured data, e.g. relational data
- G06F16/22—Indexing; Data structures therefor; Storage structures
- G06F16/2228—Indexing structures
- G06F16/2237—Vectors, bitmaps or matrices
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F16/00—Information retrieval; Database structures therefor; File system structures therefor
- G06F16/20—Information retrieval; Database structures therefor; File system structures therefor of structured data, e.g. relational data
- G06F16/22—Indexing; Data structures therefor; Storage structures
- G06F16/2228—Indexing structures
- G06F16/2246—Trees, e.g. B+trees
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F16/00—Information retrieval; Database structures therefor; File system structures therefor
- G06F16/20—Information retrieval; Database structures therefor; File system structures therefor of structured data, e.g. relational data
- G06F16/24—Querying
- G06F16/245—Query processing
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F16/00—Information retrieval; Database structures therefor; File system structures therefor
- G06F16/90—Details of database functions independent of the retrieved data types
- G06F16/901—Indexing; Data structures therefor; Storage structures
- G06F16/9024—Graphs; Linked lists
Definitions
- FIGS. 3-3D depict working examples in accordance with aspects of the disclosure.
- FIG 4 is another example flow diagram in accordance with aspects of the present disclosure.
- an apparatus may comprise a memory and at least one processor configured to execute the following operations: generate an index in the memory, the index comprising a hierarchy of interlinked data structures and a hash table such that an entry in the hash table comprises an association between a date and a first data structure in the hierarchy of interlinked data structures; receive a search request from a remote device, the search request comprising a plurality of search parameters including the date; search the hash table, using the date, for a memory address of the first data structure in the hierarchy of interlinked data structures; determine a plan for traversing the hierarchy of interlinked data structures based on the search parameters; begin a search for data sought after by the search request at the first data structure in accordance with the traversal plan; and return results of the search to the remote device.
- an apparatus may comprise a memory, a display device, and at least one processor to execute the following operations: render a graphical user interface on the display device; transmit a search request to a remote server; receive a plurality of records in response to the search request, wherein a format of each received record matches a format of each memory space allocated for each record; copy each received record to a respective allocated memory space; add each allocated memory space to a linked list of memory spaces such that an order of the linked list reflects the order in which the plurality of records are received; and periodically render currently received records on the graphical user interface until all data records responsive to the search request are received.
- memory 104 of computer apparatus 101 may also store index
- index 103 may be a database organized in a specific manner to optimize queries for data occurring on a specific date.
- memory 104 may be a random access memory (“RAM”) device.
- memory 104 may be divided into multiple memory segments organized as dual in-line memory modules (“DIMMs”).
- DIMMs dual in-line memory modules
- memory 104 may comprise other types of devices, such as non-transitory computer readable media.
- Non-transitory computer readable media may comprise any one of many physical media (e.g., electronic, magnetic, optical, electromagnetic, or semiconductor media).
- non-transitory computer- readable media include, but are not limited to, a portable magnetic computer diskette such as floppy diskettes or hard drives, a read-only memory (“ROM”), an erasable programmable read-only memory, a portable compact disc or other storage devices that may be coupled to a computer apparatus directly or indirectly.
- Memory 104 may also include any combination of one or more of the foregoing and/or other devices as well.
- the instructions residing in memory 104 may be retrieved and executed by processor 102. These instructions may comprise any set of instructions to be executed directly (such as machine code) or indirectly (such as scripts) by processor 102.
- the terms "instructions,” “scripts,” or “modules” may be used interchangeably herein.
- the computer executable instructions may be stored in any computer language or format, such as in object code or modules of source code.
- the instructions may be implemented in the form of hardware, software, or a combination of hardware and software and that the examples herein are merely illustrative.
- At least one processor may generate a hash table in the memory.
- the hash table may be another aspect of the index.
- each entry in the hash table may comprise an association between a date and a first data structure of a hierarchy of interlinked data structures.
- FIG. 3 an illustrative hash table 302 is shown.
- Hash table 302 shows an association between date 304 ( i.e ., July 20, 2017) and data structure 308 and date 306 ⁇ i.e., February 2, 2016) with data structure 310.
- data structure 308 and data structure 310 are binary search trees (“BST”).
- At least one processor may receive a search request from a remote device, as shown in block 206.
- the search request may include a date and a plurality of other search parameters.
- at least one processor may search the hash table (e.g., hash table 302), using the date, for an associated memory address of a first data structure of a hierarchy of data structures.
- at least one processor of a computer may determine a plan for traversing the hierarchy of interlinked data structures based on the search parameters. In one example, determining a traversal plan may include determining a depth in the hierarchy where the sought after data may be found based on the search parameters.
- At least one processor may begin a search for the sought after data at the first data structure of the hierarchy, as shown in block 212.
- the BST 308 may be a first data structure in a hierarchy of data structures in this example.
- Each node in the BST shown in FIG. 3A may contain a pointer to a second data structure in the hierarchy.
- the first level of the hierarchy may contain the symbols while the second level of the hierarchy may contain the transactions associated with that symbol on that particular day.
- FIG. 3A In the example of FIG.
- node 312 contains a pointer to data structure 312A containing all the transactions for symbol“MMM” on July 20, 2017;
- node 320 contains a pointer to data structure 320A containing all the transactions for symbol“TTT” on July 20, 2017;
- node 314 contains a pointer to data structure 314A containing all the transactions for symbol“GGG” on July 20, 2017;
- node 316 contains a pointer to data structure 316A containing all the transactions for symbol“CCC” on July 20, 2017;
- node 318 contains a pointer to data structure 318A containing all the transactions for symbol“JJJ” on July 20, 2017;
- node 322 contains a pointer to data structure 322A containing all the transactions for symbol“PPP” on July 20, 2017; and
- node 324 contains a pointer to data structure 324A containing all the transactions for symbol “YYY” on July 20, 2017.
- the example of FIG. 3A contains only two levels of data, but it is understood that the hierarchy
- FIG. 3B a close up illustration of the data structure 320A is shown.
- a processor may arrive at node 320 of the BST in its search for“TTT” transactions on July 20, 2017.
- the first level data structure 308 only contains the symbols.
- the transactions may be found in the next level.
- data structure 320A is at a second level of the hierarchy and contains all the transactions for symbol“TTT” on July 20, 2017.
- data structure 320A may be a vector data structure.
- the vector data structure of FIG. 3B shows three nodes 326, 328, and 330 representing orders for symbol“TTT” on July 20, 2017.
- Each node contains a further linked list branching out therefrom that represents transactions for each order.
- node 326 may represent an order with two transactions 326A and 326B branching out therefrom;
- node 328 may represent an order with three transactions 328A, 328B, and 328C branching out therefrom; and
- node 330 may represent an order with one transaction 330A branching out therefrom.
- the results of the query may be returned, as shown in block 214.
- the data in vector data structure 320A may be sent back to the device requesting this information. While this example uses a vector data structure for the orders, it is understood that other types of data structures may be used in other situations, such as arrays, linked lists, or the like.
- node 332 contains symbol“MMM” and a pointer to data structure 332A containing customers transacting with symbol “MMM;” in turn, data structure 332A contains a pointer to a transactions data structure 332B indicative of transactions for symbol“MMM” by the customer.
- Node 344 contains symbol “GGG” and a pointer to data structure 344A containing customers transacting with symbol“GGG;” in turn, data structure 344A contains a pointer to a transactions data structure 344B indicative of transactions for symbol “GGG” by the customer.
- FIG. 3D a close up illustration of customers data structure 334A is shown.
- the“TTT” symbol node 334 is associated with data structure 334A by way of a pointer.
- the data structure 334A may also be arranged as a BST with root node 352 containing customer“JPMorgan;” node 354 containing customer“Chase;” and node 356 containing customer“NFSC.”
- FIG. 3C also depicts each customer node containing a respective pointer to a transactions data structure.
- GUI 510 with trading data query results is shown.
- the GUI comprises fields that may be typical of trading data including, but not limited to, status, symbol, price, size, etc.
- at least one processor of the client device may detect a user selection of a given column displayed on the GUI. In response to the selection, the processor may display aggregate data corresponding to the given column. By way of example, a user may click on the symbol (“Sym”) column of GUI 510. As a result, at least one processor may render another GUI 514, as shown in FIG. 5B, that aggregates all the orders related to the symbol column.
- At least one processor may do a linear scan of the linked list (e.g ., linked list 504) using the symbol column as the key in response to the user clicking on the symbol column. That is, a user may click on any column and at least one processor may us the selected column as a key for the linear scan.
Landscapes
- Engineering & Computer Science (AREA)
- Theoretical Computer Science (AREA)
- Databases & Information Systems (AREA)
- Data Mining & Analysis (AREA)
- Physics & Mathematics (AREA)
- General Engineering & Computer Science (AREA)
- General Physics & Mathematics (AREA)
- Software Systems (AREA)
- Computational Linguistics (AREA)
- Information Retrieval, Db Structures And Fs Structures Therefor (AREA)
- User Interface Of Digital Computer (AREA)
Priority Applications (6)
| Application Number | Priority Date | Filing Date | Title |
|---|---|---|---|
| SG11202100056SA SG11202100056SA (en) | 2018-07-06 | 2019-07-02 | Index data structures and graphical user interface |
| EP19830168.1A EP3818451B1 (en) | 2018-07-06 | 2019-07-02 | Index data structures and graphical user interface |
| JP2021500226A JP2021532450A (ja) | 2018-07-06 | 2019-07-02 | 索引データ構造及びグラフィカルユーザインタフェース |
| CA3106389A CA3106389A1 (en) | 2018-07-06 | 2019-07-02 | Index data structures and graphical user interface |
| JP2023183465A JP7781835B2 (ja) | 2018-07-06 | 2023-10-25 | 索引データ構造及びグラフィカルユーザインタフェース |
| JP2025154611A JP2025178356A (ja) | 2018-07-06 | 2025-09-18 | 索引データ構造及びグラフィカルユーザインタフェース |
Applications Claiming Priority (2)
| Application Number | Priority Date | Filing Date | Title |
|---|---|---|---|
| US16/028,641 US11216432B2 (en) | 2018-07-06 | 2018-07-06 | Index data structures and graphical user interface |
| US16/028,641 | 2018-07-06 |
Publications (1)
| Publication Number | Publication Date |
|---|---|
| WO2020010115A1 true WO2020010115A1 (en) | 2020-01-09 |
Family
ID=69059909
Family Applications (1)
| Application Number | Title | Priority Date | Filing Date |
|---|---|---|---|
| PCT/US2019/040352 Ceased WO2020010115A1 (en) | 2018-07-06 | 2019-07-02 | Index data structures and graphical user interface |
Country Status (6)
| Country | Link |
|---|---|
| US (4) | US11216432B2 (https=) |
| EP (1) | EP3818451B1 (https=) |
| JP (3) | JP2021532450A (https=) |
| CA (1) | CA3106389A1 (https=) |
| SG (1) | SG11202100056SA (https=) |
| WO (1) | WO2020010115A1 (https=) |
Families Citing this family (2)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US11216432B2 (en) | 2018-07-06 | 2022-01-04 | Cfph, Llc | Index data structures and graphical user interface |
| US11409605B2 (en) * | 2020-10-20 | 2022-08-09 | Sap Se | Failover system for database unavailability |
Citations (6)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US20040015478A1 (en) * | 2000-11-30 | 2004-01-22 | Pauly Duncan Gunther | Database |
| US20040133564A1 (en) * | 2002-09-03 | 2004-07-08 | William Gross | Methods and systems for search indexing |
| US20100299326A1 (en) * | 2007-10-26 | 2010-11-25 | Scott Germaise | Apparatuses, Methods and Systems For A Forum Ferreting System |
| US20120197934A1 (en) * | 2011-01-31 | 2012-08-02 | Splunk Inc. | Real time searching and reporting |
| US20140337375A1 (en) * | 2013-05-07 | 2014-11-13 | Exeray Inc. | Data search and storage with hash table-based data structures |
| US20160055191A1 (en) | 2014-08-22 | 2016-02-25 | Xcalar, Inc. | Executing constant time relational queries against structured and semi-structured data |
Family Cites Families (49)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US5201046A (en) * | 1990-06-22 | 1993-04-06 | Xidak, Inc. | Relational database management system and method for storing, retrieving and modifying directed graph data structures |
| US6341281B1 (en) | 1998-04-14 | 2002-01-22 | Sybase, Inc. | Database system with methods for optimizing performance of correlated subqueries by reusing invariant results of operator tree |
| US6993502B1 (en) * | 1999-11-11 | 2006-01-31 | Cch Incorporated | Transaction tax collection system and method |
| US6687687B1 (en) * | 2000-07-26 | 2004-02-03 | Zix Scm, Inc. | Dynamic indexing information retrieval or filtering system |
| US7346067B2 (en) | 2001-11-16 | 2008-03-18 | Force 10 Networks, Inc. | High efficiency data buffering in a computer network device |
| JP2004152239A (ja) * | 2002-11-01 | 2004-05-27 | Matsushita Electric Ind Co Ltd | ファイル管理装置、ファイル管理方法及びプログラム |
| US20040151170A1 (en) | 2003-01-31 | 2004-08-05 | Manu Gulati | Management of received data within host device using linked lists |
| US7117222B2 (en) | 2003-03-13 | 2006-10-03 | International Business Machines Corporation | Pre-formatted column-level caching to improve client performance |
| JP2005244722A (ja) * | 2004-02-27 | 2005-09-08 | Canon Inc | 記録再生装置 |
| JP2005293153A (ja) * | 2004-03-31 | 2005-10-20 | Matsushita Electric Ind Co Ltd | 図面検索装置 |
| US7337164B2 (en) | 2004-03-31 | 2008-02-26 | Sap Ag | Fast search with very large result set |
| US8122201B1 (en) * | 2004-09-21 | 2012-02-21 | Emc Corporation | Backup work request processing by accessing a work request of a data record stored in global memory |
| JP2006254229A (ja) * | 2005-03-11 | 2006-09-21 | Fuji Photo Film Co Ltd | 撮像装置、撮像方法及び撮像プログラム |
| US8849752B2 (en) * | 2005-07-21 | 2014-09-30 | Google Inc. | Overloaded communication session |
| US7730238B1 (en) | 2005-10-07 | 2010-06-01 | Agere System Inc. | Buffer management method and system with two thresholds |
| BRPI0722378A2 (pt) | 2006-03-31 | 2012-05-22 | Qualcomm Incorporated | gerencimento de memória para controle de acesso à mìdia de alta velocidade |
| US7895666B1 (en) | 2006-09-01 | 2011-02-22 | Hewlett-Packard Development Company, L.P. | Data structure representation using hash-based directed acyclic graphs and related method |
| KR101380936B1 (ko) | 2006-10-05 | 2014-04-10 | 스플렁크 인코퍼레이티드 | 시계열 검색 엔진 |
| US8214367B2 (en) | 2007-02-27 | 2012-07-03 | The Trustees Of Columbia University In The City Of New York | Systems, methods, means, and media for recording, searching, and outputting display information |
| US20100121839A1 (en) | 2007-03-15 | 2010-05-13 | Scott Meyer | Query optimization |
| US20090077097A1 (en) * | 2007-04-16 | 2009-03-19 | Attune Systems, Inc. | File Aggregation in a Switched File System |
| US7612695B2 (en) * | 2007-06-01 | 2009-11-03 | Research In Motion Limited | Determination of compression state information for use in interactive compression |
| US8521732B2 (en) | 2008-05-23 | 2013-08-27 | Solera Networks, Inc. | Presentation of an extracted artifact based on an indexing technique |
| US20100088310A1 (en) | 2008-10-03 | 2010-04-08 | Raytheon Company | Method And System For Automating Data Queries During Discontinuous Communications |
| US8489622B2 (en) | 2008-12-12 | 2013-07-16 | Sas Institute Inc. | Computer-implemented systems and methods for providing paginated search results from a database |
| US8312030B2 (en) * | 2009-02-18 | 2012-11-13 | Oracle International Corporation | Efficient evaluation of XQuery and XPath full text extension |
| US8135748B2 (en) * | 2009-04-10 | 2012-03-13 | PHD Virtual Technologies | Virtual machine data replication |
| US8326836B1 (en) | 2010-07-13 | 2012-12-04 | Google Inc. | Providing time series information with search results |
| US8515931B1 (en) | 2010-09-21 | 2013-08-20 | A9.Com, Inc. | Techniques for search optimization |
| JP5161281B2 (ja) * | 2010-09-30 | 2013-03-13 | 株式会社日本総合研究所 | 取引情報検索を自動更新するための方法および装置 |
| KR101238381B1 (ko) * | 2011-06-07 | 2013-02-28 | 엔에이치엔(주) | 다중범위 스캔에서의 n 정렬 질의를 최적으로 처리하기 위한 방법 및 장치 |
| US8768049B2 (en) * | 2012-07-13 | 2014-07-01 | Seiko Epson Corporation | Small vein image recognition and authorization using constrained geometrical matching and weighted voting under generic tree model |
| US8862566B2 (en) * | 2012-10-26 | 2014-10-14 | Equifax, Inc. | Systems and methods for intelligent parallel searching |
| US20140372956A1 (en) * | 2013-03-04 | 2014-12-18 | Atigeo Llc | Method and system for searching and analyzing large numbers of electronic documents |
| JP5966974B2 (ja) * | 2013-03-05 | 2016-08-10 | 富士ゼロックス株式会社 | 中継装置、クライアント装置、システム及びプログラム |
| US9418020B2 (en) * | 2013-03-13 | 2016-08-16 | Cloud Physics, Inc. | System and method for efficient cache utility curve construction and cache allocation |
| US9292525B2 (en) | 2013-06-19 | 2016-03-22 | BlackBerry Limited; 2236008 Ontario Inc. | Searching data using pre-prepared search data |
| US10324942B2 (en) | 2013-07-26 | 2019-06-18 | Snap Inc. | Segment data visibility and management in a distributed database of time stamped records |
| JP6372220B2 (ja) * | 2014-07-24 | 2018-08-15 | 富士通株式会社 | 表生成方法、表生成プログラム及び表生成装置 |
| US10019510B2 (en) | 2014-07-29 | 2018-07-10 | Ca, Inc. | Indexing and searching log records using templates index and attributes index |
| US9703830B2 (en) * | 2014-10-09 | 2017-07-11 | International Business Machines Corporation | Translation of a SPARQL query to a SQL query |
| US20160224020A1 (en) * | 2015-01-30 | 2016-08-04 | Siemens Product Lifecycle Management Software Inc. | Systems and methods using an event descriptor framework |
| US10033714B2 (en) * | 2015-06-16 | 2018-07-24 | Business Objects Software, Ltd | Contextual navigation facets panel |
| US9965531B2 (en) | 2015-07-21 | 2018-05-08 | Accenture Global Services Limited | Data storage extract, transform and load operations for entity and time-based record generation |
| US10235176B2 (en) * | 2015-12-17 | 2019-03-19 | The Charles Stark Draper Laboratory, Inc. | Techniques for metadata processing |
| US10262049B2 (en) | 2016-06-23 | 2019-04-16 | International Business Machines Corporation | Shipping of data through ETL stages |
| US10860618B2 (en) * | 2017-09-25 | 2020-12-08 | Splunk Inc. | Low-latency streaming analytics |
| US10572459B2 (en) * | 2018-01-23 | 2020-02-25 | Swoop Inc. | High-accuracy data processing and machine learning techniques for sensitive data |
| US11216432B2 (en) | 2018-07-06 | 2022-01-04 | Cfph, Llc | Index data structures and graphical user interface |
-
2018
- 2018-07-06 US US16/028,641 patent/US11216432B2/en active Active
-
2019
- 2019-07-02 CA CA3106389A patent/CA3106389A1/en active Pending
- 2019-07-02 JP JP2021500226A patent/JP2021532450A/ja active Pending
- 2019-07-02 EP EP19830168.1A patent/EP3818451B1/en active Active
- 2019-07-02 SG SG11202100056SA patent/SG11202100056SA/en unknown
- 2019-07-02 WO PCT/US2019/040352 patent/WO2020010115A1/en not_active Ceased
-
2022
- 2022-01-03 US US17/567,230 patent/US11954086B2/en active Active
-
2023
- 2023-10-25 JP JP2023183465A patent/JP7781835B2/ja active Active
-
2024
- 2024-03-11 US US18/601,480 patent/US12353388B2/en active Active
-
2025
- 2025-06-10 US US19/233,000 patent/US20250307224A1/en active Pending
- 2025-09-18 JP JP2025154611A patent/JP2025178356A/ja active Pending
Patent Citations (6)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US20040015478A1 (en) * | 2000-11-30 | 2004-01-22 | Pauly Duncan Gunther | Database |
| US20040133564A1 (en) * | 2002-09-03 | 2004-07-08 | William Gross | Methods and systems for search indexing |
| US20100299326A1 (en) * | 2007-10-26 | 2010-11-25 | Scott Germaise | Apparatuses, Methods and Systems For A Forum Ferreting System |
| US20120197934A1 (en) * | 2011-01-31 | 2012-08-02 | Splunk Inc. | Real time searching and reporting |
| US20140337375A1 (en) * | 2013-05-07 | 2014-11-13 | Exeray Inc. | Data search and storage with hash table-based data structures |
| US20160055191A1 (en) | 2014-08-22 | 2016-02-25 | Xcalar, Inc. | Executing constant time relational queries against structured and semi-structured data |
Also Published As
| Publication number | Publication date |
|---|---|
| JP2025178356A (ja) | 2025-12-05 |
| EP3818451A1 (en) | 2021-05-12 |
| US20200012726A1 (en) | 2020-01-09 |
| EP3818451B1 (en) | 2023-10-04 |
| SG11202100056SA (en) | 2021-02-25 |
| US12353388B2 (en) | 2025-07-08 |
| US11954086B2 (en) | 2024-04-09 |
| JP2024001260A (ja) | 2024-01-09 |
| CA3106389A1 (en) | 2020-01-09 |
| US11216432B2 (en) | 2022-01-04 |
| JP2021532450A (ja) | 2021-11-25 |
| JP7781835B2 (ja) | 2025-12-08 |
| US20240211456A1 (en) | 2024-06-27 |
| EP3818451A4 (en) | 2022-03-23 |
| US20220121638A1 (en) | 2022-04-21 |
| US20250307224A1 (en) | 2025-10-02 |
Similar Documents
| Publication | Publication Date | Title |
|---|---|---|
| US12222944B2 (en) | Processing database queries using format conversion | |
| US10776336B2 (en) | Dynamic creation and maintenance of multi-column custom indexes for efficient data management in an on-demand services environment | |
| US8204914B2 (en) | Method and system to process multi-dimensional data | |
| US8051034B2 (en) | Parallel processing of assigned table partitions | |
| US20250307224A1 (en) | Index data structures and graphical user interface | |
| US8341144B2 (en) | Selecting and presenting user search results based on user information | |
| US20200301933A1 (en) | Ranking contextual metadata to generate relevant data insights | |
| US12248952B2 (en) | Graph based processing of multidimensional hierarchical data | |
| US20080104089A1 (en) | System and method for distributing queries to a group of databases and expediting data access | |
| US11868326B2 (en) | Hyperparameter tuning in a database environment | |
| CN113722346A (zh) | 通过外部基于云的分析系统实现数据访问 | |
| US20170195449A1 (en) | Smart proxy for datasources | |
| Wang et al. | Distributed and parallel construction method for equi-width histogram in cloud database | |
| US11048761B2 (en) | Semantic contextual element linking | |
| CN118535613A (zh) | 发票数据查询方法、系统、电子设备及存储介质 | |
| CN119248980A (zh) | 数据处理方法和装置、计算设备、存储介质 |
Legal Events
| Date | Code | Title | Description |
|---|---|---|---|
| 121 | Ep: the epo has been informed by wipo that ep was designated in this application |
Ref document number: 19830168 Country of ref document: EP Kind code of ref document: A1 |
|
| ENP | Entry into the national phase |
Ref document number: 2021500226 Country of ref document: JP Kind code of ref document: A |
|
| ENP | Entry into the national phase |
Ref document number: 3106389 Country of ref document: CA |
|
| NENP | Non-entry into the national phase |
Ref country code: DE |
|
| WWG | Wipo information: grant in national office |
Ref document number: 11202100056S Country of ref document: SG |
|
| WWP | Wipo information: published in national office |
Ref document number: 11202100056S Country of ref document: SG |