MSSQL-SA账号安全限制 约定规则: 触发器名称:forbiddensa 执行DB: master 1.删除触发器 drop trigger forbiddensa on ALL server ; 2.构建触发器 CREATE TRIGGER forbiddensa ON ALL SERVER ...
分类:
其他好文 时间:
2020-09-17 23:05:05
阅读次数:
42
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */ /* Document */ /** * 1. Correct the line height in all browsers. * 2. Pre ...
分类:
Web程序 时间:
2020-09-17 23:02:06
阅读次数:
32
int* plusOne(int* digits, int digitsSize, int* returnSize){ int i,carry=1; int* arr = (int*)calloc(digitsSize+1,sizeof(int)); for (i=digitsSize-1; i>= ...
分类:
其他好文 时间:
2020-09-17 22:54:01
阅读次数:
25
题目如下: Given an array nums, you are allowed to choose one element of nums and change it by any value in one move. Return the minimum difference between ...
分类:
其他好文 时间:
2020-09-17 22:48:12
阅读次数:
35
通过innotifywait的工具监听文件改动写入日志#!/bin/bashMON_DIR=/optinotifywait-mqr--format%f-ecreate$MON_DIR|\whilereadfiles;doecho"$(date+‘%F%T‘)$files">>file_mon.logdone
分类:
系统相关 时间:
2020-09-17 21:38:02
阅读次数:
41
When searching google with the keywords 'n-way anova python', you almost get nothing but one-way/two-way ANOVA from scipy. I developed a C++ version y ...
分类:
编程语言 时间:
2020-09-17 21:33:43
阅读次数:
31
一 什么是 Nacos 服务注册中心和配置中心。 二 使用 下载和启动 使用有两种方式 1.自己下载源码编译 2.下载编译好的压缩包 我比较懒选择了第二种方式。 最新稳定版本 下载地址:https://github.com/alibaba/nacos/releases 还有的版本是:https:// ...
分类:
其他好文 时间:
2020-09-17 20:57:52
阅读次数:
32
Problem LeetCode Given a collection of candidate numbers (candidates) and a target number (target), find all unique combinations in candidates where t ...
分类:
编程语言 时间:
2020-09-17 20:29:16
阅读次数:
30
题:https://codeforces.com/contest/1404/problem/E 题意:给定n*m矩阵‘#’表示要用砖头覆盖,‘.’表示不能被覆盖,只有1*x的砖头(x可任意),问在砖头不相互覆盖的前提下,最少用几块砖头能按规定把矩阵覆盖 分析: 假设一开始全部都是1*1的砖头去覆盖, ...
分类:
其他好文 时间:
2020-09-17 20:08:46
阅读次数:
22
有时候多个文件同时打开一行tab放不下,该怎么办呢? 一行不行就多行吧... 如下图所示 设置方式: File>Settings>Editor>General>Editor Tabs > Show tabs in one row 取消勾选即可 ...
分类:
其他好文 时间:
2020-09-17 19:49:31
阅读次数:
43