c# - What are the options to generate graphs from SQL Database? -
i have sql server 2012 database need build daily automated report graphs. best solution create graph?
i thinking automating c# , excel, hoping there better/easier solution.
thanks
i'd humbly recommend web , data framework company writes (it's free, open source, , public domain) called powershell pipeworks. lets graph code this:
select-sql -tablename dbtable | out-html -asbargraph it has cmdlet, start-at, run things normally, script like
start-at -time "9:00 am" -everyday -scriptblock { select-sql -tablename dbtable -connectionstringorsetting sqlconnectionsecretsetting | select-object @{name='displayedproperty';expression={$_.calculatedvalue} | out-html -asbargraph |new-webpage -usejqueryui | set-content $pathtohtmlfile }
Comments
Post a Comment