Skip to content

Instantly share code, notes, and snippets.

@flakey-bit
Last active August 30, 2018 05:59
Show Gist options
  • Save flakey-bit/87ec2eaae045d14db77611674aaa1fa9 to your computer and use it in GitHub Desktop.
Save flakey-bit/87ec2eaae045d14db77611674aaa1fa9 to your computer and use it in GitHub Desktop.
PowerShell script to load Jurisdiction data into GNAF
Param(
[string]$serverName,
[string]$databaseName,
[string]$jurisdictionFilesPath,
[string]$jurisdictionName
)
$filter = $jurisdictionName+"_*.psv"
Get-ChildItem $jurisdictionFilesPath -Filter $filter |
Foreach-Object {
$tableName = $_.name.Replace($jurisdictionName+"_", "").Replace("_psv.psv", "")
write-host "Procesing" $_.Name "into table" $tableName
bcp $tableName in $_.FullName -d $databaseName -S $serverName -t"|" -c -T -F 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment