上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 42 下一页
摘要: Auditable/Traceable Repeatable/Ease of use Adaptable The relationship between hubs is always many to many. Hub&Link&Satelite. 阅读全文
posted @ 2017-09-25 14:34 爱知菜 阅读(10) 评论(0) 推荐(0) 编辑
摘要: binary/varbinary 在显示的时候以16进制显示, 比如 "0x010f" 注意显示的结果的位数必定是偶数个 比如"0x11","0x22CC", 不会有 "0x123", 因为varbinary的单位是字节, 而一个字节就是两位的16进制数. 下面两个函数可以把binary/varbi 阅读全文
posted @ 2017-09-22 13:29 爱知菜 阅读(22) 评论(0) 推荐(0) 编辑
摘要: output的dataset会depend on 其时间跨度内的input dataset的ready 只有其时间跨度内 input的dataset的slice都完成了, 它才执行 client.Pipelines.CreateOrUpdate(resourceGroupName, dataFact 阅读全文
posted @ 2017-09-11 21:56 爱知菜 阅读(22) 评论(0) 推荐(0) 编辑
摘要: Mondrian 从3.6版本开始就不提供war文件了, 只提供一个jar文件了, 理由是团队想更专注于OLAP引擎本身, 而UI的东西有很多其他开源的项目了, 所以不再提供这方面的东西, 详见:点击打开链接 目前比较流行的UI工具包括: Pivot4J 和 Saiku. 这里是用Pivot4J P 阅读全文
posted @ 2017-09-05 16:06 爱知菜 阅读(63) 评论(0) 推荐(0) 编辑
摘要: 先装Java 这里不再赘述 下载Derby 配置环境变量: 先定义%DERBY_HOME%为derby下载后的解压目录 在Path加入:%DERBY_HOME%\bin 在CLASSPATH加入:%DERBY_HOME%\lib \derby.jar;%DERBY_HOME%\lib\derbycl 阅读全文
posted @ 2017-09-05 15:31 爱知菜 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 比如有两个用户A 和 用户B 根据需求A用户有浏览某张表的权限, 而对B, 只想让他有浏览表中部分列部分行的权限 一个做法就是设置不让B访问表, 但是给B执行某个存储过程的权限, 通过这个存储过程B能够访问表 代码如下: CREATE PROCEDURE [dbo].[somesp] AS BEGI 阅读全文
posted @ 2017-09-04 15:01 爱知菜 阅读(15) 评论(0) 推荐(0) 编辑
摘要: Data Grid: The Data Grid step allows you to enter a static list of rows in a grid. This is usually done for testing, reference or demo purposes. Calcu 阅读全文
posted @ 2017-09-01 14:22 爱知菜 阅读(121) 评论(0) 推荐(0) 编辑
摘要: CDC 常用SP: EXEC sys.sp_cdc_enable_db; EXEC sys.sp_cdc_enable_table @source_schema= 'dbo', @source_name = 'Patient',@role_name = null ; --specify databa 阅读全文
posted @ 2017-08-30 17:24 爱知菜 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 将两张表要 join 的几个字段组合成一个 varchar类型的 字符串, 放到临时表里, 临时表可以带有索引, 再去join CREATE TABLE #Remove_Plan_Detail (ID BIGINT IDENTITY(1,1) PRIMARY KEY NOT NULL ,Plan_D 阅读全文
posted @ 2017-08-30 15:03 爱知菜 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 一些背景知识: @@SPID当前连接到数据库的session id sys.dm_exec_requests https://docs.microsoft.com/zh-cn/sql/relational-databases/system-dynamic-management-views/sys-d 阅读全文
posted @ 2017-08-18 19:20 爱知菜 阅读(16) 评论(0) 推荐(0) 编辑
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 42 下一页