diff --git a/Install-All/DarlingData.sql b/Install-All/DarlingData.sql new file mode 100644 index 0000000..d6321d2 Binary files /dev/null and b/Install-All/DarlingData.sql differ diff --git a/Install-All/Merge All.ps1 b/Install-All/Merge All.ps1 new file mode 100644 index 0000000..60afd37 --- /dev/null +++ b/Install-All/Merge All.ps1 @@ -0,0 +1,7 @@ +$FilePath = "C:\Users\edarl\OneDrive\Documents\GitHub\DarlingData" +Get-ChildItem -Path "$FilePath" -Filter "sp_*" | +Where-Object { $_.FullName -notlike "*sp_WhoIsActive*" } | +ForEach-Object { Get-ChildItem $_.FullName | +Where-Object { $_.Name -like "sp_*" -and $_.Name -notlike "sp_Human Events Agent*" } } | +ForEach-Object { Get-Content $_.FullName -Encoding Unicode } | +Set-Content -Path "$FilePath\Install-All\DarlingData.sql" -Encoding Unicode -Force \ No newline at end of file