Vous êtes sur la page 1sur 11

Exam Title

: NCR Teradata NR0-012 : Teradata Physical Implementation v2r5 Exam

Version : R6.1

www.Prepking.com

Prepking - King of Computer Certification Important Information, Please Read Carefully


Other Prepking products A) Offline Testing engine Use the offline Testing engine product to practice the questions in an exam environment. B) Study Guide (not available for all exams) Build a foundation of knowledge which will be useful also after passing the exam. Latest Version We are constantly reviewing our products. New material is added and old material is updated. Free updates are available for 90 days after the purchase. You should check your member zone at Prepking and update 3-4 days before the scheduled exam date. Here is the procedure to get the latest version: 1.Go towww.Prepking.com 2.Click on Member zone/Log in (right side) 3. Then click My Account 4.The latest versions of all purchased products are downloadable from here. Just click the links. For most updates,it is enough just to print the new questions at the end of the new version, not the whole document. Feedback If you spot a possible improvement then please let us know. We always interested in improving product quality. Feedback should be send to feedback@Prepking.com. You should include the following: Exam number, version, page number, question number, and your login ID. Our experts will answer your mail promptly. Copyright Each PDF file contains a unique serial number associated with your particular name and contact information for security purposes. So if we find out that a particular PDF file is being distributed by you, Prepking reserves the right to take legal action against you according to the International Copyright Laws. Explanations This product does not include explanations at the moment. If you are interested in providing explanations for this exam, please contact feedback@Prepking.com.

www.Prepking.com

1. What happens to a submitted query when a deadlock occurs? A.Oldest query is aborted. B.Youngest query is aborted. C.Query waits for deadlock to resolve. D.Dispatcher identifies which query to hold and waits for completion of deadlocking query. Answer: B

2. Which statement is true of join indexes? A.They can be processed using MultiLoad. B.They can be used to define Full Outer Joins. C.They can be assigned a different primary index from the base table. D.They can be used on a table with triggers and Referential Integrity constraints. Answer: C

3. Which three join methods require spool files? (Choose three.) A.Merge Join B.Nested Join C.Product Join D.Exclusion Merge Join Answer: ACD

4. Which two statements about parallel steps are true? (Choose two.) A.They are steps whose output may be used in a later statement. B.They are sequentially numbered steps that may execute simultaneously. C.They represent combined identical steps for two or more SQL statements within the request parcel. D.They are seen in the creation of a spool file, which is subsequently used in more than one processing step. Answer: AB

5. Which two definitions are required on the referenced columns when implementing Referential Integrity?
www.Prepking.com

(Choose two.) A.Unique B.Nullable C.Indexed D.Not Null Answer: AD

6. During which phase of modeling design would a Partitioned Primary Index be defined? A.Logical Data Modeling B.Physical Data Modeling C.Entity-Relationship Modeling D.Business Information Modeling Answer: B

7. Which three are data demographic elements? (Choose three.) A.number of nulls B.number of constraints C.number of distinct values D.number of rows per value Answer: ACD

8. Which two factors should be considered when electing to denormalize a table? (Choose two.) A.volatility B.cardinality C.connectivity D.performance Answer: AD

9. What should be considered when electing to denormalize a table? A.volatility


www.Prepking.com

B.cardinality C.connectivity D.number of users Answer: A

10. Whenever you have stand-alone derived data, you must decide whether to calculate it or store it. On which two demographics should you base your decision? (Choose two.) A.access column B.access frequency C.column data value volatility D.number of sources involved Answer: BC

11. What is an effect of denormalization on application coding? A.It usually increases data flexibility. B.It increases the cost of data retrieval. C.It generally reduces the potential for data problems. D.It generally makes new applications more difficult to implement. Answer: D

12. Click the Task Button.Place each normal form name next to its description.

Answer:
www.Prepking.com

13. Which two statements are true about identity columns? (Choose two.) A.Only one can be specified per table. B.They need not be a primary index column. C.They can be part of a composite primary index. D.They can be the primary index of a table with atomic upsert operations. Answer: AB

14. Which three statements are true about identity columns? (Choose three.) A.They are supported by TPump. B.They guarantee sequential numbering of inserted rows. C.They provide even row distribution when used as a primary index. D.They simplify the initial port from other databases that use generated keys. Answer: ACD

