会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
ksbk
博客园
首页
新随笔
联系
订阅
管理
2023年11月
SQL Server 备份加密的先决条件
摘要: --1 创建密钥create master key encryption by password = '密钥' --创建证书create CERTIFICATE BackupCertificate_mywith subject=N'sparksoft certificate'--3 备份 证书和密钥
阅读全文
posted @ 2023-11-10 12:42 小小刺猬
阅读(43)
评论(0)
推荐(0)
2023年9月
gridView不触发OnRowCommand
摘要: 不触发OnRowCommand原因 去除 Target="_blank"
阅读全文
posted @ 2023-09-27 18:38 小小刺猬
阅读(34)
评论(0)
推荐(0)
svn 导出所有待部署的文件
摘要: svn show log打开提交历史 导出差异文件,会保留文件层级,使用ps1脚本Remove-Item * -Include *.* -Exclude *.aspx,*.html,*.htm,*.ashx -Recurse -ErrorAction SilentlyContinue根据后缀滤除文件
阅读全文
posted @ 2023-09-22 09:39 小小刺猬
阅读(30)
评论(0)
推荐(0)
2023年8月
【SQL】ROW_NUMBER() OVER(partition by 分组列 order by 排序列)
摘要: select row_number() over(partition by A order by B ) as rowIndex from table A :为分组字段 B:为分组后的排序字段。 table 表的结构 多为: 多人 多条的相关数据。(比如:订单信息) 此条sql语句,多用于对数据进行
阅读全文
posted @ 2023-08-18 10:10 小小刺猬
阅读(181)
评论(0)
推荐(0)
公告