Dashboards
A single-page collection of visuals built from a report (created in Power BI Service!)
Tiles
Snapshots of your data on a dashboard
Buildings Blocks of Power BI
Visualisations, Datasets, Reports, Dashboards, Tiles
Where to update dataset for an app or other data that you use in Power BI
Power BI Service
Flat file
This ia type of file that has only one data table and every row of data is in the same structure. The file doesn’t contain hierarchies. Examples are csv files, txt files.
Cons of Importing Data by SQL Query
A NoSQL database (also referred to as non-SQL, not only SQL ornon-relational) is a ________
flexible type of database that doesn’t use tables to store data.
If you’re working with data stored in JSON format, it’s often necessary to
extract and normalize the data first. This is because JSON data is often stored in a nested or unstructured format, which makes it difficult to analyze or report on directly.
The three different types of storage modes you can choose from:
As previously mentioned, you use theGet datafeature in Power BI Desktop. When you selectAnalysis Services, you’re prompted for the server address and the database name with two options:
Import andConnect live.
Connect liveis an option for Azure Analysis Services. Azure Analysis Services uses the tabular model and DAX to build calculations, similar to Power BI. These models are compatible with one another. Using the Connect live option helps you keep the data and DAX calculations in their original location, without having to import them all into Power BI.
The performance in Power Query depends on
the performance at the data source level.
The query folding within Power Query Editor helps you ______
increase the performance of your Power BI reports. The reason for implementing this process is to ensure that these transformations can take place in the original data source server and don’t overwhelm Power BI computing resources
Benefits to Query Folding
Another tool that you can use to study query performance is
query diagnostics. You can determine what bottlenecks may exist while loading and transforming your data, refreshing your data in Power Query, running SQL statements in Query Editor, and so on.
Other ways to optimize query performance in Power BI include:
-Process as much data as possible in the original data source.
-Use native SQL queries.When using DirectQuery for SQL databases, such as the case for our scenario, make sure that you aren’t pulling data from stored procedures or common table expressions (CTEs).
- Separate date and time, if bound together.
Relational source systems often have many people who are concurrently using the same data in the same database. Some relational systems and their administrators seek to limit a user from monopolizing all hardware resources by setting a query timeout. This error indicates that you’ve pulled too much data according to your organisation’s policies. What will Power BI show?
Query Timeout Expired
Solution to Query Timeout Expired
You can resolve this error by pulling fewer columns or rows from a single table. While you’re writing SQL statements, it might be a common practice to include groupings and aggregations. You can also join multiple tables in a single SQL statement. If you need the rows, columns, and complexity, consider taking small chunks of data and then bringing them back together by using Power Query.
Couldn’t find file
Usually this error is caused by the file moving locations or the permissions to the file changing. If the cause is the former, you need to find the file and change the source settings.
Sometimes, when you import data into Power BI, the columns appear blank. This situation happens because of an error in interpreting the data type in Power BI. The resolution to this error is unique to the data source.
Data type errors
Use the Pivot Column feature to convert your flat data into _____
a table that contains an aggregate value for each unique value in a column.
When you import a table from any data source, Power BI Desktop automatically starts scanning the first __________
1000 rows and tries to detect the type of data in the columns. Solution to this is to change the profiling status in Power Query Editor
Implication of Incorrect Data Types
Benefits of Combine Multiple Tables into a Single Table
When to combine multiple tables into a single table
You can combine the tables in 2 different ways: merging and appending