WO2022179121A1 - Procédé et appareil de génération de script automatique, dispositif électronique et support de stockage - Google Patents

Procédé et appareil de génération de script automatique, dispositif électronique et support de stockage Download PDF

Info

Publication number
WO2022179121A1
WO2022179121A1 PCT/CN2021/123890 CN2021123890W WO2022179121A1 WO 2022179121 A1 WO2022179121 A1 WO 2022179121A1 CN 2021123890 W CN2021123890 W CN 2021123890W WO 2022179121 A1 WO2022179121 A1 WO 2022179121A1
Authority
WO
WIPO (PCT)
Prior art keywords
file
data
processed
content
preset
Prior art date
Application number
PCT/CN2021/123890
Other languages
English (en)
Chinese (zh)
Inventor
颜赛云
Original Assignee
深圳壹账通智能科技有限公司
Priority date (The priority date 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 date listed.)
Filing date
Publication date
Application filed by 深圳壹账通智能科技有限公司 filed Critical 深圳壹账通智能科技有限公司
Publication of WO2022179121A1 publication Critical patent/WO2022179121A1/fr

Links

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/10File systems; File servers
    • G06F16/16File or folder operations, e.g. details of user interfaces specifically adapted to file systems
    • G06F16/164File meta data generation
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/10File systems; File servers
    • G06F16/18File system types
    • G06F16/182Distributed file systems

