1:修改用户账号的属性,设置某某时间实效(禁止登陆) 2:临时锁定用户lisi的账户,使其无法登陆,验证效果后解除锁定 3:修改tty终端提示,使得登陆前看到的第一行文本为“Windows Server 2012 Enterprise R2”,第二行文本为“NT 6.2 Hybrid” 4:锁定文件 ...
分类:
系统相关 时间:
2021-06-02 15:00:47
阅读次数:
0
JSP简介 JSP全称是Java Server Pages,是一种动态网页技术,JSP其实就是在html中插入了java代码和JSP标签之后形成的文件,文件名以.jsp结尾。其实JSP就是一个servlet。在servlet中编写html比较痛苦,而写JSP就像在写html,但它相比html而言,h ...
分类:
Web程序 时间:
2021-06-02 15:00:25
阅读次数:
0
Execution Plans in SQL Server Introduction In this article, I’m going to explain what the Execution Plans in SQL Server are and how to understand the ...
分类:
数据库 时间:
2021-06-02 14:46:02
阅读次数:
0
1、创建表 create table TESTDATE ( calc_type NVARCHAR2(10), calc_no NVARCHAR2(10), calc_name NVARCHAR2(10), calc_aca1 NVARCHAR2(10), calc_aca2 NVARCHAR2(10 ...
分类:
其他好文 时间:
2021-06-02 14:40:39
阅读次数:
0
1、create table resultTable select * from sourceTable where ....; 可以复制条件下的数据,也可以复制数据结构,但是字段上面的比如自增长,不会被复制。 2、create table resultTable like sourceTable; ...
分类:
数据库 时间:
2021-06-02 14:36:16
阅读次数:
0
--check dataguard status select process,status,group#,sequence# from v$managed_standby select * from v$archived_log order by thread#, sequence#; selec ...
分类:
数据库 时间:
2021-06-02 14:24:58
阅读次数:
0
--create directory create directory dump_dir as '/splex/dump'; grant read,write on directory dump_dir to public; --export full database schema expdp u ...
分类:
数据库 时间:
2021-06-02 14:24:07
阅读次数:
0
Table of contents SQL Server Execution Plans Overview SQL Server Execution Plans Types How to Analyze SQL Execution Plan Graphical Components SQL Serv ...
分类:
数据库 时间:
2021-06-02 14:18:20
阅读次数:
0
1.=为比较运算符,同时也是sql中的赋值运算符, 除 text、ntext 或 image 数据类型的表达式外,=可以用于所有其他表达式,更多是一种数值类型上的判断,对于bool类型的判断会有3个结果TRUE、FALSE 和 UNKNOWN,在判断是否为null则会返回UNKNOWN,所以不能用= ...
分类:
数据库 时间:
2021-06-02 14:16:05
阅读次数:
0
折腾了一上午 原因是: windows 服务需要弄一个高点的权限 用管理员模式运行,解决! ...