D. Data modelling and data management Flashcards

1
Q

What are the different types of object relations in salesforce? How can you create them?

A

No list of Salesforce interview questions is complete without involving relationships between objects in Salesforce. Relationships in Salesforce can be used to establish links between two or more objects.

The different types of object relationships in Salesforce are:

Master-Detail Relationship (1:n):- It is a parent-child relationship in which the master object controls the behavior of the dependent child object. It is a 1:n relationship, in which there can be only one parent, but many children.The main concept you need to be know is that, being the controlling object, the master field cannot be empty. If a record/ field in master object is deleted, the corresponding fields in the dependent object are also deleted. This is called a cascade delete. Dependent fields will inherit the owner, sharing and security settings from its master.You can define master-detail relationships between two custom objects, or between a custom object and standard object as long as the standard object is the master in the relationship.
Lookup Relationship (1:n):-
Lookup relationships are used when you want to create a link between two objects, but without the dependency on the parent object. Similar to Master-Detail relationship, you can think of this as a form of parent-child relationship where there is only one parent, but many children i.e. 1:n relationship.The difference here is that despite being controlling field, deleting a record will not result in automatic deletion of the lookup field in the child object. Thus the records in the child object will not be affected and there is no cascade delete here. Neither will the child fields inherit the owner, sharing or security settings of its parent.
Junction Relationship (Many-To-Many):-
This kind of a relationship can exist when there is a need to create two master-detail relationships. Two master-detail relationships can be created by linking 3 custom objects. Here, two objects will be master objects and the third object will be dependent on both the objects. In simpler words, it will be a child object for both the master objects.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What happens to detail record when a master record is deleted? What happens to child record when a parent record is deleted?

A

In a Master-Detail relationship, when a master record is deleted, the detail record is deleted automatically (Cascade delete).

In a Lookup relationship, even if the parent record is deleted, the child record will not be deleted.

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

Can you have a roll up summary field in case of Master-Detail relationship?

A

Yes. You can have a roll-up summary in case of a master-detail relationship. But not in case of a lookup relationship.

A roll-up summary field is used to display a value in a master record based on the values of a set of fields in a detail record. The detail record must be related to the master through a master-detail relationship.

There are 4 calculations that you can do using roll-up summary field. You can count the number of detail records related to a master record. Or, you can calculate the sum, minimum value, or maximum value of a field in the detail records.

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

Explain the term “Data Skew” in Salesforce.

A

“Data skew” is a condition which you will encounter when working for a big client where there are over 10,000 records. When one single user owns that many records we call that condition ‘ownership data skew’.

When such users perform updates, performance issues will be encountered because of “data skew”. This happens when a single user/ members of a single role own most of the records for a particular object.

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

Explain skinny table. What are the considerations for Skinny Table?

A

In Salesforce, skinny tables are used to access frequently used fields and to avoid joins. This largely improves performance. Skinny tables are highly effective, so much so that even when the source tables are modified, skinny tables will be in sync with source tables.

Considerations for skinny tables:

Skinny tables can contain a maximum of 100 columns.
Skinny tables cannot contain fields from other objects.
For full sandboxes: Skinny tables are copied to your Full sandbox organizations, as of the Summer ’15 release.

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

Which fields are automatically Indexed in Salesforce?

A

Only the following fields are automatically indexed in Salesforce:

Primary keys (Id, Name and Owner fields).
Foreign keys (lookup or master-detail relationship fields).
Audit dates (such as SystemModStamp).
Custom fields marked as an External ID or a unique field.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How to handle comma within a field while uploading using Data Loader?

A

In a Data Loader .CSV, if there is a comma in field content, you will have to enclose the contents within double quotation marks: ” “.

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