MB6-894 · Question #45
You need to explain to a team member the difference between TempDB and InMemory table types. In which three ways do TempDB table types differ from InMemory table types for reporting? Each…
The correct answer is A. TempDB tables have a persistent database schema, and the data is deleted when the table C. TempDB tables are for the storage of large data sets and do not allow exchanging between E. TempDB tables are used when you are unsure of the size of the data set returned. Temp DB tables have a persistent schema in the database, but they areconfigured to delete table datawhen references to the table go out of scope. An important thing to remember about in- memory tables is that once the table size exceeds 128 kilobytes,the system begins to…
Question
You need to explain to a team member the difference between TempDB and InMemory table types. In which three ways do TempDB table types differ from InMemory table types for reporting? Each correctanswer presents part of the solution.
Options
- ATempDB tables have a persistent database schema, and the data is deleted when the table
- BTempDB tables are created and destroyed upon use, which not take any database schema
- CTempDB tables are for the storage of large data sets and do not allow exchanging between
- DTempDB tables are used for small data sets that are under 128 KB in size.
- ETempDB tables are used when you are unsure of the size of the data set returned.
How the community answered
(20 responses)- A75% (15)
- B20% (4)
- D5% (1)
Explanation
Temp DB tables have a persistent schema in the database, but they areconfigured to delete table datawhen references to the table go out of scope. An important thing to remember about in- memory tables is that once the table size exceeds 128 kilobytes,the system begins to allocate additional space between the RAMand disk space, which can causeperformance to suffer. Because of this, it is recommended to usetemp DB tables to handle largertemporary datasets. Temp DB tables are often used to store data from reports, as report data is usually temporary and that it isnot needed after the report is closed.
Topics
Community Discussion
No community discussion yet for this question.