SQL Server Reporting?

0

I have a SQL Server instance setup, and on one of the databases I have a lot of views defined. I have to connect to our VPN before I can connect to the database. I'm wondering if there is a simple web-based interface, or something in SQL Server reporting services that I can use to easily get those views easily through a browser?

Right now I'm connecting through SQL Server Management Studio which is fine for me, but not for business users in the organization.

whats the best way to make existing views available to business users through a browser?

Ken Shaw

Posted 2012-01-05T17:26:38.203

Reputation: 303

Answers

0

Take a look at QueryTree. You can set up a connection to your database then invite business users in to build simple reports on the web, and without needing do anything technical. The 'report builder' looks like this:

enter image description here

Users can select tables/views, it will auto join onto other related views if you want. Then you add filters, groupings, and calculated columns (e.g. Sum, Avg, Min, Max, Count). A bit like an Excel pivot, but directly onto your database.

d4nt

Posted 2012-01-05T17:26:38.203

Reputation: 143

0

A quick Google search has turned up a few potential web-based admin interfaces you could try out:

A less-advisable option is to expose a public port that gets forwarded to the mssql port on your database machine. With security in mind, I'd be hesitant to seriously suggest that. Though, setting up a Web UI kind of raises the exact same concern.

Footnote: For MySQL admins, check out phpmyadmin - a very nice web-based MySQL admin utility.

James T Snell

Posted 2012-01-05T17:26:38.203

Reputation: 5 726