13 April 2010 0 Comments

Get the EDT realation of particular table

static void getFieldRel(Args _args) {     int i = 1;     DictField dictField;     DictRelation DR = new DictRelation(Tablenum(InventTable));     DictTable Dict = new DictTable(Tablenum(InventTable));     DictTable Formref; ;     while(i <= Dict.fieldCnt())     {         if(DR.loadFieldRelation(dict.fieldCnt2Id(i)))         {         Formref = new DictTable(DR.loadFieldRelation(dict.fieldCnt2Id(i)));         info(“Table Name ” + Formref.name());         }         i +=1;     } pause; }

11 April 2010 0 Comments

Взаимодействие MATLAB и HPC Server 2008

Как известно, Windows HPC Server 2008 предоставляет широкие возможности для интеграции с наиболее популярными вычислительными пакетами. После не всегда приятных опытов общения с нативным Job Manager от MATLAB, во время которых без какой-либо логики или причины worker-ы на узлах зависали либо теряли подключение к Job Manager на головном узле, было решено предпринять попытки связать MATLAB с Job Manager из HPC Pack 2008 (кроме этого, за пределы данной статьи было решено вынести взаимодействие MATLAB с популярной системой очередей Torque).

9 April 2010 0 Comments

i vs. I

i just started this blog and my wife replies to me: you are always so gramatically correct and you write your “i” that way? I was surprised..

7 April 2010 0 Comments

Fire Drills: Practice Restoring a Database

Restoring a database is an essential part of any DBA’s job running Teamcenter. If you cannot restore a database, you will almost certainly lose your job. Thus, the topic of restoring a database seems well worth digging into more deeply.

3 April 2010 0 Comments

Trick in Windows Azure deployment

If you see web roles or worker roles are going back and forth between initializing-busy-stopping, the first thing you should check is the copy local attribute of the assemblies. All assemblies that aren’t part of .NET framework have to be set as Copy Local=True so that they would be included in your deployment package. Otherwise they aren’t deployed to Azure ending up the problem above

2 April 2010 0 Comments

VS2010 Launch Tour

I’m going on a whirlwind tour of the south central United States in a couple of weeks. My field partner is setting up a bunch of meetings with user groups and companies.

2 April 2010 0 Comments

PowerPivot at the Office 2010 Roadshow for IT Pros

If you haven’t seen PowerPivot yet, there is a great opportunity at the Office + SharePoint 2010 Roadshow for IT Pros coming to Dublin, Galway, Cork and Belfast. We have been working on making an Irish Centric Demo of PowerPivot along with the great new features in Reporting Services such as map based reports

31 March 2010 0 Comments

MSXML 4 SP2 goes out of support in April

Learn more about SP2 going out of support on the XML team blog. MSXML4 SP3 has been around for over a year now and has had a very positive reception. Get it! Share the good news with your friends! Of course, we’re still encouraging everyone to migration to MSXML6 whenever possible, as that’s our best-by-default implementation

27 March 2010 0 Comments

Major updates to the Connected Health Platform guidance and tools

Some of you may have noticed already that we have made a major updates to the Microsoft Connected Health Platform (CHP) area on the Health ICT Resource Center.  The update affected the main CHP Silverlight based navigation UI and the guidance, tools and solution accelerator navigation page.  The main CHP (Silverlight) page allows you to look at challenges, concerns, or issues from the perspective of a CEO, a CIO (or ICT Director) and a Care Professional.  The UI will help you navigate to specific offerings (architecture, design and deployment guidance, tools or solution accelerators) that ICT departments in health organizations or partners can use today to build an Optimized Health ICT Infrastructure for the organization they serve. These CHP offerings are built on top of a solid foundation of the Microsoft Infrastructure Optimization models and tools and further specialized for the health domain.  They have also been used and validated in many solutions and deployments by our customers and partners worldwide. The updates include various upgrades to existing guidance documents and tools and the following new guidance documents: Microsoft Office Communications Server Design Guide System Center Configuration Manager 2007 (SCCM) – To replace the guidance we had on Systems Management Server 2003 Deployment Guide Software Distribution guidance Software Update Management guidance Operating System Deployment Guide System Center Operations Manager 2007 R2 Guide The following table provides detailed view of the changes included in this update: teddy bachour senior industry technology strategist, ww health http://www.microsoft.com/healthict

26 March 2010 0 Comments

Bing to Recognize Earth Hour

On Saturday, March 27 th from 8:30pm Eastern Daylight Time to 9:30pm Pacific Daylight Ti me, the  Bing homepage will be dark in support of Earth Hour . Created by World Wildlife Fund , Earth Hour asks people to participate and demonstrate their concern about global climate change with a simple gesture of turning off all non-essential lights and electronics.

24 March 2010 0 Comments

Overwriting the service root URI in Wcf Data Service

Suppose you are hosting a WCF Data Service on a particular URL, but for some reason you’d like the consumers of your service to hit another URI – perhaps an IIS re-write, or a cookieless session. You can do this via setting one of the custom properties in the OperationContext: OperationContext.Current.IncomingMessageProperties[" MicrosoftDataServicesRootUri "] = serviceUri; You need to do this per instance of the data service, so it makes a lot of sense to do it in the service class’ constructor. Normally, WCF data service will try to resolve the absolute service URI by asking the underlying host.

22 March 2010 0 Comments

Configuring the tempdb Database—Part 1

Besides the databases that ENOVIA V6 is using in SQL Server, SQL Server itself has several system databases. The tempdb system database is available to all users who are connected to the instance of SQL Server