15. Which property is a characteristic of a NUSI? A.two-AMP operation B.two tables with the same index C.physical grouping of related data D.index row and table row on same AMP Answer: D
www.Prepking.com

16. What are three considerations when creating a primary index? (Choose three.) A.If third normal form, you must use a primary key. B.Duplicate values are not stored in the same block. C.Primary index values should not be subject to change. D.Columns frequently used for row selection are good candidates. E.Very non-unique values can cause premature "database full" conditions. Answer: CDE

17. A Partitioned Primary Index is an alternative for which index type? A.multi-table join index B.unique primary index C.non-unique primary index D.value-ordered secondary index Answer: D

18. In a table with a Partitioned Primary Index, what characterizes primary index access? A.The partition value is hashed and the data row is retrieved directly. B.The primary index column values are hashed and the data row is retrieved directly. C.The partition value is hashed and each partition which hasn't been eliminated in the predicate is scanned for the rowid. D.The primary index column values are hashed and each partition which hasn't been eliminated in the predicate is scanned for the rowid. Answer: D

19. Use of the SQL option: locking row nowait enables which action by the system? A.downgrade to an access lock B.immediate access to the row C.abort requesting task on a wait
www.Prepking.com

D.abort holding lock task on a wait Answer: C

20. To avoid waiting on conflicting locks, which LOCKING modifier should be used? A.UNLOCK ROW B.LOCKING ROW NOWAIT C.OVERRIDE CURRENT LOCK D.LOCKING ROW FOR EXCLUSIVE Answer: B

21. What is the lifespan of a transaction lock? A.based on time out setting B.until the user releases the lock C.four hours after the lock is initiated D.four minutes after the lock is initiated E.two minutes after another user requests the resource Answer: B

22. What do pseudo table locks ensure? A.Two users will not need to share virtual tables. B.Two users will not get conflicting row locks on a table. C.Two users will not deadlock on a table level lock request. D.One user will be able to have locks on two tables simultaneously. E.Two users will be able to have simultaneous and conflicting locks on a table. Answer: C

23. What is a pseudo table lock designed to enable? A.sequenced locking of a resource B.locking of the global temporary tables C.reserving of a volatile temporary table
www.Prepking.com

D.locking of the virtual tables accessed by the user Answer: A 24. Which three elements are contained in a USI subtable row? (Choose three.) A.subtable-id B.USI column value(s) C.UPI column value(s) D.rowid of the base row E.secondary index rowid Answer: BDE

25. What are three reasonable reasons for using a USI? (Choose three.) A.to provide an alternate path to the data B.to provide good distribution of base rows C.to provide a option for avoiding full table scans D.to provide a uniqueness constraint to a column E.to provide an additional Optimizer option for Merge Join planning Answer: ACD

26. What are three benefits of a USI? (Choose three.) A.saves disk space B.is used to cover queries C.can eliminate a full table scan D.duplicate row checking is not necessary E.cannot insert rows with duplicate USI values Answer: CDE

27. Which statement is true about USIs? A.They allow a duplicate row to occur. B.They cannot be created dynamically. C.They are always preferable to NUSIs.
www.Prepking.com

D.At worst case they result in a two-AMP operation. Answer: D

28. Assuming that the necessary statistics have been collected, when is NUSI bit mapping used? A.when at least one of the NUSIs is NULL B.when the query ANDs two or more indexes with the bit mapping option C.when two or more weakly selective indexed conditions are ORed and the combination is strongly selective D.when two or more weakly selective indexed conditions are ANDed and the combination is strongly selective Answer: D

29. You are running a query against a three year history table: SELECT * FROM Orders WHERE o_orderdate BETWEEN 2003-07-01 AND 2003-07-07; Which statement is true about a NUSI on o_orderdate? A.The value-ordered NUSI rows are stored in row hash order. B.A value-ordered NUSI should perform better than a hash-ordered NUSI. C.A hash-ordered NUSI should perform better than a value-ordered NUSI. D.Since a full table scan is required anyway, a NUSI will not improve performance. Answer: B

30. Which two operators may indicate decomposable data? (Choose two.) A.IN B.LIKE C.EQUALS D.BETWEEN E.SUBSTRING
www.Prepking.com

100% Pass Guaranteed or Full Refund Word to Word Real Exam Questions from Real Test Buy full version of exam from this link below http://www.prepking.com/NR0-012.htm

Vous aimerez peut-être aussi