{"id":1206,"date":"2022-11-17T12:45:17","date_gmt":"2022-11-17T10:45:17","guid":{"rendered":"http:\/\/dety.net.ua\/?p=1206"},"modified":"2022-11-17T12:45:17","modified_gmt":"2022-11-17T10:45:17","slug":"powershell-access-to-ms-sql","status":"publish","type":"post","link":"https:\/\/dety.net.ua\/?p=1206","title":{"rendered":"Powershell + Access to MS SQL"},"content":{"rendered":"\n<pre class=\"wp-block-code\"><code>import-module SqlServer\n\n# Ping Server\nif (Test-connection Server -quiet) {\n\ttry {\n\t\t$connString=\"Provider=Microsoft.ACE.OLEDB.16.0;Data Source=E:\\Access.accdb\"\n\t\t$conn=New-Object System.Data.OleDb.OleDbConnection($connString)\n\t\t$conn.Open()\n\n\t\t#Create a command object and execute its reader.\n\t\t$cmd = $conn.CreateCommand()\n\t\t$cmd.CommandText = 'SELECT * FROM Computers'\n\t\t$rdr = $cmd.ExecuteReader()\n\n\t\t#Load the data table object\n\t\t$dt = New-Object System.Data.DataTable\n\t\t$dt.Load($rdr)\n\t}\n\tcatch {Send-MailMessage -From admin@local.com -to admin@local.com -Subject \"Access2SQL:ACCESS:ERROR\" -Body $_ -SmtpServer Mailserver}\n\ttry {\n\t\t#Clear the Table\n\t\tInvoke-Sqlcmd -Query \"TRUNCATE TABLE AccessDB.dbo.Computers\" -ServerInstance \"Server\" -Database \"AccessDB\"\n\t\t#Fill the Table\n\t\t$dt | Write-SqlTableData -ServerInstance Server -Database AccessDB -SchemaName dbo -TableName Computers -Force\n\t}\n\tcatch {Send-MailMessage -From admin@local.com -to admin@local.com -Subject \"Access2SQL:SQL:ERROR\" -Body $_ -SmtpServer Mailserver}\n\t$conn.Close()\n}\nelse {Send-MailMessage -From admin@local.com -to admin@local.com -Subject \"Access2SQL:PING:ERROR\" -Body $_ -SmtpServer Mailserver}\n<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-1206","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"_links":{"self":[{"href":"https:\/\/dety.net.ua\/index.php?rest_route=\/wp\/v2\/posts\/1206","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/dety.net.ua\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/dety.net.ua\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/dety.net.ua\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/dety.net.ua\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1206"}],"version-history":[{"count":1,"href":"https:\/\/dety.net.ua\/index.php?rest_route=\/wp\/v2\/posts\/1206\/revisions"}],"predecessor-version":[{"id":1207,"href":"https:\/\/dety.net.ua\/index.php?rest_route=\/wp\/v2\/posts\/1206\/revisions\/1207"}],"wp:attachment":[{"href":"https:\/\/dety.net.ua\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1206"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/dety.net.ua\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1206"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/dety.net.ua\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1206"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}