Oracle向Linux kernel加入数据完整性代码
Oracle宣布向Linux kernel捐赠数据完整性代码。代码是Oracle和Emulex合作开发的,已被2.6.27 kernel所接受。代码向静止和传输中的
Oracle宣布向Linux kernel捐赠数据完整性代码。代码是Oracle和Emulex合作开发的,已被2.6.27 kernel所接受。
代码向静止和传输中的数据加入元数据,监视这些数据有没有被损坏。通过检查元数据——起验证信息作用——它将能保证I/O数据操作的有效性,,从而减少应用程序和数据库错误。
Oracle has announced that it has contributed data-integrity code to the Linux kernel.
The open-source code, which has been accepted into the Linux 2.6.27 kernel, is designed to reduce data corruption by decreasing the potential for incorrect data to be written to disk, and decreasing application and database errors, Oracle said in a statement on Tuesday. According to the enterprise-software maker, the code helps maintain integrity as data moves from application to database, and from Linux operating system to disk storage.
The code adds metadata to data at rest or in transit, to monitor whether that data has been corrupted. It helps make sure that I/O operations are valid by looking at that metadata — which acts as verification information — exchanged during data transmissions.
Oracle said it worked in conjunction with enterprise-network company Emulex to produce the code. Scott McIntyre, Emulex vice president of product marketing, said that the code contribution was a "significant milestone" for data-integrity development.
"Data integrity is vital to any business that relies on critical records and information to function successfully," McIntyre said in a statement. "Our work with Oracle is designed to help datacenter administrators quickly identify and remediate corrupted data, thereby protecting their business' assets, while also helping prevent lengthy server downtime and associated costs."
The code contribution includes generic support for data integrity at the block and file-system layers, Oracle added. Oracle and Emulex are also running an early-adopter program to allow customers to test the data-integrity features of the code. In 2007, Oracle, Emulex, Seagate and LSI formed the Data Integrity Initiative, designed to improve the integrity of data in transit and at rest. The initiative seeks to build on the data integrity field (DIF), now known as the T10 Protection Information Model, within the SCSI standard.

热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章

热工具

记事本++7.3.1
好用且免费的代码编辑器

SublimeText3汉化版
中文版,非常好用

禅工作室 13.0.1
功能强大的PHP集成开发环境

Dreamweaver CS6
视觉化网页开发工具

SublimeText3 Mac版
神级代码编辑软件(SublimeText3)

热门话题

要查询 Oracle 表空间大小,请遵循以下步骤:确定表空间名称,方法是运行查询:SELECT tablespace_name FROM dba_tablespaces;查询表空间大小,方法是运行查询:SELECT sum(bytes) AS total_size, sum(bytes_free) AS available_space, sum(bytes) - sum(bytes_free) AS used_space FROM dba_data_files WHERE tablespace_

在 Oracle 中获取时间有以下方法:CURRENT_TIMESTAMP:返回当前系统时间,精确到秒。SYSTIMESTAMP:比 CURRENT_TIMESTAMP 更准确,精确到纳秒。SYSDATE:返回当前系统日期,不含时间部分。TO_CHAR(SYSDATE, 'YYYY-MM-DD HH24:MI:SS'): 将当前系统日期和时间转换为特定格式。EXTRACT:从时间值中提取特定部分,如年份、月份或小时。

Oracle 视图加密允许您加密视图中的数据,从而增强敏感信息安全性。步骤包括:1) 创建主加密密钥 (MEk);2) 创建加密视图,指定要加密的视图和 MEk;3) 授权用户访问加密视图。加密视图工作原理:当用户查询加密视图时,Oracle 使用 MEk 解密数据,确保只有授权用户可以访问可读数据。

在 Oracle 中查看实例名的方法有三种:命令行中使用 "sqlplus" 和 "select instance_name from v$instance;" 命令。在 SQL*Plus 中使用 "show instance_name;" 命令。通过操作系统的任务管理器、Oracle Enterprise Manager 或检查环境变量 (Linux 上的 ORACLE_SID)。

Oracle 安装失败的卸载方法:关闭 Oracle 服务,删除 Oracle 程序文件和注册表项,卸载 Oracle 环境变量,重新启动计算机。若卸载失败,可使用 Oracle 通用卸载工具手动卸载。

数据导入方法:1. 使用 SQLLoader 实用程序:准备数据文件、创建控制文件、运行 SQLLoader;2. 使用 IMP/EXP 工具:导出数据、导入数据。提示:1. 大数据集推荐 SQL*Loader;2. 目标表应存在,列定义匹配;3. 导入后需验证数据完整性。

Oracle 无效数字错误可能由数据类型不匹配、数字溢出、数据转换错误或数据损坏引起。排查步骤包括检查数据类型、检测数字溢出、检查数据转换、排查数据损坏,并探索其他可能的解决方案,如配置 NLS_NUMERIC_CHARACTERS 参数和启用数据验证日志记录。

在 Oracle 中创建用户需遵循以下步骤:使用 CREATE USER 语句创建新用户。使用 GRANT 语句授予必要权限。可选:使用 RESOURCE 语句设置配额。配置其他选项,如默认角色和临时表空间。
