12 2021 档案

摘要:默认为180天 SELECT * FROM dba_profiles s WHERE s.profile='DEFAULT' AND resource_name='PASSWORD_LIFE_TIME'; 使用这条语句改成永不过期ALTER PROFILE DEFAULT LIMIT PASSWOR 阅读全文
posted @ 2021-12-20 10:27 林间山下 阅读(300) 评论(0) 推荐(0)
摘要:语法: background-image: linear-gradient(direction, color-stop1, color-stop2, ...); /* 从上到下,蓝色渐变到红色 */ linear-gradient(blue, red); /* 渐变轴为45度,从蓝色渐变到红色 */ 阅读全文
posted @ 2021-12-17 14:08 林间山下 阅读(1716) 评论(0) 推荐(0)
摘要:.radar { width: 33%; height: 300px; float: left; margin: 10px 0; } <div style="line-height: 30px;background-color: white;overflow: hidden;margin: 0 20 阅读全文
posted @ 2021-12-16 10:37 林间山下 阅读(324) 评论(0) 推荐(0)
摘要:class QuantityTable { public string NAME { get; set; } public string T { get; set; } public string UNIT { get; set; } public decimal DAYWQUAN { get; s 阅读全文
posted @ 2021-12-14 12:51 林间山下 阅读(94) 评论(0) 推荐(0)
摘要:前段时间项目中要用到缓存已解决效率的问题,研究了一下.net中的Cache缓存,结果是研究了半天最后还是没有用这种方式,哎,很多问题从业务上就能优化,不说了 using System; using System.Collections.Generic; using System.Linq; usin 阅读全文
posted @ 2021-12-14 11:53 林间山下 阅读(654) 评论(0) 推荐(0)
摘要:create table tastTable(id number,name varchar2(50)); insert into tastTable(Id, Name)values(1,'张三');insert into tastTable(Id, Name)values(2,'李四');inser 阅读全文
posted @ 2021-12-14 11:35 林间山下 阅读(149) 评论(0) 推荐(0)