使用SSMS 2008客户端工具逆向生成了创建链接服务器的脚本时,在测试环境执行是报如下错误:'(null)' is an invalid product name. USE [master] GO IF EXISTS (SELECT srv.NAME            FROM   sys.servers srv            WHERE  srv.server_id != 0                   AND srv.NAME = N'MES_DB_LINK_TEST'…
场景:mysql 给表新增parent_id列,并设置为not null,保存时报错Invalid use of NULL value. 报错原因:因为已存在的数据的parent_id列为null,与not null的设置冲突. 解决办法:新增parent_id列后,先update已存在数据的parent_id为默认值,例如-1.然后修改该列的not null属性,保存成功.…
SQL Server方面的博客文章也陆陆续续的写了不少了,顺便也将这些知识点整理.归纳一下下.方便自己和他人查看. MS SQL 数据类型 三大数据库对比研究系列--数据类型 MS SQL 表和视图 数据库表的基本信息,你知道吗? 数据查询表,列名对比 MS SQL 建表SQL的脚本 查看数据库.表.索引的物理存储情况 慎用SELECT INTO复制表 MS SQL 索引约束 [翻译] 聚集索引表 VS 堆表 SQL SERVER 中is null 和 is not null 将会导致索引失效吗…
Retrieving Product Information In the first part of the purchase process, your app retrieves information about its products from the App Store, presents its store UI to the user, and then lets the user select a product, as shown in Figure 2-1. 首先,购买产…
/* item.jd.com Compressed by uglify Author:keelii Date: 2014-08-05 6:52:26 [PM] */ function insertScript(t, e) { var i = document.getElementsByTagName("head")[0], s = document.createElement("script"); if (s.setAttribute("type"…
void *thread1() ], NULL, thread1, NULL)) != ) 提示:invalid conversion from 'void* (*)()' to 'void* (*)(void*)' ============= 改成: void *thread1(void *) void* (*)(void*): (*)表示这里需要一个函数指针, (void*)表示参数类型需要为void* 参考: http://groups.google.com/group/comp.prog…
将集合对象List<Product>转换为Map key = Product对象的sku value =Product对象 1 List<Product> products = productService.queryProductList(productQuery, null); 2 Map<String, Product> productMap = products.stream() 3 .collect(Collectors.toMap(Product::getP…
In my opinion, if you are using WPF or Silverlight you should be using the MVVM design pattern. It is perfectly suited to the technology and allows you to keep your code clean and easy to maintain. The problem is, there are a lot of online resources…
What is Google Analytics Google Analytics is a Google official analytics tool that is primarily used to help webmasters understand the data on the site and improve the quality of the site. The Google Analytics Admin action page, as follows: From the…
ASP.Net Core的基本配置 .在VS中调试的时候有很多修改Web应用运行端口的方法.但是在开发.调试微服务应用的时候可能需要同时在不同端口上开启多个服务器的实例,因此下面主要看看如何通过命令行指定Web应用的端口(默认5000) 可以通过设置临时环境变量ASPNETCORE URLS来改变默认的端口.域名,也就是执行 dotnet xxx.dll之前执行set ASPNETCORE_URLS=http://127.0.0.1:5001来设置环境变量. 如果需要在程序中读取端口.域名(后续…