Skip to content

Instantly share code, notes, and snippets.

@srkirkland
srkirkland / putonglasses.txt
Created May 6, 2016 18:48 — forked from cheeaun/putonglasses.txt
put on glasses unicode
(•_•)
( •_•)>⌐■-■
(⌐■_■)
declare @el table
(
new_id int identity(1,1),
old_id int
)
-- transfer the information from the time/expense sheets
begin transaction
begin try
IF object_id('tempdb..#records') IS NOT NULL
BEGIN
DROP TABLE #records
END
CREATE TABLE #records
(
new_id int IDENTITY(1,1),
old_id int,
[type] char(1),
@srkirkland
srkirkland / TransferFSNEPtoFSNEP2.sql
Created April 27, 2010 22:49
FSNEP Data Export Script
IF object_id('tempdb..#records') IS NOT NULL
BEGIN
DROP TABLE #records
END
CREATE TABLE #records
(
new_id int IDENTITY(1,1),
old_id int,
[type] char(1),
using System;
using System.Web.Mvc;
using UCDArch.Core.PersistanceSupport;
using UCDArch.Web.Controller;
using UCDArchTemplates.Models;
using UCDArch.Web.Helpers;
namespace UCDArchTemplates.Controllers
{
/// <summary>