Upgrade Visual Studio 2005 Project to 2012
a. Launch VS2012 as an Administrator b. Switch the source control plugin to Vault Classic c. Checkout each project file using Vault Client d. Open the VS2005 project with VS2012, …
Determine if Eclipse is 32-bit
To determine if Eclipse is 32-bit: Help -> About Eclipse -> Installation Details -> tab Configuration In the opening lines, under the line “-arch” you can have “x86_64” or “x86”
Visual Studio 2012 Unnecessary IIS Express Instances
To stop IIS Express debugging instances from popping up when a project is developed, do the following. a. Select one of the web projects and press F4 to open the …
Visual Studio 2010 Error “VSTS for Database Professionals Sql Server Data-tier Application…”
This error occurred when installing / uninstalling SQL Server database components.
Mercury EFI 4 Stroke 60 HP: Fuel Filter, Oil Change and Gear Case Lubrication Change
Step 1: Fuel filter Prior to doing this, you may want to drain the fuel that is in the lines to the engine. Even when I did this, I still …
Expand VMWare Drive Image
These instructions assume we have a Windows Server called “vm1” that we need to expand the “c” drive. 1). Remove any snapshots from vm1. This method will not work with …
Datetime variables TSQL
Syntax for a TSQL date time variable 1234567DECLARE @START_DATE DATETIME DECLARE @END_DATE DATETIME SET @START_DATE = ’09/21/2012 00:00:00′ SET @END_DATE = ’09/21/2012 23:59:59′ SELECT * FROM TABLE WHERE POSTINGDATE >= …
Select Tables with Row Count
TSQL 123456–all tables and rowcount (in descending order by count) select ‘[‘+SCHEMA_NAME(t.[SCHEMA_ID])+’].[‘+t.NAME+’]’ AS [fulltable_name], SCHEMA_NAME(t.[SCHEMA_ID]) as [schema_name],t.NAME as [table_name] ,i.rows from sys.tables t INNER JOIN sysindexes i ON (t.object_id = …
Sort Array by Date C#
Sort an array of objects by date Given the class below: 1234567891011121314 public class MyClass { public int id; …
