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
| Spliting large files into 1GB chunks for copying. | |
| Go and get the portable 7za from https://www.7-zip.org/download.html Grab the one labelled | |
| (7-Zip Extra: standalone console version, 7z DLL, Plugin for Far Manager) | |
| The following command will use the fastest compression and split into 1GB chunks | |
| 7za a c:\temp\<archive name>.7z c:\temp\<source_files>.* -v1000m -mx1 |
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
| Kit wise we have this stuff that we can pool: | |
| * camping table | |
| * 4 x stoves | |
| * 1 x bbq + charcoal, lighters etc (this will double as a firepit for after BBQ) | |
| * 2 x cooking pots | |
| * wooden skewers | |
| * bbq tools | |
| * small kettle |
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
| $InstallPath = $OctopusParameters["Octopus.Action[Deploy dbatools package].Output.Package.InstallationDirectoryPath"] + "\contents\" | |
| Write-Host $InstallPath | |
| Copy-Item -Path $InstallPath -Destination "C:\Program Files\WindowsPowershell\Modules\dbatools" -Recurse -Force |
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
| CREATE SCHEMA [common] AUTHORIZATION [dbo] | |
| CREATE TABLE [common].[sequence_test_id] | |
| ( | |
| sequence_id bigint identity(1,1) | |
| ,CONSTRAINT [pk_sequence_test_id] PRIMARY KEY (sequence_id) | |
| ) | |
| GO |
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
| :setvar SSISDB_NAME "SSISDb" | |
| USE $(SSISDB_NAME) | |
| SET NOCOUNT ON | |
| SET XACT_ABORT ON | |
| BEGIN TRANSACTION | |
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
| USE msdb; | |
| /* | |
| Get the runtime of sql agent job and job steps over the last 14 days | |
| */ | |
| DECLARE @JobName SYSNAME = '<job name here>' |
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
| Use [msdb] | |
| GO | |
| create view [dbo].[vwRestoreHistory] | |
| as | |
| select | |
| this_instance_name = @@SERVERNAME | |
| ,source_server_name = left(bs.server_name, 40) | |
| ,database_name = left(bs.database_name, 60) |
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
| USE [msdb] | |
| GO | |
| CREATE view [dbo].[vwBackupHistory] | |
| as | |
| select | |
| this_instance_name = @@SERVERNAME | |
| ,source_server_name = left(bs.server_name, 40) | |
| ,database_name = left(bs.database_name, 60) |
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
| cinst VisualStudioTeamFoundationServerExpress2013 | |
| cinst MsSqlServer2012Express | |
| cinst visualstudio2013teamexplorer | |
| $tfsConfig="$env:ProgramFiles\Microsoft Team Foundation Server 12.0\Tools\TfsConfig.exe" | |
| .$tfsConfig unattend /configure /type:standard | |
| .$tfsConfig unattend /configure /type:build ` | |
| /inputs:collectionurl=http://localhost:8080/tfs`;ServiceAccountName="LOCAL SERVICE"`;ServiceAccountPassword="pass" |
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
| sqlserver2014express - sql 2014 express with management studio | |
| sqlserver2012express - sql 2014 express with management studio | |
| git | |
| git.install | |
| visualstudioteamfoundationserverexpress2013 | |
| visualstudioexpress2012tfs | |
| octopusdeploy.tentacle | |
| octopusdeploy | |
| octopustools |
NewerOlder