Please read Somasegar’s blog where he talked about the past 10 years and how Visual Studio has evolved.
http://blogs.msdn.com/somasegar/archive/2007/03/26/visual-studio-turns-10.aspx

If you have faced problem and getting CRC failed error while extracting March 2007 Orcas CTP .rar files, then you must be following this link. Which has been published on 28-Feb-07 contains 7 .rar files.
http://www.microsoft.com/downloads/details.aspx?FamilyId=281FCB3D-5E79-4126-B4C0-8DB6332DE26E&displaylang=en>

You must download corrcet version from this link
http://www.microsoft.com/downloads/details.aspx?familyid=B533619A-0008-4DD6-9ED1-47D482683C78&displaylang=en date published 27-Feb-07 contains 9 .rar files and it will extract .vhd successfully.

 

Orcas March 2007 CTP is available.

http://www.microsoft.com/downloads/details.aspx?FamilyID=B533619A-0008-4DD6-9ED1-47D482683C78&displaylang=en

Microsoft is developing a new suite of tools (Grava) that will allow developers and publishers of educational software, as well as educators themselves, to create their own instructional programs easily and intuitively.

Grava ScreenShots

To be notified when Grava CTP is released

TR Work Published

January 25th, 2007 | Posted by Vidya Vrat in Visual Studio - (0 Comments)

I have done Technical Review for Apress Inc’s book on
C# 2005 Databases.
You can read about me on “About the Technical Reviewer” page in the printed version of the book.

Visual Studio 2005 SP1

January 19th, 2007 | Posted by Vidya Vrat in Visual Studio - (0 Comments)

398 BUGS has been fixed in the form of SP1 of VS 2005.

Bugs Fixed in Visual Studio 2005 Service Pack 1

ORCAS – January 2007 CTP

January 15th, 2007 | Posted by Vidya Vrat in Visual Studio - (0 Comments)

January CTP of ORCAS comes with the Virtual PC images,
Download and use them

If you are a LINQ aspirant then here is an e-Book from Apress which I have technically reviewed for Apress Inc.
LINQ for Visual C# 2005

Google Code Search

December 4th, 2006 | Posted by Vidya Vrat in Visual Studio - (0 Comments)

Google has launched a facility for developers to search for code segments.
Google Code Search

Cool isn’t it !!!!

The script below is the original piece of work from the Genius Dr Harivansh Rai Bacchan. It is full of inspiration and motivation.

Deployment is a term which is used for the installation/distribution of software.

Scenario:

ABC Inc has developed a solution to address the customer needs. Database production team is trying to establish a deployment strategy to address the issues they have faced in the past because of not having a process which could identify the considerations while deploying a solution and moreover the production team was not aware of that the deployment process must be tested prior then handing it over to the client. This ignorance caused into failures while clients tried to deploy the solution.

Solution:
In production environment Deployment often defines how the project will actually get to its final destination. Designing a Deployment strategy is a challenging task because unfortunately many projects experience failure when your client tries to actually install and use the application. Such a failure can be catastrophic, because production team has already spent a large amount of time and energy to create the software and the application can’t be used until properly deployed.

Every Deployment strategy must have proper deployment process and associated documentation. As Performing deployment is actually the task of DBA (database administrator). With a well-documented deployment strategy, developers will be able to perform deployments without the need for intervention from DBAs, which some companies do not allow one of the reasons to this is that DBAs has access to the whole system, I.e. they can access disk partition, drives and directories more easily then a developer.

Before building a deployment solution you should also look into the details of which Items would be needed by which tier if application is multi-tier in case. For example, application code, databases, database code, data, logins and other credentials, and additional components such as extended stored procedures which has an important role to play and must be deployed with data tier of application architecture.

If application is designed in a way that it will used among the users then credentials come into the picture, credentials are used for interacting with other systems and the database itself. Then it becomes the prime responsibility of the production team to emphasize on the need to validate that credentials are working as they are expected to be, because it can cause a disaster if wrong credentials (user name/pwd, permissions etc.) are used by a user while seeking information or accessing any other database.

Before you ship any application to the client and he/she continues with the deployment, it becomes very important that the production team have a test plan to test the deployment process thoroughly before shipping the solution to the client. This will ensure that all functionalities of application are working as they are expected. This will certainly help the client to have foolproof solution and will lead towards client satisfaction and no errors will be reported to the production team regarding deployment.

There are various techniques to deploy a database solution on to the client machine few of the common methods of deployment are by using detach/attach, backup/restore and scripting.