As a user, it can be very disorienting when the "wrong" UI is briefly shown to the user: a login link is shown to an authenticated user, or a 404 erro ...
分类:
其他好文 时间:
2020-03-08 10:00:45
阅读次数:
64
when normal user want to use admin privilledge, error message: " user is not in the sudoers file. This incident will be reported." Add an existed user ...
分类:
系统相关 时间:
2020-03-08 09:37:53
阅读次数:
84
行级锁 对数据库的行记录进行加锁 优点: Fewer lock conflicts when different sessions access different rows. 当不同会话访问不同的行时会减少锁的冲突 Fewer changes for rollbacks. 在回滚的时候会减少修改量 ...
分类:
数据库 时间:
2020-03-07 22:33:16
阅读次数:
116
今天装了一台centos7,像往常一样通过/etc/inittab去修改启动级别,然而进去之后却看到如下情况: # inittab is no longer used when using systemd. # # ADDING CONFIGURATION HERE WILL HAVE NO EFF ...
分类:
其他好文 时间:
2020-03-07 16:09:42
阅读次数:
62
1. nvl nvl(value,default_value) 空字段赋值,若value为空,则赋值default_value;若value非空,则返回原本value值。 default_value可以是数值、'字符串',也可以是字段 2. case...when...then...end case ...
分类:
其他好文 时间:
2020-03-07 13:08:46
阅读次数:
96
SAP CRM Service Request subject value determination When a new Service Request is created, the multi level drop down list for Service Request subject ...
分类:
其他好文 时间:
2020-03-07 11:20:07
阅读次数:
79
SELECT 表名 = Case When A.colorder=1 Then D.name Else '' End, 表说明 = Case When A.colorder=1 Then isnull(F.value,'') Else '' End, 字段序号 = A.colorder, 字段名 = ...
分类:
数据库 时间:
2020-03-06 13:14:44
阅读次数:
72
网卡信息检测与网络流量检测 ? 每台计算机进行网线通讯,都要借助一个硬件设备, 网卡 ,简称 NIC , 是 的缩写。网卡则负责将 比特流转换成电信号 发送出去和将检测到的 电信号转换成比特流 并接收。 网络适配器: 又称网卡是连接计算机与网络的硬件设备。 整理计算机上发往网线上的数据,并将数据分解 ...
分类:
其他好文 时间:
2020-03-06 13:08:05
阅读次数:
77
方法一: SELECT TO_CHAR( to_date( '2020-01-01', 'yyyy-MM-dd' ), 'MM' ) || '月' || CASE WHEN to_char( to_date( '2020-01-01', 'yyyy-MM-dd' ), 'month' ), 'D' ...
分类:
其他好文 时间:
2020-03-05 17:54:48
阅读次数:
53
oracle定时执行存储过程 建立定时器 关于定时器执行频率时间的设置 Interval 关于定时器下一次执行的时间的设置 next_date 关于定时器的其他操作,如修改、删除。 其他相关知识 参考博文:https://www.cnblogs.com/manwwx129/p/11910196.ht ...
分类:
数据库 时间:
2020-03-04 20:54:21
阅读次数:
102