Which BI tools (such as Tableau or Power BI) have you used, and how do they differ in terms of scalability?
Write a SQL query that summarizes recorded BI tool usage and assigns a scalability assessment based on runtime and data volume.
tool_name, vendor, usage_count, unique_users, avg_runtime_seconds, max_rows_processed, and scalability_assessment.| Column | Type | Description |
|---|---|---|
| tool_idPK | INT | Unique BI tool identifier |
| tool_name | VARCHAR(100) | BI tool name |
| vendor | VARCHAR(100) | Tool vendor |
| is_active | BOOLEAN | Whether the tool is currently active |
| Column | Type | Description |
|---|---|---|
| run_idPK | INT | Unique dashboard execution identifier |
| tool_id | INT | BI tool used for the execution |
| user_id | INT | User who launched the dashboard |
| runtime_seconds | INT | Dashboard execution time in seconds |
| rows_processed | INT | Number of rows processed |
| run_status | VARCHAR(20) | Execution status |