re: 将biztalk流程发布部署到非本地机器 无为而为-凡事从积极的态度做起 2008-06-21 21:24
你的问题可能和Biztalk的版本有关,Biztalk在安装部署方面一直都在不断改进,所以不同版本可能支持的方式不一样。
@sleepy00
错误说明不是很清楚了吗?
“Team Foundation Server 试图在域控制器上安装 "
应该就是说TFS 不能安装在域控制器上吧
这一点在安装说明文件里面应该也提到了。
呵呵,我也谈不上专家。
我只能提醒您,留意一下 TRADOS的版本和Office的版本吧,
是不是和你重装之前的完全一样,如果不一样很有可能会有些不兼容吧。
re: SQL 2005 分析服务基于角色的动态授权 无为而为-凡事从积极的态度做起 2008-03-27 15:52
@wangdh
帐号属性是我们设计字段,所以能够对应到几个帐号依赖于我们设计的结构。
如果不是设计为属性,而是一个儿子级的维度那就可以有多个了
@王晓成
添加成功。
@xiaomoon
需要cnblogs的ID才能加入
re: SQL 2005 分析服务基于角色的动态授权 无为而为-凡事从积极的态度做起 2008-03-17 15:10
re: SQL 2005 分析服务基于角色的动态授权 无为而为-凡事从积极的态度做起 2008-03-17 15:04
@wangdh
父子结构应该也是可以的。
这里好像有个例子:
http://blogs.technet.com/paolt/archive/2005/02/17/375497.aspx
Parent child dimensions in Analysis Services 2005
Recently I worked with a customer in the sales force reporting area. The problem is very common: there is a hierarchical sales organization, and every sales manager needs to see sales performance of his own sales network. Changing dimension of type 2 is a nice variation of the problem (in that each sales manager sees the performance of a salesman only for the period of time he reported to him). We worked with parent-child dimensions in Analysis Services, and we used Reporting Services to distribute customized reports to every salesman.
Parent child dimensions in Analysis Services are regular dimensions where an attribute exists with the type properties set to parent. That attribute drive an unbalanced hierarchy inside the dimension. The attribute with key type still exists to keys the dimension elements. Also attributes of regular type can exists normally.
The parent attribute has some interesting capabilities, beside the fact that it allows to browsing the dimension by sales organization structure, as expected. A member of the parent attribute and the corresponding member of the key attribute are not idempotent, but they share member properties. This means that the parent attribute contributes to define the cube space, where each member of the parent attribute (not surprisingly) exists with any member of the key attribute being one of its children (at any level). For example consider the following salesman table supporting the Salesman dimension:
Key Parent Name Region Alias
------------------------------------------------------------------
1 1 Bob CA domain\bob
2 1 Steve CA domain\steve
3 2 Charles CA domain\charles
4 4 Frank WA domain\frank
5 4 Miriam WA domain\miriam
Salesman.Parent.[Level 3].&1 (Bob as an individual in the parent child hierarchy) exists only with Salesman.Salesman.Salesman.&1 (Bob as an individual). Salesman.Parent.[Level 2].&1 (Bob as a parent in the parent child hierarchy) exists with Salesman.Salesman.Salesman.&1, Salesman.Salesman.Salesman.&2, Salesman.Salesman.Salesman.&3 (Bob, Steve and Charles as individuals).
What it is more interesting is that any member in the parent attribute has access to member properties in the key attribute. For example the following expression is valid:
Salesman.Parent.Currentmember.Properties("Region") = "Seattle"
I have found member properties extremely useful in a couple of cases.
First of all you can implement cell level security using a formula similar to the following:
IsAncestor (filter (Salesman.Parent.Members, Salesman.Parent.Currentmember.Properties("Alias")=USERNAME).Item(0), Salesman.Father.Currentmember).
That formula first filters the parent child dimension by the alias member property, getting the parent member corresponding to the current logged user account, then it returns the rooted tree (there are a couple of exceptions on this that need to be checked out in the expression, but the formula is generally valid). I didn't test it with dimension security, but it should work.
Member prop are also very useful with Reporting Services, when you want to include sales information about a sales manager into the report, along with some details. Trouble is that the sales manager has aggregated sales information associated with him, then if you drag attribute information into the report (i.e. Region) what you get are sales information by that attribute. Instead you want the aggregated sales information for that sales manager and the region where the sales manager has customers in. This is a typical reporting need, and the only way I have found to do that is accessing the sales region as a member prop from the sales manager.
Published Thursday, February 17, 2005 8:00 PM by paolt
re: SQL 2005 分析服务基于角色的动态授权 无为而为-凡事从积极的态度做起 2008-03-17 14:34
授权的关键点在于构造一个表达式,比如上面使用的:
[产品].[账号].currentmember=StrToTuple("[产品].[账号].&["+LCase(UserName)+"]")
你可以根据你的结构构造相应的表达式。
只要你可以构造表达式,这个结构是可以任意设计的。
re: SQL 2005 分析服务基于角色的动态授权 无为而为-凡事从积极的态度做起 2008-03-03 11:39
@wangdh
能说具体点吗
@lank
现在不用安装“ASP.net Application RC1”
直接安装VS 2005 SP1就可以了。
@Aweto
这两个问题应该都是有选项可以设置,请参考freetextbox.com的选项说明吧
理论上,Web的远程桌面和Windows带的是一样的功能。
远程桌面没有磁盘的映射功能。
但是可以映射本地的打印机串口等设备到远程
sql server sp2已经发布,安装sp2就可以解决问题。
@weny
把系统模板恢复成最初的版本看还能不能运行正常?
@phric
添加失败
@侯德军
@fantasy_kli
添加成功
@openkava
这个Web上是一个Active控件,是在本地运行的,而不是在外部网运行的。
如果你在主机上输入 127.0.0.1访问到的是你本机,而不是Web服务器。
@黑糊糊
微软网站提供使用版本,
至于D版,到处都有啊
@Nina
应该是ASP.Net的安全验证原因,
只要有包含有HTML代码都会提出警告,
只要在页面标记里面添加 validateRequest="false" 就可以避免警告。
可以参考:
http://blog.csdn.net/DanceFire/archive/2007/04/11/1560171.aspx
@ruslan
不能直接使用,但是WSS2.0的网站可以升级到WSS3。(不过我没有试过,不知道升级的效果怎么样)
@yier
抱歉,可能还是一楼的那个问题引起的,
因为前一阵服务器重装了,现在已经修正。
@肖斯沃勒
我现在主要使用word直接发布文章到博客,
但是cnblogs的博客好像不支持上传图片?
所以,我有时候没有同步。
@Chr!s
可能是你的IE设置问题。
试着把你的网站加入到信任网站试试看。
@Basten
联系微软的人叫他把你重设回原来的界面吧
@reggielee
门户网站的用户和TFS的用户没有关系,要另外单独授权
但是,你当时是使用那个用户安装的,那个用户是有权限登录的。
@wrafe
Shell脚本,类似于DOS命令。
直接保存为.cmd文件就可以运行。
@Nick-pccai
我没有试过,你不妨试试,呵呵
等待你的结果。
就是文章介绍的:
修改Web.Config
<SafeControl Assembly="MyWebpartLib,Version=1.0.0.0,Culture=neutral,PublicKeyToken=9f4da00116c38ec5" Namespace="MyWebpartLib" TypeName="*" Safe="True" AllowRemoteDesigner="True" />
<trust level="Full" originUrl="" />
@初学者
“添加webpart时,中间没出错”是什么意思,
只要把DLL copy到bin目录,并且修改了WebConfig文件就应该可以/_layouts/NewDwp.aspx中看到。
@lubosun
可以在这里下载:
http://www.cleocn.com/Lists/Posts/Post.aspx?ID=18文章的最下面,有相关文件下载的链接.
@Nick-pccai
多谢捧场.
@Blueicetodo
try跟踪看看有没有例外抛出?
有BBS,叫做讨论版.
有人发布过一个比较功能强的BBS,在
http://www.codeplex.com/上面,不过好像是针对SharePoint v2的.
@大奔
很不要意思骚扰了你,我已经修正了这个问题。
谢谢你的反馈和支持。