Skip to content

Instantly share code, notes, and snippets.

@ekkis
Last active August 29, 2015 14:23
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ekkis/49d6ee584fc3375acfbd to your computer and use it in GitHub Desktop.
Save ekkis/49d6ee584fc3375acfbd to your computer and use it in GitHub Desktop.
Inserts Json structures into a SQL Server database
Param($fn, [switch] $show = $false, $srv = "localhost", $db = "tempdb", $tb = "ListDictionary")
#
# - synopsis -
# receives a file of jason objects listed one per line, flattens
# the structure such that arrays and embedded hashes get promoted
# to the top, and generates SQL or runs the SQL to insert the
# records into the given database
#
# - syntax -
# $show: specifies that the commands to be executed should only be shown
# $srv: the name of the SQL Server to log into
# $db: the name of the database in which to operate
# $tb: the table name to write to
#
# - metadata -
# author: erick calder <e@arix.com>
# department: systems engineering
# creation date: 5 VIII 13
#
[System.Reflection.Assembly]::LoadWithPartialName("System.Web.Extensions") > $null
$js = New-Object System.Web.Script.Serialization.JavaScriptSerializer
. db; $ss = SQLConnect $srv $db
function q([string] $s) { "'{0}'" -f $s.replace("'", "''") }
function FlattenJSon($o) {
$ret = @{}
$o.keys |%{
$k = $_
$t = $o[$k].GetType()
if ($t.IsValueType -or $t.Name -eq "String") {
$sk = $k; if ($sk -eq "Keys") { $sk = "!Keys" }
$ret += @{ $sk = $($o[$k]) }
}
elseif ($t.IsArray) {
$i = 1
$o[$k] |%{ $ret[$k + ($i++)] = $_ }
}
else {
$ret += FlattenJSon($o[$k])
}
}
$ret
}
cat $fn |%{
$cols = $vals = @()
$h = FlattenJSon($js.DeserializeObject($_))
$h.keys |%{ $_ = $_.replace("!", ""); $cols += "[$_]"; $vals += $(q $h[$_]) }
$sql = "insert $tb ({0}) values ({1})" -f ($cols -join ","), ($vals -join ",")
if ($show) { $sql }
else { SQLExec $sql > $null }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment