当前位置:网站首页>Dameng database_ User password policy
Dameng database_ User password policy
2022-07-24 06:10:00 【ls2best】
User password policy , namely : The complexity of using Hukou order , This is related to the security of users .
User password management
The maximum user password of Dameng database is 48 byte , At present, the system supports several password strategies :
Parameter values | Corresponding strategies |
|---|---|
| 0 | No strategy |
| 1 | It is forbidden to be the same as the user name |
| 2 | The password length is not less than 9 |
| 4 | Contains at least one capital letter (A~Z) |
| 8 | Include at least one number (0~9) |
| 16 | Include at least one punctuation mark ( In English input mode , except '' And all the symbols outside the space ) |
It should be noted that , Password policy can be used alone , You can also combine . In combination , If it is necessary to set the password length not less than 9 And contain at least one capital letter (A~Z), Then you only need to set the policy 2( The password length is not less than 9) And strategy 4( Contains at least one capital letter ) The sum of the , namely 2+4=6 that will do .
The default password policy of the database is 2.
Password policy setting method
1、 When you create a user , Specify the password policy of the secondary user .
It should be noted that , This method can only be used in the secure version of Damon database , Other versions do not support .
CREATE USER TEST_1 IDENTIFIED BY A1234 PASSWORD_POLICY 5;
[ Execute statement 1]:
CREATE USER TEST_1 IDENTIFIED BY A1234 PASSWORD_POLICY 5;
Execution failure ( sentence 1)
The first 1 An error occurred near the line [-5630]:
Non secure versions cannot do this
1 Statement execution failed 2、 stay DM Of INI Parameters PWD_POLICY Specify the system default password policy
Mode one : Modify through console tools
Mode two : Call system stored procedure SP_SET_PARA_VALUE(), To reset PWD_POLICY Value .
Such as :
SP_SET_PARA_VALUE(1,'PWD_POLICY',3)
Dynamic parameters , Immediate effect .
View password policy
Mode one :
SELECT * FROM V$PARAMETER WHERE NAME='PWD_POLICY';Mode two :
SELECT SF_GET_PARA_VALUE(1,'PWD_POLICY');Dameng community address :https://eco.dameng.com
边栏推荐
- JUC并发编程基础(6)--Lock锁
- JVM system learning
- Accessing a one-dimensional array with a pointer
- Positional argument after keyword argument
- STM32 DSP library MDK vc5\vc6 compilation error: 256, (const float64_t *) twiddlecoeff64_ 256, armBitRevIndexTableF64_ 256,
- unity最新版本的Text(TMP)UI文本怎么显示中文
- Machine learning (Zhou Zhihua) Chapter 4 notes on learning experience of decision tree
- Statistical analysis of catering data --- Teddy cloud course homework
- Unity基础知识及一些基本API的使用
- Foundation of JUC concurrent programming (1) -- related basic concepts
猜你喜欢
![[deep learning] handwritten neural network model preservation](/img/4a/27031f29598564cf585b3af20fe27b.png)
[deep learning] handwritten neural network model preservation
![[activiti] personal task](/img/bc/80ac4067f6c58785acb4273f9507ee.png)
[activiti] personal task

day6-jvm

day3-jvm+排序总结
![[deep learning] teach you to write](/img/c6/333b16758d79ebd77185be6e3cb38f.png)
[deep learning] teach you to write "handwritten digit recognition neural network" hand in hand, without using any framework, pure numpy

常见AR以及MR头戴显示设备整理

头歌 平台作业

unity2D游戏之让人物动起来-上

Thymeleaf quick start learning

JUC并发编程基础(8)--读写锁
随机推荐
JUC并发编程基础(7)--多线程锁
HoloLens 2 开发101:创建首个HoloLens 2应用程序
论文阅读-Endmember-Guided Unmixing Network (EGU-Net) 端元指导型高光谱解混网络
Detailed explanation of KMP code distribution
HAL_Delay()延时误差约1ms的问题
《剑指Offer》 二维数组的查找 C语言版本
Machine learning (zhouzhihua) Chapter 1 Introduction notes learning experience
Unity(二) 更多API和物理引擎
[deep learning] teach you to write "handwritten digit recognition neural network" hand in hand, without using any framework, pure numpy
JUC并发编程基础(8)--读写锁
简单却好用:使用Keras 2实现基于LSTM的多维时间序列预测
JUC并发编程基础(1)--相关基础概念
[raspberry pie 4B] VII. Summary of remote login methods for raspberry pie xshell, putty, vncserver, xrdp
Answers and analysis of some after-school exercises in signals and systems (Wujing)
day1-jvm+leetcode
Use QT to connect to MySQL and create table numbers, write data, and delete data
day2-WebSocket+排序
JUC并发编程基础(9)--线程池
[activiti] process variables
精确计算时间延迟VxWorks 时间戳 详解