摘要:
# 可查看定义(design) ``` USE [DB Name] GRANT VIEW DEFINITION ON SCHEMA::[dbo] TO [vvull] GO ``` # 可执行(exec) ``` USE [DB Name] GRANT EXECUTE ON SCHEMA::[dbo 阅读全文
摘要:
# Visual Studio - Xamarin 1. 在Visual Studio存档分发,生成**x.apk**和**vv.keystore** 2. cmd定位到**x.apk**和**keystore**所在文件夹 3. 修改签名 ```C:\Users\xxx\AppData\Local 阅读全文
摘要:
> [“800703fa 尝试对注册表项执行非法操作”错误](https://learn.microsoft.com/en-us/sharepoint/troubleshoot/administration/800703fa-illegal-operation-error) # 原因 管理员使用服务 阅读全文
摘要:
> [解决Excel 互操作错误"检索COML类工厂中 CLSID为 {00024500-0000-0000-C000-000000000046}的组件时失败,原因是出现以下错误: 80070005"](https://www.cnblogs.com/goyier/p/3203623.html) > 阅读全文
摘要:
> [How to Run SSMS as a different user](https://www.sqlserver-dba.com/2021/11/run-ssms-as-a-different-user.html) 以其他用户身份运行是可用的 它实际上是可用的,但不是右键单击,而是使用 S 阅读全文
摘要:
> [C# Log4net的使用](https://zhuanlan.zhihu.com/p/518145809) # 通过NuGet直接搜索log4net进行安装 ![](https://img2023.cnblogs.com/blog/1635494/202306/1635494-2023061 阅读全文
摘要:
因为IT说SQL Server兼容级别高影响性能,所以改用XML OPENXML (SQL Server) OPENXML (Transact-SQL) 阅读全文
摘要:
通过SSIS的“查找”组件进行不同数据源之间数据的合并操作 阅读全文
摘要:
类库 using Microsoft.SqlServer.Server; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net; using Syste 阅读全文
摘要:
Sqlserver 中 CrossApply 和 inner join 的区别 cross apply和inner join有很多相同处,都是为了联表查询数据,而且取两张表之间的交集,不同在于,cross apply可以在右表中加入左表的字段作为条件。 阅读全文