Definitions

  • the present application relates to the technical field of data processing, and in particular, to a method, apparatus, electronic device, and computer-readable storage medium for automatic script generation.
  • An automatic script generation method provided by this application includes:
  • the data content is matched and verified according to the field type, and the data content that has passed the matching verification is stored in a preset data text;
  • the present application also provides a device for automatically generating scripts, the device comprising:
  • a file type identification module configured to obtain a file to be processed, perform file type identification on the to-be-processed file, and obtain the file type of the to-be-processed file;
  • a file content extraction module configured to extract the file content of the to-be-processed file according to the file type of the to-be-processed file to obtain a file content set
  • a field type reading module used to read the field type of the file content set to obtain the field type
  • a data length verification module for performing data length verification on the data content in the file content set
  • a matching verification module configured to perform matching verification on the data content according to the field type when the data length verification is passed, and store the data content that has passed the matching verification in a preset data text;
  • the script information processing module is used for loading the data text into a preset sql template, obtaining an initial sql script, extracting the warehousing identifier in the initial sql script, and performing an analysis on the initial sql script according to the warehousing identifier Script information processing is performed to obtain a standard sql script.
  • the present application also provides an electronic device, the electronic device comprising:
  • the processor executes the instructions stored in the memory to realize the automatic script generation method described below:
  • the data content is matched and verified according to the field type, and the data content that has passed the matching verification is stored in a preset data text;
  • the present application also provides a computer-readable storage medium, where at least one instruction is stored in the computer-readable storage medium, and the at least one instruction is executed by a processor in an electronic device to implement the following automatic script generation method:
  • the data content is matched and verified according to the field type, and the data content that has passed the matching verification is stored in a preset data text;
  • FIG. 1 is a schematic flowchart of a method for automatically generating a script according to an embodiment of the present application
  • FIG. 2 is a functional block diagram of a script automatic generation device provided by an embodiment of the present application.
  • FIG. 3 is a schematic structural diagram of an electronic device implementing the method for automatically generating a script according to an embodiment of the present application.
  • the embodiment of the present application provides an automatic script generation method.
  • the execution body of the automatic script generation method includes, but is not limited to, at least one of electronic devices such as a server and a terminal that can be configured to execute the method provided by the embodiments of the present application.
  • the automatic script generation method can be executed by software or hardware installed in a terminal device or a server device, and the software can be a blockchain platform.
  • the server includes but is not limited to: a single server, a server cluster, a cloud server or a cloud server cluster, and the like.
  • the automatic script generation method includes:
  • the to-be-processed file includes multiple pieces of to-be-processed file information.
  • the embodiment of the present application obtains the file type of the to-be-processed file by identifying and distinguishing the file suffix of the to-be-processed file.
  • the file suffix name is a mechanism used by the operating system to mark the file type.
  • file types may include TXT format, CSV format and EXCEL format.
  • the TXT format mainly stores text information, that is, text information, the CSV (Comma-Separated Values, comma-separated values) format, the file of which stores tabular data in plain text, and the EXCEL format, which is mainly tabular.
  • text information that is, text information
  • CSV Common-Separated Values, comma-separated values
  • EXCEL EXCEL format
  • the suffix name of the file to be processed is ".TXT”
  • the type of the file to be processed is the TXT format.
  • the embodiment of the present application performs the following file content extraction processing on the to-be-processed file according to the file type of the to-be-processed file:
  • Extract the file content in the to-be-processed file by using a preset java input stream to obtain a file content set;
  • the file content in the to-be-processed file is extracted through a preset jxl method to obtain a file content set.
  • the embodiment of the present application extracts the file content in the to-be-processed file by using a preset java input stream to obtain a file content set; and when the file type is When it is in EXCEL format, the embodiment of the present application extracts the file content in the to-be-processed file through a preset jxl manner to obtain a file content set.
  • extracting the file content in the to-be-processed file by using a preset java input stream method to obtain a file content set including:
  • the preset byte input stream is InputStream
  • the byte input stream is an abstract class that must rely on its subclasses to realize various functions, and the streams inherited from the byte input stream are all sent to the program.
  • Input data, and the data unit is bytes.
  • the file content in the to-be-processed file is extracted by the preset jxl method to obtain a file content set, including:
  • jxl jExcelAPI plug-in is a tool for operating excel in a java program.
  • the field type reading is performed on the file content set to obtain the field type, including:
  • the corresponding field name and field type are found from the preset database according to the table name.
  • the field type refers to a field format, such as a numeric type or a string type.
  • the performing data length verification on the data content in the file content set includes:
  • the embodiment of the present application deletes the data content of the preset number of rows and traverses the data of the next row to perform data length verification to verify whether the data length is within a reasonable range , the program will not be terminated if the verification is illegal, but the processing of this piece of data will be terminated, and the next piece of data will be traversed.
  • the matching and verifying the data content according to the field type includes:
  • the field is empty, it is determined whether the data content matches the field type, if it matches, it is determined that the matching verification is passed, and if it does not match, it is determined that the matching verification is not passed.
  • the embodiment of the present application stores the data content in a preset data text.
  • the field type of the data content is a number
  • the preset field type is a number
  • the preset sql template is a template for inserting sql statements that is automatically generated by reading the relevant information of the database in the to-be-processed file.
  • the embodiment of the present application may further include: performing corresponding format processing according to the specific format of the field in the initial sql script, for example , the string type needs to add single quotes before and after the data, the time type needs to convert the data to the time type through the preset to_data function, etc.
  • the storage identification is used to determine whether the script running verification needs to be performed.
  • the initial sql script is output as a standard sql script
  • the present application obtains the file type of the to-be-processed file by identifying the file type of the to-be-processed file, and extracts the file content of the to-be-processed file according to the file type of the to-be-processed file.
  • the content extraction method improves the scalability and compatibility, performs data length verification and matching verification on the extracted file content set, eliminates data that does not meet the requirements, and batches the verified data text into the preset SQL template for processing.
  • Script information processing increasing the accuracy of standard sql scripts. Therefore, the automatic script generation method proposed in this application can solve the problems of slow script writing efficiency and no guarantee of correctness.
  • FIG. 2 it is a functional block diagram of an apparatus for automatically generating a script provided by an embodiment of the present application.
  • the script automatic generation apparatus 100 described in this application can be installed in an electronic device.
  • the script automatic generation device 100 may include a file type identification module 101 , a file content extraction module 102 , a field type reading module 103 , a data length verification module 104 , a matching verification module 105 and a script information processing module 106 .
  • the modules described in this application may also be referred to as units, which refer to a series of computer program segments that can be executed by the processor of an electronic device and can perform fixed functions, and are stored in the memory of the electronic device.
  • each module/unit is as follows:
  • the file type identification module 101 is configured to obtain a file to be processed, perform file type identification on the to-be-processed file, and obtain the file type of the to-be-processed file;
  • the file content extraction module 102 is configured to extract the file content of the to-be-processed file according to the file type of the to-be-processed file to obtain a file content set;
  • the field type reading module 103 is configured to read the field type on the file content set to obtain the field type
  • the data length verification module 104 is configured to perform data length verification on the data content in the file content set
  • the matching verification module 105 is configured to perform matching verification on the data content according to the field type when the data length verification is passed, and store the data content that has passed the matching verification into a preset data text ;
  • the script information processing module 106 is configured to load the data text into a preset sql template, obtain an initial sql script, extract the warehousing identifier in the initial sql script, and The initial sql script performs script information processing to obtain a standard sql script.
  • an automatic script generation method including the following steps can be implemented:
  • Step 1 The file type identification module 101 obtains the file to be processed, performs file type identification on the to-be-processed file, and obtains the file type of the to-be-processed file.
  • the to-be-processed file includes multiple pieces of to-be-processed file information.
  • the file type identification module 101 is used to identify and distinguish the file suffix of the to-be-processed file to obtain the file type of the to-be-processed file.
  • the file suffix name is a mechanism used by the operating system to mark the file type.
  • file types may include TXT format, CSV format and EXCEL format.
  • the TXT format mainly stores text information, that is, text information, the CSV (Comma-Separated Values, comma-separated values) format, the file of which stores tabular data in plain text, and the EXCEL format, which is mainly tabular.
  • text information that is, text information
  • CSV Common-Separated Values, comma-separated values
  • EXCEL EXCEL format
  • the suffix name of the file to be processed is ".TXT”
  • the type of the file to be processed is the TXT format.
  • Step 2 The file content extraction module 102 extracts the file content of the to-be-processed file according to the file type of the to-be-processed file to obtain a file content set.
  • the file content extraction module 102 performs the following file content extraction processing on the to-be-processed file according to the file type of the to-be-processed file:
  • Extract the file content in the to-be-processed file by using a preset java input stream to obtain a file content set;
  • the file content in the to-be-processed file is extracted through a preset jxl method to obtain a file content set.
  • the file content extraction module 102 in this embodiment of the present application extracts the file content in the to-be-processed file by using a preset java input stream to obtain a file content set ; and when the file type is in EXCEL format, the file content extraction module 102 described in this embodiment of the present application extracts the file content in the to-be-processed file in a preset jxl manner to obtain a file content set.
  • extracting the file content in the to-be-processed file by using a preset java input stream method to obtain a file content set including:
  • the preset byte input stream is InputStream
  • the byte input stream is an abstract class that must rely on its subclasses to realize various functions, and the streams inherited from the byte input stream are all sent to the program.
  • Input data, and the data unit is bytes.
  • the file content in the to-be-processed file is extracted by the preset jxl method to obtain a file content set, including:
  • jxl jExcelAPI plug-in is a tool for operating excel in a java program.
  • Step 3 The field type reading module 103 reads the field type of the file content set to obtain the field type.
  • the field type reading module 103 reads the field type of the file content set to obtain the field type, including:
  • the corresponding field name and field type are found from the preset database according to the table name.
  • the field type refers to a field format, such as a numeric type or a string type.
  • Step 4 The data length verification module 104 performs data length verification on the data content in the file content set.
  • the data length verification module 104 performs data length verification on the data content in the file content set, including:
  • the embodiment of the present application deletes the data content of the preset number of rows and traverses the data of the next row to perform data length verification to verify whether the data length is within a reasonable range , the program will not be terminated if the verification is illegal, but the processing of this piece of data will be terminated, and the next piece of data will be traversed.
  • Step 5 When the data length verification is passed, the matching verification module 105 performs matching verification on the data content according to the field type, and stores the data content that has passed the matching verification in a preset data text. .
  • the matching verification module 105 performs matching verification on the data content according to the field type, including:
  • the field is empty, it is determined whether the data content matches the field type, if it matches, it is determined that the matching verification is passed, and if it does not match, it is determined that the matching verification is not passed.
  • the embodiment of the present application stores the data content in a preset data text.
  • the field type of the data content is a number
  • the preset field type is a number
  • Step 6 The script information processing module 106 loads the data text into a preset sql template to obtain an initial sql script, extracts the warehousing identifier in the initial sql script, and analyzes the The initial sql script performs script information processing to obtain a standard sql script.
  • the preset sql template is a template for inserting sql statements that is automatically generated by reading the relevant information of the database in the to-be-processed file.
  • the embodiment of the present application may further include: performing corresponding format processing according to the specific format of the field in the initial sql script, for example , the string type needs to add single quotes before and after the data, the time type needs to convert the data to the time type through the preset to_data function, etc.
  • the storage identification is used to determine whether the script running verification needs to be performed.
  • script information processing module 106 performs script information processing on the initial sql script according to the storage identifier to obtain a standard sql script, including:
  • the initial sql script is output as a standard sql script
  • the present application obtains the file type of the to-be-processed file by identifying the file type of the to-be-processed file, and extracts the file content of the to-be-processed file according to the file type of the to-be-processed file.
  • the content extraction method improves the scalability and compatibility, performs data length verification and matching verification on the extracted file content set, eliminates data that does not meet the requirements, and batches the verified data text into the preset SQL template for processing.
  • Script information processing increasing the accuracy of standard sql scripts. Therefore, the automatic script generation device proposed in the present application can solve the problems of slow script writing efficiency and no guarantee of correctness.
  • FIG. 3 it is a schematic structural diagram of an electronic device implementing a method for automatically generating a script provided by an embodiment of the present application.
  • the electronic device 1 may include a processor 10 , a memory 11 and a bus, and may also include a computer program stored in the memory 11 and executed on the processor 10 , such as a script automatic generation program 12 .
  • the memory 11 includes at least one type of readable storage medium, and the readable storage medium may be volatile or non-volatile.
  • the readable storage medium includes a flash memory, a mobile hard disk, a multimedia card, a card-type memory (eg, SD or DX memory, etc.), a magnetic memory, a magnetic disk, an optical disk, and the like.
  • the memory 11 may be an internal storage unit of the electronic device 1 in some embodiments, such as a mobile hard disk of the electronic device 1 .
  • the memory 11 may also be an external storage device of the electronic device 1 in other embodiments, for example, a pluggable mobile hard disk, a smart memory card (Smart Media Card, SMC), a secure digital (Secure Digital, SD) equipped on the electronic device 1 card, flash memory card (FlashCard), etc. Further, the memory 11 may also include both an internal storage unit of the electronic device 1 and an external storage device.
  • the memory 11 can not only be used to store application software installed in the electronic device 1 and various types of data, such as the code of the script automatic generation program 12, etc., but also can be used to temporarily store data that has been output or will be output.
  • the processor 10 may be composed of integrated circuits, for example, may be composed of a single packaged integrated circuit, or may be composed of multiple integrated circuits packaged with the same function or different functions, including one or more integrated circuits.
  • Central Processing Unit CPU
  • microprocessor digital processing chip
  • graphics processor and combination of various control chips, etc.
  • the processor 10 is the control core (ControlUnit) of the electronic device, and uses various interfaces and lines to connect various components of the entire electronic device, and by running or executing the program or module (such as a script automatically) stored in the memory 11. generate programs, etc.), and call data stored in the memory 11 to execute various functions of the electronic device 1 and process data.
  • the bus may be a peripheral component interconnect (PCI for short) bus or an extended industry standard architecture (extended industry standard architecture, EISA for short) bus or the like.
  • PCI peripheral component interconnect
  • EISA extended industry standard architecture
  • the bus can be divided into address bus, data bus, control bus and so on.
  • the bus is configured to implement connection communication between the memory 11 and at least one processor 10 and the like.
  • FIG. 3 only shows an electronic device with components. Those skilled in the art can understand that the structure shown in FIG. 3 does not constitute a limitation on the electronic device 1, and may include fewer or more components than those shown in the figure. components, or a combination of certain components, or a different arrangement of components.
  • the electronic device 1 may also include a power source (such as a battery) for powering the various components, preferably, the power source may be logically connected to the at least one processor 10 through a power management device, so that the power source can be managed by the power source.
  • the device implements functions such as charge management, discharge management, and power consumption management.
  • the power source may also include one or more DC or AC power sources, recharging devices, power failure detection circuits, power converters or inverters, power status indicators, and any other components.
  • the electronic device 1 may further include various sensors, Bluetooth modules, Wi-Fi modules, etc., which will not be repeated here.
  • the electronic device 1 may also include a network interface, optionally, the network interface may include a wired interface and/or a wireless interface (such as a WI-FI interface, a Bluetooth interface, etc.), which is usually used in the electronic device 1 Establish a communication connection with other electronic devices.
  • a network interface optionally, the network interface may include a wired interface and/or a wireless interface (such as a WI-FI interface, a Bluetooth interface, etc.), which is usually used in the electronic device 1 Establish a communication connection with other electronic devices.
  • the electronic device 1 may further include a user interface, and the user interface may be a display (Display), an input unit (such as a keyboard (Keyboard)), optionally, the user interface may also be a standard wired interface or a wireless interface.
  • the display may be an LED display, a liquid crystal display, a touch-sensitive liquid crystal display, an OLED (Organic Light-Emitting Diode, organic light-emitting diode) touch device, and the like.
  • the display may also be appropriately called a display screen or a display unit, which is used for displaying information processed in the electronic device 1 and for displaying a visualized user interface.
  • the script automatic generation program 12 stored in the memory 11 in the electronic device 1 is a combination of multiple instructions, and when running in the processor 10, it can realize:
  • the data content is matched and verified according to the field type, and the data content that has passed the matching verification is stored in a preset data text;
  • the modules/units integrated in the electronic device 1 may be stored in a computer-readable storage medium.
  • the computer-readable storage medium may be volatile or non-volatile.
  • the computer-readable medium may include: any entity or device capable of carrying the computer program code, recording medium, U disk, removable hard disk, magnetic disk, optical disk, computer memory, Read-Only Memory (ROM, Read-Only Memory) ).
  • the present application also provides a computer-readable storage medium, where the readable storage medium stores a computer program, and when executed by a processor of an electronic device, the computer program can realize:
  • the data content is matched and verified according to the field type, and the data content that has passed the matching verification is stored in a preset data text;
  • modules described as separate components may or may not be physically separated, and components shown as modules may or may not be physical units, that is, may be located in one place, or may be distributed to multiple network units. Some or all of the modules may be selected according to actual needs to achieve the purpose of the solution in this embodiment.
  • each functional module in each embodiment of the present application may be integrated into one processing unit, or each unit may exist physically alone, or two or more units may be integrated into one unit.
  • the above-mentioned integrated units can be implemented in the form of hardware, or can be implemented in the form of hardware plus software function modules.

