EP4599334A1 - Framework and method for consistent cross-tier data validation - Google Patents
Framework and method for consistent cross-tier data validationInfo
- Publication number
- EP4599334A1 EP4599334A1 EP23750832.0A EP23750832A EP4599334A1 EP 4599334 A1 EP4599334 A1 EP 4599334A1 EP 23750832 A EP23750832 A EP 23750832A EP 4599334 A1 EP4599334 A1 EP 4599334A1
- Authority
- EP
- European Patent Office
- Prior art keywords
- schema
- database
- data entry
- data
- relational
- 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.)
- Pending
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/25—Integrating or interfacing systems involving database management systems
- G06F16/252—Integrating or interfacing systems involving database management systems between a Database Management System and a front-end application
-
- 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/23—Updating
- G06F16/2365—Ensuring data consistency and integrity
Definitions
- Relational databases succeed largely because they centralize a data model, thus supporting uniform application semantics. This has worked well for over 40 years, but a classic relational schema is now becoming insufficient to address needs of rich application semantics that increasingly are being implemented in the application tier, not in a database. This makes the database more of a passive container that provides data storage and data access and manipulation while application semantics migrate out of the database and into tools and microservices.
- Databases servers provide extremely sophisticated mechanisms (e.g. data types with length limits, check constraints, referential constraints, etc.) to ensure cleanliness and integrity of stored data.
- data integrity framework is present only within the database tier.
- performing validation in the database tier also has drawbacks. Specifically, when validation is performed at the server-side, client applications can still generate malformed input that the database rejects. For example, a user may use the client to fill in a complex and detailed form. Only after the form is completely filled out and finally submitted to the database server is the user informed that a validation error occurred.
- server-side validation may result in wasteful database accesses as well as user aggravation due to entering data into a UI form, submitting the entered data, and then receiving a web page that alerts all fields in the form that failed database side validation. For this reason, client applications often do implement their own, independent validation mechanisms to sanity check input data so that malformed inputs can be rejected right away.
- the problem with this approach is that nothing prevents applications-side rules and server-side rules from diverging or divergence across different application modules and micro services.
- FIG.1 is a block diagram that depicts an example database system that uses a relational schema of a database to generate a data entry schema that is a client-agnostic schema for validating entered data at a database client before storing the entered data into the database;
- FIG.2 is a flow diagram that depicts an example computer process that uses a relational schema of a database to generate a data entry schema that is a client-agnostic schema for validating entered data at a database client before storing the entered data into the database;
- FIG.3 is a block diagram that illustrates a computer system upon which an embodiment of the invention may be implemented;
- FIG.4 is a block diagram that illustrates a computer system upon which an embodiment of the invention may be implemented;
- FIG.4 is a block diagram that illustrates a computer system upon which an embodiment of the invention may be implemented;
- FIG.4 is a block diagram that illustrates a computer system upon which an embodiment of the invention may be implemented;
- FIG.4 is a block diagram that illustrate
- JSON JavaScript object notation
- Relational schema 140 and/or any of schematic details such as relational table 150, column 160, and constraints 161-163 may be individually or collectively defined by one or more data definition language (DDL) statements as discussed later herein.
- DDL data definition language
- database server 110 may be embedded within database client 130, together in an operating system (OS) process, or may reside in separate processes that use inter-process communication (IPC) to cooperate.
- Cooperation of database client 130 and database server 110 may use a client-server database protocol such as open database connectivity (ODBC) or Java ODBC (JDBC). Docket No.: 50277-6167 (ORC23136555-WO-PCT) 1.5 INTERACTIVE DATA ENTRY [0026]
- Entered data 190 may be any information that enters database system 100 through database client 130 and that is data not automatically generated within database client 130 itself.
- entered data 190 may be interactively (i.e. manually) entered into database client 130 or may be received by database client 130 from an external automated source.
- an external system may use database client 130 for storing data into relational database 120.
- the entered data may be more or less unreliable (i.e. invalid).
- the entered data might not conform to constraints 161-163 as required for storage into relational table 150.
- Entered data 190 can be stored into relational database 120 only if entered data 190 conforms to relational schema 140.
- database system 100 One goal of database system 100 is for database client 130 to ensure that entered data 190 is valid before sending entered data 190 to database server 110 for storage. Due to separation of concerns as a design principle, database client 130 is not expected to obtain, understand, and directly enforce relational schema 140.
- relational schema 140 may be unavailable to database client 130, or relational schema 140 may be expressed in a domain-specific language (DSL) such as DDL that database client 130 might not understand.
- DDL domain-specific language
- database client 130 obtains data entry schema 170 that represents some limited aspects of relational schema 170 but is not itself a relational schema and is expressed in an open and standardized format that can be processed regardless of the subject matter of database client 130 and regardless of the implementation of database client 130. In other words, data entry schema 170 is application agnostic and platform agnostic.
- Data entry schema 170 is (e.g. textually) encoded in a client-agnostic format.
- Data entry schema 170 is automatically generated from relational schema 140.
- database server 110 may generate data entry schema 170 and send data entry schema 170 to database client 130.
- Data entry schema 170 is an open (i.e. implementation agnostic) artifact that any database client may obtain, interpret, and apply to entered data for validation before sending the entered data to database server 110.
- field 180 may itself be a JSON object that is nested, along with other JSON objects for other fields that represent other columns in relational table 150 in addition to column 160, in another JSON object that corresponds to relational table 150.
- schemas 140 and 170 have a same schematic normalization.
- relational schema 140 may have multiple relational tables arranged as a multidimensional master-detail pattern such as a star or snowflake, but data entry schema 170 may instead contain a flattened set of fields without imposing any nesting or grouping.
- Some constraints in relational schema 140 may translate more or less directly into corresponding constraints in data entry schema 170.
- data type 161 may specify that column 160 only stores numbers, and a corresponding numeric constraint may be generated in data entry schema 170 for field 180.
- Semantics of field constraints 181-183 are as follows. If data type 161 has values that can be naturally ordered, such as numerically or lexically, then value range 181 may specify upper and/or lower bounds (i.e. value limits) for field value 195, and each limit may expressly be an inclusive or exclusive limit.
- Value range 181 may instead specify a set of valid distinct individual values, and all other values of data type 161 are forbidden for field value 195.
- Format Docket No.: 50277-6167 (ORC23136555-WO-PCT) 183 may specify a pattern, mask, or regular expression that field value 195 should conform to, such as the format of a phone number or email address.
- Data entry schema 170 may contain constraints that each specify any of: x a regular expression, x a limit on a count of array elements, x a limit on a count of array elements that match a criterion, x a limit on a count of fields of a JSON object in data entry schema 170, x an indication that elements of an array should be distinct, and x an indication that a limit value is inclusive or exclusive.
- Data entry schema 170 may contain a version identifier (e.g. from a sequence of monotonically increasing numbers or timestamps).
- the version identifier of data entry schema 170 is based on at least one of: a version identifier of relational schema 140 and a unique identifier automatically generated when data entry schema 170 is generated.
- Data entry schema 170 may be automatically regenerated when relational schema 140 is modified so that data entry schema 170 is based on a latest version of relational schema 140. Each regeneration of data entry schema 170 may contain a new distinct version identifier.
- database server 110 may be optionally configured to reject entered data 190 if entered data 190 does not contain the version identifier of the latest regeneration of data entry schema 170.
- a field may be an array that contains multiple values.
- field 180 represents an array whose multiple values are provided as elements in field value 195
- uniqueness 182 requires that field value 195 not contain duplicates, which is not the same as requiring that column 160 not contain duplicates.
- column 160 may contain data for many users, and uniqueness may be required only within a user’s data, but not across all users’ data.
- field value 195 may be an array of multiple values for one user and should not contain duplicates, but column 160 may contain duplicates so long as each duplicate of a same value is stored for a different respective user.
- the following contains example field constraints, for example fields. Each example field corresponds to a respective example column in the example DDL statement presented earlier herein.
- the example fields and example field constraints are encoded as JSON in the following example data entry schema. Docket No.: 50277-6167 (ORC23136555-WO-PCT) ⁇ "title”: “Product”, “type”: ”Object”, “properties”: ⁇ ”Id”: ⁇ "type”: ”number” ⁇ , ”Name”: ⁇ "type”: “string”, “MaxLength”:”50” ⁇ , ”Category”: ⁇ “type”: ”string”, “enum”: [”Home”, “Apparel”],“MaxLength”:”10”] ⁇ , ”Price”: ⁇ ”type”:”number”, “ExclusiveMinimum”:”0” ⁇ ⁇ “required”: [“Id”, “Name”, “Category”, “Price”] ⁇ [0043]
- field “Category” is required and nested as one of the “properties” of a “Pro
- a valid category field value must be a string of at most ten characters and must be exactly one of enumerated literals “Home” or “Apparel”.
- field names and types are inferred from table column definitions.
- a string length limit (maxLength) of a field is inferred from varchar or char length of a table column.
- Field constraints such as enum and minimum/maximum checks are inferred from CHECK constraints of table columns.
- a list of required fields is inferred from NOT NULL constraints of table columns.
- CONSTRAINT ⁇ name> means that the constraint is itself a first class database object that can be individually identified, referenced, and processed such as in ways presented herein. Each of cond1-condN may reference a same or different respective one column.
- JSON PRECHECK expressly means that the constraint should be used for generating data entry schema 170, but the constraint is not necessarily enforced by database server 110. In other words, contents in column 160 need not conform to this novel constraint.
- a PRECHECK specifies the applying of data entry schema 170 to entered data 190 by database client 130.
- database server 110 may also enforce the PRECHECK when receiving entered data 190 from database client 130.
- Database server 110 may provide a built-in function or UDF, and when database server 110 receives entered data 190, optionally invoking the function causes applying: a) data entry schema 170 to entered data 190 or b) a particular field constraint such as value range 181 to field value 195.
- applying schema 140 or 170 respectively to stored or entered data may be referred to as validating the data with the schema.
- the first operational phase generates data entry schema 170, after which the second operational phase may immediately or eventually follow, which entails database client 130 using data entry schema 170 to validate entered data 190 before sending entered data 190 to database server 110.
- database client 130 may have a more or less hard-coded mapping between particular fields in data entry schema 170 and particular user interface widgets displayed in a screen.
- field 180 may represent a time type, and database client 130 may map field 180 to a text entry widget into which a user may enter a time as a text string.
- fields in data entry schema 170 may have identifiers, and data entry widgets may have their own identifiers.
- JSON by itself, can specify complex data structures but lacks an expression syntax to traverse those data structures. Basic data processing such as filtration and validation are absent in JSON as a notational standard.
- Data entry schema 170 although encoded entirely in JSON Docket No.: 50277-6167 (ORC23136555-WO-PCT) that lacks expressions, can contain expressions such as regular expressions and/or compound expressions composed of expression operators having predefined semantics.
- data entry schema 170 is JSON that conforms to the Internet engineering task force’s (IETF) JSON Schema, even though JSON was originally created for use without a schema and techniques herein do not need to apply a schema to data entry schema 170.
- the above example data entry schema is encoded as JSON that conforms to JSON Schema.
- Incorporated herein by reference in its entirety is “JSON Schema Validation: A Vocabulary for Structural Validation of JSON” published by the IETF on June 10, 2022. 1.13 STANDARDIZED CONSTRAINT SEMANTICS [0052] JSON Schema may provide standardized semantics for field constraints 181-183.
- uniqueness 182 may be encoded using JSON Schema’s “uniqueItems” keyword, and data entry schema 170 may have constraints that encode with any of JSON Schema’s rich vocabulary of so-called validation keywords, which have standardized semantics that data entry schema 170 and database client 130 can leverage. In that case, any application that understands JSON Schema can fully and automatically use data entry schema 170 to validate entered data 190.
- the following is an example mapping of DDL CHECK conditions to JSON Schema validations (i.e. field constraints). This example mapping may be used to generate data entry schema 170 from relational schema 140. In this example mapping, ⁇ value> is always a literal and never an expression nor a reference to a different column.
- Data entry schema 170 is a semi-structured document. However except as shown in the above example mapping, data entry schema 170 does not contain extensible markup language (XML) and relational database 120 does not store XML.
- XML extensible markup language
- data entry schema 170 may have any predefined validation semantics for which database server 110 can generate representations into data entry schema 170, so long as database client 130 can enforce those semantics by interpreting data entry schema 170.
- JSON Schema provides predefined and composable validation semantics that may be declaratively arranged and configured in data entry schema 170.
- Client and server in database system 100 may adopt JSON Schema as discussed herein, or may instead agree on other predefined semantics, which may be more or less arduous for multiple parties to agree on. In either way, data entry schema 170 can be generated and enforced as discussed herein.
- the following are example functions that may be invoked in PRECHECK conditions.
- PRECHECKS are executed by database client 130 and, afterwards, optionally executed by database server 110.
- both executions may use different implementations of the same PRECHECK.
- the following example functions may be implemented as JavaScript for use by database client 130 and instead implemented as built-in functions or as UDFs for use by database server 110.
- the built-in function or UDF is a minimal wrapper that delegates to the JavaScript implementation, so long as database server 110 can execute JavaScript.
- format 183 is generated as a JSON property of field 180.
- the generated property may be named “format” and may have a value that identifies a predefined format.
- a predefined format is a complex format referenced solely by name and without arguments.
- each predefined format is or is not implemented by the corresponding example function as shown above.
- FIG.2 is a flow diagram that depicts an example computer process that database system 100 may perform to use relational schema 140 of database 120 to generate data entry schema 170 that is a client-agnostic schema for validating entered data 190 at database client 130 before storing entered data 190 into database 120, in an embodiment.
- FIG.2 is discussed with reference to FIG.1.
- the following three example embodiments each use a different respective component of FIG.1 to perform the process of FIG. 2.
- the three embodiments each uses a different respective way of obtaining relational schema 140 for generating data entry schema 170.
- database server 110 performs steps 201-203 and 205-206 by natively and directly accessing relational schema 140.
- a respective component other than database server 110 generates data entry schema 170, which entails steps 201-202.
- steps 201-202 are instead performed by database client 130 that accesses relational schema 140 by connecting to database server 110 that performs remaining steps 203-206.
- a software tool analyzes DDL statements (e.g. in a database administration script).
- Step 201 analyzes relational schema 140 to discover tables, columns, and database constraints such as column constraints. Identifiers and configurations of all of those database objects are discovered by inspecting relational schema 140 that may be encoded as DDL statements or stored in a database dictionary. Database dictionaries are discussed later herein. Step 201 may iterate over the discovered tables, columns, and database constraints to disregard (i.e. not process) database objects that expressly should not or implicitly cannot be translated into portions of data entry schema 170.
- Step 202 generates data entry schema 170 from relational schema 140. Step 202 may iterate over the discovered tables, columns, and database constraints to generate corresponding portions of data entry schema 170 as discussed earlier herein.
- Step 203 sends data entry schema 170 to database client 130.
- database client 130 may request that database server 110 perform step 203.
- database client 130 may send a representational state (REST) request or other hypertext transfer protocol (HTTP) request to database server 110 to request a copy of data entry schema 170, so long as database server 110 contains a web server.
- REST representational state
- HTTP hypertext transfer protocol
- database client 130 performs step 204.
- step 204 database client 130 verifies that entered data 190 conforms to data entry schema 170 and then sends verified entered data 190 to database server 110.
- Step 204 may be Docket No.: 50277-6167 (ORC23136555-WO-PCT) caused when entered data 190 is interactively entered as input into database client 130, which may involve a user interface screen, a web page in a web browser, or a command line.
- database server 110 receives entered data 190 from database client 130.
- database server 110 receives a DML statement that contains entered data 190.
- the DML statement may specify writing field value 195 into column 160.
- Database client 130 may contain a database driver that generates the DML statement that is a plain text statement that can be generated and/or sent by database client 130 with or without a database driver. Of course before sending entered data 190, database client 130 should successfully validate entered data 190 using data entry schema 170.
- Step 206 stores entered data 190 into relational database 120. For example while executing the DML statement, database server 110 may store field value 195 into column 160. Before storing entered data 190, step 206 verifies that entered data 190 conforms to relational schema 140. If that validation fails, storing entered data 190 by step 206 does not occur. For example, the DML statement is rejected without executing it.
- Activity A1 is an optional (e.g. redundant) validation as discussed earlier herein and can be skipped (i.e. not performed).
- Activity A1 occurs between above steps 205-206 and decides whether or not to terminate the process of FIG. 2 without performing last step 206.
- database server 110 detects whether or not entered data 190 conforms to data entry schema 170. If activity A1 detects that entered data 190 is invalid, then last step 206 is skipped and, for example, the DML statement is rejected without executing it.
- validation of entered data 190 with data entry schema 170 by activity A1 may fail if entered data 190 instead came from a database client that lacks data entry schema 170, and that validation failure by activity A1 may occur even if entered data 190 would seem valid if instead compared to relational schema 140.
- Entered data 190 is invalid with respect to data entry schema 170 if entered data 190: a) contains an invalid field value, b) is missing a value of a required field, or c) contains a value for an invalid field such as an unrecognized field, a forbidden field, or too many fields in total.
- Activities A2-A3 entail behaviors that occur somewhat independent of the process of FIG.2.
- Activity A2 demonstrates future proofing of database server 110 that the state of the art may unfortunately need to restart after rebuilding its codebase (e.g. to include a new data entry format for use in data entry schema 170).
- an original equipment manufacturer OEM may include some data entry formats and accompanying implementation logic in database server 110 such as a timestamp format for a timestamp JSON field that can specify a date, a time, and a time zone.
- the implementation logic correctly accommodates leap year, which is infeasible to directly express in a format mask or regular expression. If a user desires a new data entry format that is not a stock data entry format provided by the OEM, then the user should provide a format mask, a regular expression, or accompanying implementation logic for the new data entry format.
- the new accompanying implementation logic should be added to database server 110’s codebase. In the state of the art, modifying a database server’s codebase requires restarting the database server. [0072] Without requiring restarting database server 110, activity A2 adds a new data entry format to relational database 120.
- Example activity A3 effectively operates in reverse by generating a definition of a new relational table from a data entry schema.
- the data entry schema may be preexisting and widely used, and a corresponding relational schema for a new database may be desired.
- Example activity A3 may: a) analyze a data entry schema to discover its elements (e.g. fields and field constraints) and their configuration and b) iterate over those elements to generate corresponding portions of DDL statement(s) that define the corresponding relational schema elements .
- Example A3 may generate a new relational schema or insert/replace elements in an existing relational schema.
- Example activity A3 may be: a) performed by database server 110 that may or may not also execute the DDL statements to actually create table(s) and columns, b) performed by a software tool that generates and sends the DDL statements to database server 110 for execution, or c) performed by an offline software tool that generates the DDL statements even if database server 110 does not exist.
- Embodiments of the present invention are used in the context of database management systems (DBMSs). Therefore, a description of an example DBMS is provided.
- a server such as a database server
- a server is a combination of integrated software components and an allocation of computational resources, such as memory, a node, and processes on the node for executing the integrated software components, where the combination of the software and computational resources are dedicated to providing a particular type of function on behalf of clients of the server.
- a database server governs and facilitates access to a particular database, processing requests by clients to access the database.
- Users interact with a database server of a DBMS by submitting to the database server commands that cause the database server to perform operations on data stored in a database.
- a user may be one or more applications running on a client computer that interact with a database server. Multiple users may also be referred to herein collectively as a user.
- a database comprises data and a database dictionary that is stored on a persistent memory mechanism, such as a set of hard disks.
- a database is defined by its own separate database dictionary.
- a database dictionary comprises metadata that defines database objects contained in a database. In effect, a database dictionary defines much of a database.
- Database objects include tables, table columns, and tablespaces.
- a tablespace is a set of one or more files that are used to store the data for various types of database objects, such as a table. If data for a database object is stored in a tablespace, a database dictionary maps a database object to one or more tablespaces that hold the data for the database object.
- a database dictionary is referred to by a DBMS to determine how to execute database commands submitted to a DBMS.
- the nodes may be the nodes of a grid, which is composed of nodes in the form of server blades interconnected with other server blades on a rack.
- Each node in a multi-node database system hosts a database server.
- a server such as a database server, is a combination of integrated software components and an allocation of computational resources, such as memory, a node, and processes on the node for executing the integrated software components on a processor, the combination of the software and computational resources being dedicated to performing a particular function on behalf of one or more clients.
- Resources from multiple nodes in a multi-node database system can be allocated to running a particular database server's software.
- a query is an expression, command, or set of commands that, when executed, causes a server to perform one or more operations on a set of data.
- a query may specify source data object(s), such as table(s), column(s), view(s), or snapshot(s), from which result set(s) are to be determined. For example, the source data object(s) may appear in a FROM clause of a Structured Query Language (“SQL”) query.
- SQL Structured Query Language
- SQL is a well-known example language for querying database objects.
- query is used to refer to any form of representing a query, including a query in the form of a database statement and any data structure used for internal query representation.
- table refers to any source object that is referenced or defined by Docket No.: 50277-6167 (ORC23136555-WO-PCT) a query and that represents a set of rows, such as a database table, view, or an inline query block, such as an inline view or subquery.
- the query may perform operations on data from the source data object(s) on a row by-row basis as the object(s) are loaded or on the entire source data object(s) after the object(s) have been loaded.
- a result set generated by some operation(s) may be made available to other operation(s), and, in this manner, the result set may be filtered out or narrowed based on some criteria, and/or joined or combined with other result set(s) and/or other source data object(s).
- a subquery is a portion or component of a query that is distinct from other portion(s) or component(s) of the query and that may be evaluated separately (i.e., as a separate query) from the other portion(s) or component(s) of the query.
- the techniques described herein are implemented by one or more special-purpose computing devices.
- the special-purpose computing devices may be hard-wired to perform the techniques, or may include digital electronic devices such as one or more application-specific integrated circuits (ASICs) or field programmable gate arrays (FPGAs) that are persistently programmed to perform the techniques, or may include one or more general purpose hardware processors programmed to perform the techniques pursuant to program instructions in firmware, memory, other storage, or a combination.
- ASICs application-specific integrated circuits
- FPGAs field programmable gate arrays
- Such special-purpose computing devices may also combine custom hard-wired logic, ASICs, or FPGAs with custom programming to accomplish the techniques.
- FIG. 3 is a block diagram that illustrates a computer system 300 upon which an embodiment of the invention may be implemented.
- Computer system 300 includes a bus 302 or other communication mechanism for communicating information, and a hardware processor 304 coupled with bus 302 for processing information.
- Hardware processor 304 may be, for example, a general purpose microprocessor.
- Computer system 300 also includes a main memory 306, such as a random access memory (RAM) or other dynamic storage device, coupled to bus 302 for storing information and instructions to be executed by processor 304.
- Main memory 306 also may be used for storing temporary variables or other intermediate information during execution of instructions to be executed by processor 304.
- Such instructions when stored in non-transitory storage media accessible to processor 304, render computer system 300 into a special-purpose machine that is customized to perform the operations specified in the instructions.
- Computer system 300 further includes a read only memory (ROM) 308 or other static storage device coupled to bus 302 for storing static information and instructions for processor 304.
- ROM read only memory
- Computer system 300 also includes a communication interface 318 coupled to bus 302.
- Communication interface 318 provides a two-way data communication coupling to a Docket No.: 50277-6167 (ORC23136555-WO-PCT) network link 320 that is connected to a local network 322.
- communication interface 318 may be an integrated services digital network (ISDN) card, cable modem, satellite modem, or a modem to provide a data communication connection to a corresponding type of telephone line.
- ISDN integrated services digital network
- communication interface 318 may be a local area network (LAN) card to provide a data communication connection to a compatible LAN.
- LAN local area network
- Network link 320 typically provides data communication through one or more networks to other data devices.
- network link 320 may provide a connection through local network 322 to a host computer 324 or to data equipment operated by an Internet Service Provider (ISP) 326.
- ISP 326 in turn provides data communication services through the world wide packet data communication network now commonly referred to as the “Internet” 328.
- Internet 328 The signals through the various networks and the signals on network link 320 and through communication interface 318, which carry the digital data to and from computer system 300, are example forms of transmission media.
- Computer system 300 can send messages and receive data, including program code, through the network(s), network link 320 and communication interface 318.
- a server 330 might transmit a requested code for an application program through Internet 328, ISP 326, local network 322 and communication interface 318.
- the received code may be executed by processor 304 as it is received, and/or stored in storage device 310, or other non-volatile storage for later execution.
- SOFTWARE OVERVIEW [0101]
- FIG.4 is a block diagram of a basic software system 400 that may be employed for controlling the operation of computing system 300.
- Software system 400 and its components, including their connections, relationships, and functions, is meant to be exemplary only, and not meant to limit implementations of the example embodiment(s).
- Software system 400 is provided for directing the operation of computing system 300.
- Software system 400 which may be stored in system memory (RAM) 306 and on fixed storage (e.g., hard disk or flash memory) 310, includes a kernel or operating system (OS) 410.
- OS operating system
- the OS 410 manages low-level aspects of computer operation, including managing execution of processes, memory allocation, file input and output (I/O), and device I/O.
- OS 410 can execute directly on the bare hardware 420 (e.g., processor(s) 304) of computer system 300.
- a hypervisor or virtual machine monitor (VMM) 430 may be interposed between the bare hardware 420 and the OS 410. In this configuration, VMM 430 acts as a software “cushion” or virtualization layer between the OS 410 and the bare hardware 420 of the computer system 300.
- VMM 430 instantiates and runs one or more virtual machine instances (“guest machines”). Each guest machine comprises a “guest” operating system, such as OS 410, and one or more applications, such as application(s) 402, designed to execute on the guest operating system.
- the VMM 430 presents the guest operating systems with a virtual operating platform and manages the execution of the guest operating systems.
- the VMM 430 may allow a guest operating system to run as if it is running on the bare hardware 420 of computer system 400 directly. In these instances, the same version of the guest operating system configured to execute on the bare hardware 420 directly may also execute on VMM 430 without modification or reconfiguration.
- VMM Docket No.: 50277-6167 (ORC23136555-WO-PCT) 430 may provide full hardware and CPU virtualization to a guest operating system in some instances.
- a guest operating system may be specially designed or configured to execute on VMM 430 for efficiency.
- the guest operating system is “aware” that it executes on a virtual machine monitor.
- VMM 430 may provide para- virtualization to a guest operating system in some instances.
- a computer system process comprises an allotment of hardware processor time, and an allotment of memory (physical and/or virtual), the allotment of memory being for storing instructions executed by the hardware processor, for storing data generated by the hardware processor executing the instructions, and/or for storing the hardware processor state (e.g. content of registers) between allotments of the hardware processor time when the computer system process is not running.
- Computer system processes run under the control of an operating system, and may run under the control of other programs being executed on the computer system.
- cloud computing is generally used herein to describe a computing model which enables on-demand access to a shared pool of computing resources, such as computer networks, servers, software applications, and services, and which allows for rapid provisioning and release of resources with minimal management effort or service provider interaction.
- a cloud computing environment (sometimes referred to as a cloud environment, or a cloud) can be implemented in a variety of different ways to best suit different requirements. For example, in a public cloud environment, the underlying computing infrastructure is owned by an organization that makes its cloud services available to other organizations or to the general public. In contrast, a private cloud environment is generally intended solely for use by, or within, a single organization.
- a community cloud is intended to be shared by several organizations within a community; while a hybrid cloud comprise two or more types of cloud (e.g., private, community, or public) that are bound together by data and application portability.
- a cloud computing model enables some of those responsibilities which previously may have been provided by an organization's own information technology department, to instead be delivered as service layers within a cloud environment, for use by consumers (either within or external to the organization, according to the cloud's public/private nature).
- each cloud service layer can vary, but common examples include: Software as a Service (SaaS), in which consumers use software applications that are running upon a cloud infrastructure, while a SaaS provider manages or controls the underlying cloud infrastructure and applications.
- SaaS Software as a Service
- PaaS Platform as a Service
- consumers can use software programming languages and development tools supported by a PaaS provider to develop, deploy, and otherwise control their own applications, while the PaaS provider manages or controls other aspects of the cloud environment (i.e., everything below the run-time execution environment).
- IaaS Infrastructure as a Service
- IaaS provider manages or controls the underlying physical cloud infrastructure (i.e., everything below the operating system layer).
- Database as a Service in which consumers use a database server or Database Management System that is running upon a cloud infrastructure, while a DbaaS provider manages or controls the underlying cloud infrastructure and applications.
- example embodiment(s) may be implemented in any type of system architecture or processing environment that one skilled in the art, in light of this disclosure, would understand as capable of supporting the features and functions of the example embodiment(s) presented herein.
- embodiments of the invention have been described with reference to numerous specific details that may vary from implementation to implementation.
- the specification and drawings are, accordingly, to be regarded in an illustrative rather than a restrictive sense.
- the sole and exclusive indicator of the scope of the invention, and what is intended by the applicants to be the scope of the invention, is the literal and equivalent scope of the set of claims that issue from this application, in the specific form in which such claims issue, including any subsequent correction.
Landscapes
- Engineering & Computer Science (AREA)
- Databases & Information Systems (AREA)
- Theoretical Computer Science (AREA)
- Data Mining & Analysis (AREA)
- Physics & Mathematics (AREA)
- General Engineering & Computer Science (AREA)
- General Physics & Mathematics (AREA)
- Computer Security & Cryptography (AREA)
- Information Retrieval, Db Structures And Fs Structures Therefor (AREA)
Abstract
Description
Claims
Applications Claiming Priority (3)
| Application Number | Priority Date | Filing Date | Title |
|---|---|---|---|
| US202263413835P | 2022-10-06 | 2022-10-06 | |
| US18/115,629 US12147398B2 (en) | 2022-10-06 | 2023-02-28 | Framework and method for consistent cross-tier data validation |
| PCT/US2023/027201 WO2024076405A1 (en) | 2022-10-06 | 2023-07-10 | Framework and method for consistent cross-tier data validation |
Publications (1)
| Publication Number | Publication Date |
|---|---|
| EP4599334A1 true EP4599334A1 (en) | 2025-08-13 |
Family
ID=87554796
Family Applications (1)
| Application Number | Title | Priority Date | Filing Date |
|---|---|---|---|
| EP23750832.0A Pending EP4599334A1 (en) | 2022-10-06 | 2023-07-10 | Framework and method for consistent cross-tier data validation |
Country Status (3)
| Country | Link |
|---|---|
| EP (1) | EP4599334A1 (en) |
| CN (1) | CN120035819A (en) |
| WO (1) | WO2024076405A1 (en) |
Families Citing this family (1)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US11888938B2 (en) * | 2021-07-29 | 2024-01-30 | Elasticflash, Inc. | Systems and methods for optimizing distributed computing systems including server architectures and client drivers |
Family Cites Families (2)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US20080201234A1 (en) * | 2007-02-16 | 2008-08-21 | Microsoft Corporation | Live entities internet store service |
| US9875121B2 (en) * | 2014-09-17 | 2018-01-23 | International Business Machines Corporation | API server |
-
2023
- 2023-07-10 EP EP23750832.0A patent/EP4599334A1/en active Pending
- 2023-07-10 CN CN202380071033.2A patent/CN120035819A/en active Pending
- 2023-07-10 WO PCT/US2023/027201 patent/WO2024076405A1/en not_active Ceased
Also Published As
| Publication number | Publication date |
|---|---|
| CN120035819A (en) | 2025-05-23 |
| WO2024076405A1 (en) | 2024-04-11 |
Similar Documents
| Publication | Publication Date | Title |
|---|---|---|
| US11385889B2 (en) | Inferring intra package and module dependencies | |
| US11308161B2 (en) | Querying a data source on a network | |
| US12147398B2 (en) | Framework and method for consistent cross-tier data validation | |
| CN115934673B (en) | Systems and methods for facilitating metadata identification and import | |
| US20240403007A1 (en) | Microservice Creation Method and Related Device | |
| HK1246425A1 (en) | Querying a data source on a network | |
| CN115905164B (en) | Identification and import of extended metadata for database artifacts | |
| EP4599334A1 (en) | Framework and method for consistent cross-tier data validation | |
| US20240126728A1 (en) | Natively supporting json duality view in a database management system | |
| US20250147936A1 (en) | Automated migration from a document database to a relational database | |
| US12298946B2 (en) | Natively supporting JSON duality view in a database management system | |
| US12287777B2 (en) | Natively supporting JSON duality view in a database management system | |
| US20250378060A1 (en) | Generating keys for semi-structured data storage in relational databases | |
| WO2025096039A1 (en) | Automated migration from a document database to a relational database | |
| CN121771308A (en) | Database system supporting kernel-level multi-protocol and data communication method thereof | |
| Hasan et al. | Writing Optimized Data Access Code | |
| HK40016211B (en) | Querying a data source on a network | |
| HK40016211A (en) | Querying a data source on a network | |
| WO2004077217A2 (en) | System and method of object query analysis, optimization and execution irrespective of server functionality | |
| Moore | Oracle Database Heterogeneous Connectivity Administrator’s Guide, 10g Release 1 (10.1) Part No. B10764-01 Copyright© 2001, 2003 Oracle Corporation. All rights reserved. Primary Author: Cathy Baird Contributors: Hermann Baer, Jacco Draaijer, Vira Goorah, Govind Lakkoju, Kishan Peyetti | |
| Day | Oracle Database Heterogeneous Connectivity Administrator's Guide, 10g Release 2 (10.2) B14232-01 | |
| Muth et al. | Oracle HTML DB User’s Guide, Release 1.5 Part No. B10992-01 Copyright© 2003 Oracle Corporation. All rights reserved. Primary Author: Terri Winters Contributor: Christina Cho, Michael Hichwa, Joel Kallman, Sergio Leunissen, Raj Mattamal, Tyler |
Legal Events
| Date | Code | Title | Description |
|---|---|---|---|
| STAA | Information on the status of an ep patent application or granted ep patent |
Free format text: STATUS: UNKNOWN |
|
| STAA | Information on the status of an ep patent application or granted ep patent |
Free format text: STATUS: THE INTERNATIONAL PUBLICATION HAS BEEN MADE |
|
| PUAI | Public reference made under article 153(3) epc to a published international application that has entered the european phase |
Free format text: ORIGINAL CODE: 0009012 |
|
| STAA | Information on the status of an ep patent application or granted ep patent |
Free format text: STATUS: REQUEST FOR EXAMINATION WAS MADE |
|
| 17P | Request for examination filed |
Effective date: 20250403 |
|
| AK | Designated contracting states |
Kind code of ref document: A1 Designated state(s): AL AT BE BG CH CY CZ DE DK EE ES FI FR GB GR HR HU IE IS IT LI LT LU LV MC ME MK MT NL NO PL PT RO RS SE SI SK SM TR |
|
| DAV | Request for validation of the european patent (deleted) | ||
| DAX | Request for extension of the european patent (deleted) | ||
| STAA | Information on the status of an ep patent application or granted ep patent |
Free format text: STATUS: EXAMINATION IS IN PROGRESS |
|
| 17Q | First examination report despatched |
Effective date: 20260212 |