{"id":22819790,"url":"https://github.com/benscabbia/ssms-results-parser","last_synced_at":"2026-04-22T21:36:55.344Z","repository":{"id":92930635,"uuid":"110374689","full_name":"benscabbia/SSMS-Results-Parser","owner":"benscabbia","description":"Visually compare side-by-side two SQL Server Statistics IO and Time data. Simply copy your output from SSMS and compare!","archived":false,"fork":false,"pushed_at":"2018-04-28T10:38:22.000Z","size":1802,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-27T02:40:06.728Z","etag":null,"topics":["compare-data","parser","results-viewer","sql","sql-server","sqlserver","ssms"],"latest_commit_sha":null,"homepage":"https://benscabbia.github.io/SSMS-Results-Parser/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/benscabbia.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-11-11T19:44:23.000Z","updated_at":"2023-10-31T10:58:06.000Z","dependencies_parsed_at":null,"dependency_job_id":"3da525e9-05ef-4855-a326-94961d0a085a","html_url":"https://github.com/benscabbia/SSMS-Results-Parser","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/benscabbia/SSMS-Results-Parser","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benscabbia%2FSSMS-Results-Parser","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benscabbia%2FSSMS-Results-Parser/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benscabbia%2FSSMS-Results-Parser/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benscabbia%2FSSMS-Results-Parser/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/benscabbia","download_url":"https://codeload.github.com/benscabbia/SSMS-Results-Parser/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benscabbia%2FSSMS-Results-Parser/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32156604,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-22T17:06:48.269Z","status":"ssl_error","status_checked_at":"2026-04-22T17:06:19.037Z","response_time":58,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["compare-data","parser","results-viewer","sql","sql-server","sqlserver","ssms"],"created_at":"2024-12-12T15:14:18.266Z","updated_at":"2026-04-22T21:36:55.326Z","avatar_url":"https://github.com/benscabbia.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SSMS Results Parser\n\nA SQL Server Management Studio Parser. You can pass it up to two queries and compare results including: \n* Scan Count\t\n* Logical Reads\t\n* Physical Reads\n* Read-ahead Reads\t\n* Lob Logical Reads\t\n* Lob Physical Reads\t\n* Lob Read-ahead Reads\n\nThe data is compared on a per query level, and on a per-table level (assuming both queries have the same number of tables). All of the code runs directly in browser with no server side hooks. Your data is **not** saved anywhere. \n\n## Features\n\n### Total IO Comparison: \n![Total IO Data](https://i.imgur.com/hSbByX1.png)\nLob counts can be optionally included in chart\n\n### Total Time Comparison:\n![Total Time](https://i.imgur.com/LrbYwSQ.png)\n\n### Single Table Comparison\n![Single Table](https://i.imgur.com/OZtnty2.png)\n\n### Single Table Join Comparison\n![Single Table Join](https://i.imgur.com/qsG7l8w.png)\n\n## Expected Input:\n\nSSMS Results Parser in its current state is fairly strict, therefore it requires you to configure SSMS as instructed below. \n\n### Configuring SSMS \nFirstly select to output your results to Text. This can be done in SSMS by: \n**Tools \u003e Options \u003e Query Results**: \n\n![SSMS Option to include output results to text](https://i.imgur.com/cZrBxqJ.png)\n\nNow you can optionally configure your results to automatically include Time and IO statistics data. In SSMS: \n**Tools \u003e Options \u003e Query Execution \u003e SQL Server \u003e Advanced**. \n\n![SSMS Option to default Time and IO stats](https://i.imgur.com/1nHuyGd.png)\n\nAlternatively, you can manually specify the Time and IO headers by including the snippet below at the beginning of your SQL query: \n\n```\nSET STATISTICS IO ON\nSET STATISTICS TIME ON\n```\n\nThat's it! \n\n## Future Features (welcome to contribute)\n* Improve robustness for inputs\n* Compare table Data to ensure both queries are equivalent\n\n\n___\n\n## Contributing to SsmsResultsParser\n\nContributions are welcome! Here is a little guide on getting this project setup. \n\nThis project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 1.5.0.\n\n### Development server\n\nRun `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files.\n\n### Code scaffolding\n\nRun `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.\n\n### Build\n\nRun `ng build` to build the project. The build artifacts will be stored in the `dist/` directory. Use the `-prod` flag for a production build.\n\n### Running unit tests\n\nRun `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io).\n\n### Linting \n\nRun `ng lint` to run linter\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbenscabbia%2Fssms-results-parser","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbenscabbia%2Fssms-results-parser","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbenscabbia%2Fssms-results-parser/lists"}