您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

135 行
4.1KB

  1. # Define file paths
  2. $excelFilePath = "C:\Users\danielc\Desktop\Changed Addrs12.xlsx"
  3. $accessDbPath = "\\kci-app01\c$\inetpub\Data\webdata - Copy.mdb"
  4. $tableName = "Jurisdiction"
  5. # Open Excel file
  6. $excel = New-Object -ComObject Excel.Application
  7. $excel.Visible = $false # Set to $true if you want to see Excel open
  8. $workbook = $excel.Workbooks.Open($excelFilePath)
  9. $sheet = $workbook.Sheets.Item(1)
  10. # Get Excel range
  11. $usedRange = $sheet.UsedRange
  12. $rowCount = $usedRange.Rows.Count
  13. $colCount = $usedRange.Columns.Count
  14. Write-Host "Total Rows: $rowCount, Total Columns: $colCount"
  15. # Retrieve column headers (first row) & trim spaces
  16. $headers = @()
  17. for ($col = 1; $col -le $colCount; $col++)
  18. {
  19. $headers += ($sheet.Cells.Item(1, $col).Text).Trim()
  20. }
  21. # Print headers for debugging
  22. Write-Host "Excel Headers Found: $($headers -join ', ')"
  23. # Ensure necessary columns exist
  24. $jcodeIndex = $headers.IndexOf("Jurisdiction Code")
  25. $newAddIndex = $headers.IndexOf("New Add")
  26. $newCityIndex = $headers.IndexOf("New city")
  27. $newZipIndex = $headers.IndexOf("New Zip")
  28. if ($jcodeIndex -eq -1 -or $newAddIndex -eq -1 -or $newCityIndex -eq -1 -or $newZipIndex -eq -1)
  29. {
  30. Write-Error "One or more required columns (Jurisdiction Code, New Add, New City, New Zip) not found in Excel."
  31. $workbook.Close($false)
  32. $excel.Quit()
  33. exit
  34. }
  35. # Open Access Database
  36. $connectionString = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=$accessDbPath;"
  37. $conn = New-Object -ComObject ADODB.Connection
  38. try
  39. {
  40. $conn.Open($connectionString)
  41. Write-Host "Connected to Access Database: $accessDbPath"
  42. # Iterate through Excel rows and generate SQL updates
  43. for ($row = 2; $row -le $rowCount; $row++)
  44. {
  45. # Read Jurisdiction Code and ensure zero-padded format
  46. $rawJurisdictionCode = $sheet.Cells.Item($row, $jcodeIndex + 1).Text
  47. if ($rawJurisdictionCode -match "^\d+$")
  48. {
  49. $jurisdictionCode = "{0:D5}" -f [int]$rawJurisdictionCode
  50. }
  51. else
  52. {
  53. Write-Host "Skipping row $row Invalid Jurisdiction Code '$rawJurisdictionCode'"
  54. continue
  55. }
  56. # Read new address fields from Excel
  57. $newAdd = $sheet.Cells.Item($row, $newAddIndex + 1).Text
  58. $newCity = $sheet.Cells.Item($row, $newCityIndex + 1).Text
  59. $newZip = $sheet.Cells.Item($row, $newZipIndex + 1).Text
  60. # Generate CSZ (keeping the "-" in ZIP code)
  61. $csz = "$newCity $newZip"
  62. # Remove "-" from ZIP code for IMB_Digits
  63. $cleanZip = $newZip -replace "-", ""
  64. $imbDigits = "00778903419785000000$cleanZip"
  65. if (-not $newAdd -and -not $newCity -and -not $newZip)
  66. {
  67. Write-Host "Skipping row $row No updates found for Mailing_Address, CSZ, IMB, or IMB_Digits."
  68. continue
  69. }
  70. # Make API call to get IMB value
  71. $apiUrl = "https://postalpro.usps.com/ppro-tools-api/imb/encode?imb=$imbDigits"
  72. try
  73. {
  74. $response = Invoke-RestMethod -Uri $apiUrl -Method Get -Headers @{ "Accept" = "application/json" }
  75. $imbValue = $response.imb
  76. }
  77. catch
  78. {
  79. Write-Host "Error retrieving IMB for row $row (Jurisdiction Code: $jurisdictionCode), using fallback IMB_Digits."
  80. $imbValue = $imbDigits
  81. }
  82. # Escape SQL values
  83. $newAddEscaped = $newAdd -replace "'", "''"
  84. $cszEscaped = $csz -replace "'", "''"
  85. $imbDigitsEscaped = $imbDigits -replace "'", "''"
  86. $imbValueEscaped = $imbValue -replace "'", "''"
  87. # Generate SQL Update statement
  88. $updateSQL = "UPDATE [$tableName] SET [Mailing_Address] = '$newAddEscaped', [CSZ] = '$cszEscaped', [IMB] = '$imbValueEscaped', [IMB_Digits] = '$imbDigitsEscaped' WHERE [JCode] = '$jurisdictionCode';"
  89. Write-Host "Executing: $updateSQL"
  90. # Execute the SQL Update
  91. $cmd = $conn.Execute($updateSQL)
  92. }
  93. }
  94. catch
  95. {
  96. Write-Error "Error updating Access database: $_"
  97. }
  98. finally
  99. {
  100. # Close the Access database
  101. $conn.Close()
  102. [System.Runtime.Interopservices.Marshal]::ReleaseComObject($conn) | Out-Null
  103. }
  104. # Close Excel
  105. $workbook.Close($false)
  106. $excel.Quit()
  107. # Release COM objects
  108. [System.Runtime.Interopservices.Marshal]::ReleaseComObject($sheet) | Out-Null
  109. [System.Runtime.Interopservices.Marshal]::ReleaseComObject($workbook) | Out-Null
  110. [System.Runtime.Interopservices.Marshal]::ReleaseComObject($excel) | Out-Null
  111. Write-Host "Excel and Access database update completed."

Powered by TurnKey Linux.