extensibility

One or multiple fact tables?

╄→гoц情女王★ 提交于 2019-12-06 02:49:39
问题 I am trying to build a data mart. I have lot of dimensions, and couple of measures - facts. Every measure is connected to all dimensions in term of business. There is the standard approach that there will be one big fact table with all measures. But I have an idea: What If I have separate fact tables for each measure? What it will do with database performance, solution extensibility etc? EDIT::: there will be huge solution based on olap cubes in really complex corporate environment. So the

Visual Studio Remote Debugging Extensibility

这一生的挚爱 提交于 2019-12-05 19:56:22
I'm trying to attach to a remote machine with code similar to the following: Debugger2 db (Debugger2)dte.Debugger; Transport trans = db.Transports.Item("Default"); Process2 proc2 = (Process2)db.GetProcesses(trans, "MACHINENAME").Item("SERVICENAME"); proc2.Attach2(); I've gotten it to work by logging on through remote desktop and manually starting the debugger, but I have to stay logged in. The problem is, I don't want to stay logged into the remote machine. Is there a way to automatically launch the debugger, similar to what happens when I attach through the IDE? You could wrap your debugging

Building an extension framework for a Rails app

蹲街弑〆低调 提交于 2019-12-05 17:49:20
问题 I'm starting research on what I'd need in order to build a user-level plugin system (like Wordpress plugins) for a Rails app, so I'd appreciate some general pointers/advice. By user-level plugin I mean a package a user can extract into a folder and have it show up on an admin interface, allowing them to add some extra configuration and then activate it. What is the best way to go about doing this? Is there any other opensource project that does this already? What does Rails itself already

IRibbonExtensibility GetCustomUI not called

情到浓时终转凉″ 提交于 2019-12-05 15:40:21
I'm developing a shared add-in for Outlook. One of my customers is experiencing trouble on his machine, he does not see my add-in buttons/ui in the main window ribbon. After exploring his environment and my logs I noticed that the function "GetCustomUI" of interface IRibbonExtensibility is not being called in his environment. I'm not sure what can be the cause for the different behavior, why doesn't Outlook call the GetCustomUI on the customer machine? Also - Is it possible to initiate a call to this method by myself? or maybe refresh the ribbon so it will call GetCustomUI? If anyone has an

Best (free) way to store data? How about updates to the file system?

丶灬走出姿态 提交于 2019-12-05 11:55:08
I have an idea for how to solve this problem, but I wanted to know if there's something easier and more extensible to my problem. The program I'm working on has two basic forms of data: images, and the information associated with those images. The information associated with the images has been previously stored in a JET database of extreme simplicity (four tables) which turned out to be both slow and incomplete in the stored fields. We're moving to a new implementation of data storage. Given the simplicity of the data structures involved, I was thinking that a database was overkill. Each

CouchDB - share functions across views, across design documents, across databases

有些话、适合烂在心里 提交于 2019-12-05 06:20:48
问题 Ok, here's the thing. I have a good JS background, had my share of JS in the past, and have lots of cool bare-bones tools I take with me from project to project that act like a library. I'm trying to formulate work with CouchDB. Now, after getting used to luxury of cool tools that you wrote and simplify the language for you - I find it a little frustrating to write many things in bare-bones manner. I'm looking for a way I can load to the database context a limited, highly efficient and

Architecture for extension/plugin communication

試著忘記壹切 提交于 2019-12-05 00:11:30
问题 Once the problem of loading plugins is solved (in .NET through MEF in out case), the next step to solve is the communication with them. The simple way is to implement an interface and use the plugin implementation, but sometimes the plugin just needs to extend the way the application works and there may be a lot of extension points. My question is about how to deal with that extension points. I've seen different ways of doing that but I'm not sure of the pros and cons of each one and if there

Visual Studio Extensibility, Programmatically Creating A Project

一笑奈何 提交于 2019-12-04 21:58:44
I am attempting to programmatically add a test project to a solution. However when the code below executes I receive a File IO exception on the line "vhaSolution.GetProjectTemplate("TestProject.zip", "Csharp")". The error indicates that "he language specified is not supported by any of the installed packages". Does anyone have any idea what could be causing this? public enum TestProjectType { Unit, Acceptance, Integration } public static void CreateTestProject(string fullyQualifiedSolutionFileName,string projectName,TestProjectType testProjectType) { #region Argument Validation if (String

Source Control in Visual Studio Isolated Shell

匆匆过客 提交于 2019-12-04 20:34:54
I am developing an Isolated Shell that caters to " designers/special content creators " performing specific tasks, using the Shell. As they operate on files, they need to be able to use TFS for source control. This is mainly due to the fact that Developers will also operate on the same files from TFS but using Visual studio 2008. After looking and searching I still could not find Team Explorer to be available to Shell. Asking on MSDN forums, lead me to the answer that "this is not supported yet in the Isolated Shell". Well, then the whole point of giving away a shell is not justified, if you

Writing a Visual Studio extension for a custom designer

给你一囗甜甜゛ 提交于 2019-12-04 19:49:10
问题 So, I've got something I want to try out. The idea is to have a visual designer that works as a Visual Studio Extension, I want to be able to drag out event handlers and wire up behaviors, anyone who's ever played with the warcraft III script editor will have a pretty good idea what I'm wanting to do. Is this kind of thing readily handled in the visual studio extensibility tools? If so where should I start looking to learn how to do this? 回答1: It's absolutely possible using the Visual Studio