posted @ 2018-09-16 13:30 yiyishuitian 阅读(902) 评论(0) 推荐(0)
摘要:
https://docs.microsoft.com/zh-cn/previous-versions/dynamicscrm-2016/deployment-administrators-guide/hh699726%28v%3dcrm.8%29 365没有直接的安装包,365是从2016升级所得。 阅读全文
摘要:
CRM插件注册一般有三种方式, 1 database 2 disk 3 GAC 如果注册到disk 应该在会在 C:\Program Files\Microsoft Dynamics CRM\Server\bin\assembly 文件夹下, 如果注册到database 可能会找不一,这里如果想查看 阅读全文
posted @ 2018-09-07 15:18 yiyishuitian 阅读(163) 评论(0) 推荐(0)
摘要:
一般需要开发新功能时,企业或者软件公司往往会先从生产环境克隆出一台测试用系统。 开发人员会在测试系统中对功能进行开发或者测试。 这时当新功能开发和测试完成之后,需要将新的解决方案导入生产环境。 导入时需要注意以下几点: 阅读全文
posted @ 2018-08-30 15:32 yiyishuitian 阅读(271) 评论(0) 推荐(0)
摘要:
CREATE VIEW [dbo].[Split_BusinessUnit] AS WITH tt AS ( SELECT BusinessUnit.BusinessUnitId , BusinessUnit.BusinessUnitId zz_id , BusinessUnit... 阅读全文
posted @ 2018-08-30 11:22 yiyishuitian 阅读(1259) 评论(0) 推荐(0)
摘要:
CREATE view [dbo].[V_stringmap] as SELECT DISTINCT Entity.Name as tablename,StringMap.AttributeName as columnname,StringMap.AttributeValue,StringMap.Value from Entity join StringMap on... 阅读全文
posted @ 2018-08-30 11:18 yiyishuitian 阅读(280) 评论(0) 推荐(0)
摘要:
CREATE VIEW v_entity_attribute AS SELECT EntityView.Name AS EntityName, LocalizedLabelView_1.Label AS EntityDisplayName, AttributeView.Name AS AttributeName, LocalizedLabelView_2.Label... 阅读全文
posted @ 2018-08-30 11:17 yiyishuitian 阅读(465) 评论(0) 推荐(0)
摘要:
1 准备数据 及 涉及到的几个设置 SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED --设置事务会话的隔离等级(默认值为 READ UNCOMMITTED ),只对当前进程有效(就是说只对打开SSMS当前查询窗口有效,再打开另一个查询窗口就无效了) 阅读全文
posted @ 2018-08-24 14:10 yiyishuitian 阅读(187) 评论(0) 推荐(0)
摘要:
业务场景:需要对grid表格中指定列显示tooltip. html: js : 阅读全文
posted @ 2018-08-14 14:54 yiyishuitian 阅读(186) 评论(0) 推荐(0)
摘要:
然后再按一下tab键,焦点就会在 update上了。然后再回车。 阅读全文
posted @ 2018-08-08 10:40 yiyishuitian 阅读(152) 评论(0) 推荐(0)