- .Net Framework 3.5
- .Net Framework 4.5
- Internet Information Services
- Web Management Tools
- IIS 6 Management Compatibility
- IIS Management Console
- World Wide Web services
- Web Management Tools
- Application Development Features
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- 1. Create New tables with additional column targeting to table data is being copied from. | |
-- [SocialInteraction].[StatusOutboxId] is primary key value from [StatusOutbox].[StatusOutboxId]. | |
-- [SocialInteraction_Service].[UserTenantSocialAuthStatusOutboxId] is primary key value from [UserTenantSocialAuth_StatusOutbox].[UserTenantSocialAuth_StatusOutboxId] table. | |
-- 2. Copy data from 1-st table | |
INSERT INTO SocialInteraction | |
([TenantId] | |
,[UserId] | |
,[Message] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- from: http://sqlserverplanet.com/tsql/sql-server-for-each-row-next | |
SELECT | |
RowNum = ROW_NUMBER() OVER(ORDER BY CustomerID) | |
,* | |
INTO #Customers | |
FROM SalesLT.Customer | |
DECLARE @MaxRownum int | |
SET @MaxRownum = (SELECT MAX(RowNum) FROM #Customers) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Linq; | |
using NUnit.Framework; | |
/// <summary> | |
/// Write a function that takes three integer lengths corresponding to the sides of a triangle, and returns the type of triangle (eg, Equilateral, Isosceles, etc) that can be created out of those values. | |
/// You must handle the following cases: | |
/// - No triangle may be formed from those 3 lengths | |
/// - Any invalid parameters passed in | |
/// </summary> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Automobilinių terminų sutrumpinimai ir jų paaiškinimai | |
http://www.autoasas.lt/autoterminai | |
Kėbulas | |
Aerodinaminio pasipriešinimo koeficientas - Aerodinaminės savybės dažniausiai matuojamos aerodinamikos koeficientu (arba „Cd“ koeficientu). Šis koeficientas sudaromas įvertinus pasipriešinimo jėgą pagal jėgą, kurios reikėtų automobiliui visiškai sustabdyti. Kuo didesnis pasipriešinimo koeficientas, tuo didesnę jėgą turi įveikti automobilį varantis variklis. | |
Bi-Xenon - Artimųjų ir tolimųjų šviesų ksenono dujų žibintai. | |
Carbon - Gryna anglis - Patvari ir itin lengva medžiaga, tinkanti kėbulo detalėms ir stabdžiams gaminti. Taikoma konstruojant sportinius automobilius, „Formulės 1“ bolidus ir pan. | |
Compact - Kompaktinė klasė. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- http://sqlserverperformance.wordpress.com/tag/dmv-queries/ | |
-- SQL Server 2012 Diagnostic Information Queries | |
-- Glenn Berry | |
-- August 2012 | |
-- Last Modified: August 30, 2012 | |
-- http://sqlserverperformance.wordpress.com/ | |
-- http://sqlskills.com/blogs/glenn/ | |
-- Twitter: GlennAlanBerry |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Accessibility, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL | |
Accessibility, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL | |
AspNetMMCExt, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL | |
AuditPolicyGPManagedStubs.Interop, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=AMD64 | |
AuditPolicyGPManagedStubs.Interop, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=x86 | |
blbmmc, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL | |
blbmmc.resources, Version=6.1.0.0, Culture=en, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL | |
blbproxy, Version=6.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=AMD64 | |
blbproxy.resources, Version=6.1.0.0, Culture=en, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var gulp = require('gulp'), | |
gutil = require('gulp-util'), | |
sass = require('gulp-sass'), | |
rubysass = require('gulp-ruby-sass'), | |
fileinclude = require('gulp-file-include'), | |
rename = require('gulp-rename'), | |
notify = require('gulp-notify'), | |
livereload = require('gulp-livereload'), | |
lr = require('tiny-lr'), | |
connect = require('gulp-connect'), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$wu = Get-Service -Name wuauserv | |
$wu | Set-Service -StartupType Manual | Stop-Service | |
cinst DotNet4.5.1 -y | |
if (Test-PendingReboot) { Invoke-Reboot } | |
cinst vs2013.4-ultimate-iso -ia "/Features:'WebTools SQL'" -y | |
if (Test-PendingReboot) { Invoke-Reboot } | |
$wu | Start-Service |
OlderNewer