Home Database Mysql Tutorial 给数据库管理员设定访问限制

给数据库管理员设定访问限制

Jun 07, 2016 pm 03:30 PM
oracle database administrator set up access Enter limit

欢迎进入Oracle社区论坛,与200万技术人员互动交流 >>进入 在内部威胁与法令遵从时代,甲骨文认为管理员不应该完全控制他们管理的数据库中的信息。 商业软件巨头甲骨文正在开发给数据库管理员设定访问限制的新软件。甲骨文高级主管Wynn White称,将于下月推

欢迎进入Oracle社区论坛,与200万技术人员互动交流 >>进入

    在内部威胁与法令遵从时代,甲骨文认为管理员不应该完全控制他们管理的数据库中的信息。

    商业软件巨头甲骨文正在开发给数据库管理员设定访问限制的新软件。甲骨文高级主管Wynn White称,将于下月推出的新软件――Oracle Database Vault――将加强访问控制,帮助公司满足法令与隐私要求,并避免数据库受到有恶毒居心员工的破坏。

    White说:“我们正从这些人手中取走通向帝国的钥匙。你希望能够让他们访问工作所需的信息,但你不希望他们接触其它的内容。”

    Forrester研究机构的分析员Noel Yuhanna称,Database Vault将会很畅销,特别是那些包含私人数据的数据库更是需要此种软件。他估计使用中的数据库系统将有三分之一会应用此软件。他说:“企业希望他们的管理员管理数据库,而非数据。”

    Yuhanna称甲骨文的此项新访问限制功能在数据库厂商中占领先地位。他说:“微软、IBM与Sybase都没有类似的产品。”但他又补充道,在不远的将来,竞争产品可能会提供相似的功能。

    除数据库厂商加紧其数据库安全外,几家别的厂商,包括Guardium、Tizor和Crossroads系统也在提供监控数据存储访问的产品。这些公司也将其产品定位为法令服从解决方案。

    甲骨文计划将Database Vault作为甲骨文数据库企业版的附赠品一起出售。其售价为每个处理器2万美元或每个用户400美元,并可与公司去年发行的无所不能数据库产品的最新版本――10g版Release 2――共同使用。

    除了以附赠品的方式销售访问限制功能外,甲骨文也应把它包含在其核心数据库产品中。Yuhanna说:“许多顾客将会提出这一要求。如果微软与IBM以相似的价格提供类似的产品,或将这样的产品作为他们数据库的一部分,甲骨文也会这样做。”

    除Database Vault外,周三,甲骨文计划发布一款对存储在数据库上的信息进行加密备份的新软件――Oracle Secure Backup.甲骨文称该软件能够加密数据,并将其复制到磁带存储设备上。甲骨文在一项声明中称,此软件可与各种版本的甲骨文数据库协同工作,现在即有售,每磁带驱动设备的售价为3000美元。

给数据库管理员设定访问限制

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

MySQL: An Introduction to the World's Most Popular Database MySQL: An Introduction to the World's Most Popular Database Apr 12, 2025 am 12:18 AM

MySQL is an open source relational database management system, mainly used to store and retrieve data quickly and reliably. Its working principle includes client requests, query resolution, execution of queries and return results. Examples of usage include creating tables, inserting and querying data, and advanced features such as JOIN operations. Common errors involve SQL syntax, data types, and permissions, and optimization suggestions include the use of indexes, optimized queries, and partitioning of tables.

What to do if the oracle can't be opened What to do if the oracle can't be opened Apr 11, 2025 pm 10:06 PM

Solutions to Oracle cannot be opened include: 1. Start the database service; 2. Start the listener; 3. Check port conflicts; 4. Set environment variables correctly; 5. Make sure the firewall or antivirus software does not block the connection; 6. Check whether the server is closed; 7. Use RMAN to recover corrupt files; 8. Check whether the TNS service name is correct; 9. Check network connection; 10. Reinstall Oracle software.

How to solve the problem of closing oracle cursor How to solve the problem of closing oracle cursor Apr 11, 2025 pm 10:18 PM

The method to solve the Oracle cursor closure problem includes: explicitly closing the cursor using the CLOSE statement. Declare the cursor in the FOR UPDATE clause so that it automatically closes after the scope is ended. Declare the cursor in the USING clause so that it automatically closes when the associated PL/SQL variable is closed. Use exception handling to ensure that the cursor is closed in any exception situation. Use the connection pool to automatically close the cursor. Disable automatic submission and delay cursor closing.

Why Use MySQL? Benefits and Advantages Why Use MySQL? Benefits and Advantages Apr 12, 2025 am 12:17 AM

MySQL is chosen for its performance, reliability, ease of use, and community support. 1.MySQL provides efficient data storage and retrieval functions, supporting multiple data types and advanced query operations. 2. Adopt client-server architecture and multiple storage engines to support transaction and query optimization. 3. Easy to use, supports a variety of operating systems and programming languages. 4. Have strong community support and provide rich resources and solutions.

How to create cursors in oracle loop How to create cursors in oracle loop Apr 12, 2025 am 06:18 AM

In Oracle, the FOR LOOP loop can create cursors dynamically. The steps are: 1. Define the cursor type; 2. Create the loop; 3. Create the cursor dynamically; 4. Execute the cursor; 5. Close the cursor. Example: A cursor can be created cycle-by-circuit to display the names and salaries of the top 10 employees.

How to stop oracle database How to stop oracle database Apr 12, 2025 am 06:12 AM

To stop an Oracle database, perform the following steps: 1. Connect to the database; 2. Shutdown immediately; 3. Shutdown abort completely.

What steps are required to configure CentOS in HDFS What steps are required to configure CentOS in HDFS Apr 14, 2025 pm 06:42 PM

Building a Hadoop Distributed File System (HDFS) on a CentOS system requires multiple steps. This article provides a brief configuration guide. 1. Prepare to install JDK in the early stage: Install JavaDevelopmentKit (JDK) on all nodes, and the version must be compatible with Hadoop. The installation package can be downloaded from the Oracle official website. Environment variable configuration: Edit /etc/profile file, set Java and Hadoop environment variables, so that the system can find the installation path of JDK and Hadoop. 2. Security configuration: SSH password-free login to generate SSH key: Use the ssh-keygen command on each node

What to do if the oracle log is full What to do if the oracle log is full Apr 12, 2025 am 06:09 AM

When Oracle log files are full, the following solutions can be adopted: 1) Clean old log files; 2) Increase the log file size; 3) Increase the log file group; 4) Set up automatic log management; 5) Reinitialize the database. Before implementing any solution, it is recommended to back up the database to prevent data loss.

See all articles