1 / 10

SQL Reporting

SQL Reporting. Jay Shavitz & Emo Chakarov January 29, 2011 Ft. Lauderdale. SQL Reporting. What is SQL? S tructured Q uery L anguage Example: SELECT * FROM SLS WHERE BILL_DATE = ‘01/07/2010’. SQL Reporting. Existing Database Structure Fragmented Good for speed

Download Presentation

SQL Reporting

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. SQL Reporting Jay Shavitz & Emo Chakarov January 29, 2011 Ft. Lauderdale

  2. SQL Reporting • What is SQL? • Structured Query Language • Example: SELECT * FROM SLS WHERE BILL_DATE = ‘01/07/2010’

  3. SQL Reporting • Existing Database Structure • Fragmented • Good for speed • Not suitable for SQL reporting • Even worse with multiple stores

  4. SQL Reporting SELECT * FROM SLS0110 UNION SELECT * FROM SLS0210 UNION SELECT * FROM SLS0310 UNION SELECT * FROM SLS0410 UNION SELECT * FROM SLS0510 UNION …… where do we stop?

  5. SQL Reporting • So how do we solve these problems? • Consolidate/export the data into a single relational database • Use favorite reporting engine to generate reports

  6. SQL Reporting • Free • Powerful • Easy to setup • Integrated reporting services

  7. SQL Reporting

  8. SQL Reporting • Setting it all up • Install SQL Server • Deploy Reports (if using Reporting Services) • Configure RMSQLExport utility • Export the data

  9. SQL Reporting Report Samples

  10. SQL Reporting Creating Reports

More Related