DB2 Table Data Encryption

Source: Internet
Author: User
Tags db2 db2 create table db2 insert db2 values

"Guide" to give a simple example, encryption, decryption passwd is set global, using the DB2 database encryption function Encrypt,decrypt_char implementation.

Cases:

1.
C:\>db2 create table encode_demo(col1 varchar(100) for bit data) //字段col1数据按二进制存放
DB20000I SQL 命令成功完成。
2.
C:\>db2 set encryption password = 'loveunix'  //设置加密解密的passwd
DB20000I SQL 命令成功完成。
3.
C:\>db2 values(encrypt('loveunix')) //先预览一下加密后的loveunix
1
---------------------------------------------------
x'08BC44FF6A05A3D5240E86CFB2CE60F243AA83C41B7221D7'
4.
C:\>db2 insert into encode_demo values(encrypt('loveunix')) //插记录
DB20000I SQL 命令成功完成。
5.
C:\>db2 select decrypt_char(col1) as encode from encode_demo //解密,检索记录
ENCODE
--------------------------------------------------------------------------------
loveunix
1 条记录已选择。

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.