上一页 1 2 3 4 5 6 7 8 9 ··· 15 下一页
摘要: ;with long_queries as ( select top 20 query_hash, sum(total_elapsed_time) elapsed_time from sys.dm_exec_query_stats where query_hash <> 0x0 group by q 阅读全文
posted @ 2021-11-18 10:39 未风 阅读(79) 评论(0) 推荐(0)
摘要: https://www.axure.com/ 阅读全文
posted @ 2021-09-03 13:32 未风 阅读(22) 评论(0) 推荐(0)
摘要: SELECT * FROM A CROSS JOIN SELECT * FROM B WHERE A.A1 = B.B1 阅读全文
posted @ 2021-08-03 09:39 未风 阅读(159) 评论(0) 推荐(0)
摘要: 1 CREATE FUNCTION [dbo].[parseJSON] (@Json NVARCHAR(MAX)) 2 RETURNS @hierarchy TABLE (element_id INT IDENTITY(1, 1) NOT NULL, /* internal surrogate pr 阅读全文
posted @ 2021-06-26 13:40 未风 阅读(677) 评论(0) 推荐(0)
摘要: 1 exec sp_configure 'show advanced options', '1'; 2 go 3 reconfigure; 4 go 5 exec sp_configure 'clr enabled', '1' 6 go 7 reconfigure; 8 exec sp_config 阅读全文
posted @ 2021-06-10 10:00 未风 阅读(143) 评论(0) 推荐(0)
摘要: 1、通过软件工具SoapUI获取请求体和响应体 第二步c#调用 1 public XmlDocument QueryPostWebService(String URL, String MethodName, string inputPars, string userName, string pass 阅读全文
posted @ 2021-05-26 11:59 未风 阅读(1201) 评论(0) 推荐(1)
摘要: 最近需要对接SAP接口,发现几个小问题总结下 1、RFC调用使用WEB程序部署时容易出现错误 IDestinationConfiguration ID = new RFC_SetUp(); RfcDestinationManager.RegisterDestinationConfiguration( 阅读全文
posted @ 2021-04-13 16:20 未风 阅读(358) 评论(0) 推荐(0)
摘要: 1、最近在开发一个财务的报表,非常复杂,行列各种套公式,开发完总结几个方法。 1 /// <summary> 2 /// 设置单元格样式 3 /// </summary> 4 /// <param name="ranges"></param> 5 /// <param name="IsBold">字 阅读全文
posted @ 2021-02-26 11:17 未风 阅读(170) 评论(0) 推荐(0)
摘要: 1 string fileName = AppDomain.CurrentDomain.BaseDirectory + "1.xls"; 2 Excel.Application xApp = new Excel.ApplicationClass(); 3 xApp.Visible = false; 阅读全文
posted @ 2021-02-23 08:29 未风 阅读(1045) 评论(0) 推荐(0)
摘要: rzc generate exited with code -2147450730. Sunway.Ginkgo.Web.Mvc C:\Users\abc\.nuget\packages\microsoft.aspnetcore.razor.design\2.2.0\build\netstandar 阅读全文
posted @ 2021-02-08 11:47 未风 阅读(2021) 评论(0) 推荐(1)
上一页 1 2 3 4 5 6 7 8 9 ··· 15 下一页