M4 - Manage datasources with external data stores Flashcards

1
Q

What can be done with Entity Store?

A

Basic reporting and data analysis

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the best option for using data for Power BI reporting in finance and operations apps?

A

Entity Store

The Entity Store is specifically designed for reporting and analytical workspaces in finance and operations.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What should you use if you want to export data from finance and operations apps to your own data warehouse?

A

BYOD

These tools allow for deeper analysis beyond Power BI.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is the correct external source to use for batch integration with other systems?

A

BYOD

BYOD stands for Bring Your Own Database.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is required to use BYOD?

A

A separate SQL database hosted in Microsoft Azure

This is necessary for data integration and management.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is recommended as the first choice for using default operations reports?

A

Embedded Power BI and the Entity Store

This combination provides a streamlined approach to reporting.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

True or False: BYOD is the primary option for reporting in finance and operations apps.

A

False

The Entity Store is the primary option for reporting.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What does BYOD and Entity Store depend on?

A

Creation and management of custom entities and data sources

BYOD stands for Bring Your Own Database.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is the first step in BYOD setup?

A

Creating and managing custom data sources

Custom data sources are necessary for data entity creation.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What must be configured in the Data management workspace to implement custom data sources?

A

Entity export option, publish the entity schema to SQL database in Azure and finally export the data into the BYOD

This option is crucial for publishing data to the SQL database.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is the format for the connection string used in setting up Entity export?

A

Data Source=<logical>,1433; Initial Catalog=<your>; Integrated Security=False; User ID=<SQL>; Password=<password></password></SQL></your></logical>

The logical server name should follow the nnnn.database.windows.net format.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What happens after the entity export has been configured?

A

Publish the entity schema to the database in Azure

This allows for managing entities and data within the database.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What can you do after publishing all entities to the destination database?

A

Use the export function in the Data management workspace to move data

Data movement jobs can contain multiple chosen entities.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What types of exports can be performed?

A
  • Bulk, batch job export
  • Smaller, incremental exports

These exports can be configured based on data movement needs.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What are the timeout settings for BYOD exports?

A
  • Ten minutes for truncation operations
  • One hour for bulk insert operations

High volumes may require adjustments to these settings.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

True or False: BYOD can export composite entities into your own database.

A

False

Composite entities cannot be exported by BYOD.

17
Q

What limitation exists regarding unique keys in BYOD exports?

A

Entities that don’t have unique keys cannot be exported by using the incremental push

Unique keys are essential for identifying records during export.

18
Q

A data entity is used to…

A

Expose data through APIs like OData, import/export framework, integration and the programming model.

19
Q

What are the factors that need to be considered to ensure that a data entity is designed optimally?

A
  1. Entity encapsulation
  2. Have one single public contract
  3. Keep entity simple
20
Q

What is meant by having one single public contract?

A

The public contract for your data entity should be the same across all integration endpoints

This ensures consistency for the published schema.

21
Q

How should business logic behave during CRUD operations?

A

It should not vary based on the type of consumer

This promotes a uniform experience for all consumers.

22
Q

What is a key characteristic of a simple entity?

A

The entity consumer should interact based on accepted industry or domain definitions

This means the underlying complexity is hidden from the consumer.

23
Q

How should the consumer interact with the entity?

A

By using the natural key of the entity

This allows for straightforward identification and access.