From 791124366d990ad5efe7068b0e7168a5451e2493 Mon Sep 17 00:00:00 2001 From: Steve Bohlen Date: Sat, 17 Jan 2015 15:17:56 -0500 Subject: [PATCH] return to TCP transport for DB conn alias --- build-support/appveyor-set-sql-alias-for-springqa.ps1 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build-support/appveyor-set-sql-alias-for-springqa.ps1 b/build-support/appveyor-set-sql-alias-for-springqa.ps1 index bbac680a..0d53ceb2 100644 --- a/build-support/appveyor-set-sql-alias-for-springqa.ps1 +++ b/build-support/appveyor-set-sql-alias-for-springqa.ps1 @@ -29,12 +29,12 @@ $TCPAlias = "DBMSSOCN," + $ServerName + "\" + $InstanceName $NamedPipesAlias = "DBNMPNTW,\\" + $ServerName + "\pipe\" + "MSSQL$" + $InstanceName + "\sql\query" #Creating our TCP/IP Aliases -#New-ItemProperty -Path $x86 -Name $AliasName -PropertyType String -Value $TCPAlias -Force -#New-ItemProperty -Path $x64 -Name $AliasName -PropertyType String -Value $TCPAlias -Force +New-ItemProperty -Path $x86 -Name $AliasName -PropertyType String -Value $TCPAlias -Force +New-ItemProperty -Path $x64 -Name $AliasName -PropertyType String -Value $TCPAlias -Force #WARNING: left here in case we ever want to switch to named-piped, but since we can't have two aliases # named the same for two diff. conn. protcols, this is commented out here in favor of the TCPIP alias above #Creating our Named Pipes Aliases -New-ItemProperty -Path $x86 –Name $AliasName -PropertyType String -Value $NamedPipesAlias -New-ItemProperty -Path $x64 –Name $AliasName -PropertyType String -Value $NamedPipesAlias \ No newline at end of file +#New-ItemProperty -Path $x86 –Name $AliasName -PropertyType String -Value $NamedPipesAlias +#New-ItemProperty -Path $x64 –Name $AliasName -PropertyType String -Value $NamedPipesAlias \ No newline at end of file