Question

I've got a MYSQL server setup as a linked server in MS SQL server 2008. Can someone tell me if it is possible to generate reports from this server?

How do I connect it to Reporting Services?

Was it helpful?

Solution

You can create a stored procedure which selects the desired data and call it from your report as you call any other procedure. If you want to avoid having stored procedure just put the query directly into the report. You do need to use Mysql provider, just use a sql provider.

OTHER TIPS

I don't see any problems generating reports the usual way, as long as you use the 4 part name: 'select top 10 col1, col2 from server.database.schema.table' in the code used to get the data for your reports.

Licensed under: CC-BY-SA with attribution
Not affiliated with dba.stackexchange
scroll top