Landscapes

  • Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Data Mining & Analysis (AREA)
  • Databases & Information Systems (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Human Computer Interaction (AREA)
  • Information Retrieval, Db Structures And Fs Structures Therefor (AREA)

Abstract

L'invention concerne un procédé de génération de script automatique, comprenant : la réalisation d'une reconnaissance de type de fichier sur un fichier à traiter, et la réalisation d'une extraction de contenu de fichier sur ledit fichier selon un type de fichier, de façon à obtenir un ensemble de contenu de fichier ; la réalisation d'une lecture de type de champ sur l'ensemble de contenu de fichier, de façon à obtenir un type de champ ; la réalisation d'une vérification de longueur de données sur un contenu de données dans l'ensemble de contenu de fichier ; lorsque la vérification de longueur est réussie, la réalisation d'une vérification de correspondance sur le contenu de données selon le type de champ, et le stockage, dans le texte de données, d'un contenu de données dont la vérification correspondante est réussie ; et le chargement du texte de données dans un modèle SQL prédéfini, de façon à obtenir un script SQL initial, l'extraction d'un identifiant d'entreposage à partir de celui-ci, et la réalisation d'un traitement d'informations de script sur celui-ci, de façon à obtenir un script SQL standard. Le présent procédé concerne également la technologie des chaînes de blocs. Le type de champ peut être stocké dans un nœud d'une chaîne de blocs. L'invention concerne en outre un appareil de génération de script automatique, un dispositif électronique et un support de stockage. Les problèmes de la faible efficacité d'écriture d'un script et du manque de garantie d'exactitude peuvent être résolus.
PCT/CN2021/123890 2021-02-24 2021-10-14 Procédé et appareil de génération de script automatique, dispositif électronique et support de stockage WO2022179121A1 (fr)

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
CN202110206570.6A CN112882995A (zh) 2021-02-24 2021-02-24 脚本自动生成方法、装置、电子设备及存储介质
CN202110206570.6 2021-02-24

Publications (1)

Publication Number Publication Date
WO2022179121A1 true WO2022179121A1 (fr) 2022-09-01

Family

ID=76054888

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/CN2021/123890 WO2022179121A1 (fr) 2021-02-24 2021-10-14 Procédé et appareil de génération de script automatique, dispositif électronique et support de stockage

Country Status (2)

Country Link
CN (1) CN112882995A (fr)
WO (1) WO2022179121A1 (fr)

Families Citing this family (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN112882995A (zh) * 2021-02-24 2021-06-01 深圳壹账通智能科技有限公司 脚本自动生成方法、装置、电子设备及存储介质
CN113343662A (zh) * 2021-06-28 2021-09-03 平安信托有限责任公司 数据落地方法、装置、电子设备及介质
CN115665126A (zh) * 2022-10-11 2023-01-31 平安银行股份有限公司 批量执行文件生成方法、装置、介质及设备

Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN109325046A (zh) * 2018-10-25 2019-02-12 深圳壹账通智能科技有限公司 数据库脚本生成方法、装置、介质及电子设备
CN109783509A (zh) * 2019-01-04 2019-05-21 中国银行股份有限公司 Sql脚本生成方法及装置
CN110019485A (zh) * 2018-02-07 2019-07-16 中国平安人寿保险股份有限公司 一种产品数据入库方法、终端设备及存储介质
CN110069449A (zh) * 2019-03-20 2019-07-30 平安科技(深圳)有限公司 文件处理方法、装置、计算机设备和存储介质
CN112882995A (zh) * 2021-02-24 2021-06-01 深圳壹账通智能科技有限公司 脚本自动生成方法、装置、电子设备及存储介质

Family Cites Families (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7831614B2 (en) * 2003-07-11 2010-11-09 Computer Associates Think, Inc. System and method for generating SQL using templates
US8032544B2 (en) * 2008-09-24 2011-10-04 The Boeing Company Methods and apparatus for generating dynamic program files based on input queries that facilitate use of persistent query services
CN112395251A (zh) * 2020-12-21 2021-02-23 深圳赛安特技术服务有限公司 数据文件的智能解析方法、装置、电子设备及存储介质

Patent Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN110019485A (zh) * 2018-02-07 2019-07-16 中国平安人寿保险股份有限公司 一种产品数据入库方法、终端设备及存储介质
CN109325046A (zh) * 2018-10-25 2019-02-12 深圳壹账通智能科技有限公司 数据库脚本生成方法、装置、介质及电子设备
CN109783509A (zh) * 2019-01-04 2019-05-21 中国银行股份有限公司 Sql脚本生成方法及装置
CN110069449A (zh) * 2019-03-20 2019-07-30 平安科技(深圳)有限公司 文件处理方法、装置、计算机设备和存储介质
CN112882995A (zh) * 2021-02-24 2021-06-01 深圳壹账通智能科技有限公司 脚本自动生成方法、装置、电子设备及存储介质

Also Published As

Publication number Publication date
CN112882995A (zh) 2021-06-01

Similar Documents

Publication Publication Date Title
WO2022179121A1 (fr) Procédé et appareil de génération de script automatique, dispositif électronique et support de stockage
WO2021189899A1 (fr) Procédé et appareil de suivi d'état de liaison, dispositif électronique et support de stockage informatique
WO2022121171A1 (fr) Procédé et appareil de mise en correspondance de textes similaires, ainsi que dispositif électronique et support de stockage informatique
WO2021189829A1 (fr) Procédé et appareil de recherche par données descriptives, dispositif électronique et support d'information
WO2021212757A1 (fr) Procédé et appareil de maintenance d'actualisation pour grappe, et dispositif électronique et support d'informations
CN108241720B (zh) 数据处理方法、装置和计算机可读存储介质
CN109165209B (zh) 数据库中对象类型的数据校验方法、装置、设备及介质
CN113239106B (zh) Excel文件导出方法、装置、电子设备及存储介质
WO2022179119A1 (fr) Procédé et appareil de vérification de données, dispositif électronique et support de stockage lisible
CN109408050B (zh) 用于轨道车辆的设备应用程序接口的代码生成方法及装置
WO2021174860A1 (fr) Procédé basé sur un code spécial permettant la mise à niveau par lots d'une carte distribuée multi-micrologiciel
CN103761095B (zh) 一种生成通用的升级文件头部数据信息的方法
CN113282854A (zh) 数据请求响应方法、装置、电子设备及存储介质
CN113312338A (zh) 数据一致性的校验方法、装置、设备、介质及程序产品
CN111209736A (zh) 文本文件解析方法、装置、计算机设备及存储介质
CN111381142A (zh) 一种提高测试流效率的半导体自动测试设备及测试方法
CN113468175B (zh) 数据压缩方法、装置、电子设备及存储介质
WO2022179122A1 (fr) Procédé et appareil de stockage de données utilisant des mégadonnées, et dispositif électronique et support de stockage
WO2022048362A1 (fr) Procédé et appareil de stockage de données, dispositif électronique, et support de stockage
CN113434542B (zh) 数据关系识别方法、装置、电子设备及存储介质
CN113591422A (zh) 芯片验证中测试案例流程信息的生成系统及应用
WO2021189905A1 (fr) Procédé et appareil de récupération de données distribuées, dispositif électronique et support de stockage
WO2021139443A1 (fr) Procédé et appareil de contrôle d'accès à des données, et dispositif et système d'accès à des données
WO2022105494A1 (fr) Procédé et appareil de remplissage de données automatique, dispositif électronique et support de stockage informatique
CN113485711A (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: 21927545

Country of ref document: EP

Kind code of ref document: A1

NENP Non-entry into the national phase

Ref country code: DE

32PN Ep: public notification in the ep bulletin as address of the adressee cannot be established

Free format text: NOTING OF LOSS OF RIGHTS PURSUANT TO RULE 112(1) EPC (EPO FORM 1205A DATED 071223)