Questions and Answers:106 Q&As
Updated: 2009-09-03
Exam Number/Code: nr0-013
Exam Name: Teradata Sql v2r5 Exam
Certinside professional IT Q&A vendors, we provide well after-sale service. To all the customers buy the Q&As, we provide track service. when you buy the Q&As with in 3 months. you can enjoy the upgrade Q&As service for free. If in this period, the certified test center change the NCR Teradata TCP nr0-013 Q&As, we will update the Q&A in the first time, and provide you the download update for free
nr0-013 Free Demo Download
Certinside offers free demo for nr0-013 106 Q & As with Expert Explanations). You can check out the interface, question quality and usability of our practice exams before you decide to buy it.
Download nr0-013 Exam Pdf Demo
Download nr0-013 Exam iEngine Demo
Exam : NCR Teradata NR0-013
Title : Teradata Sql v2r5 Exam
1. Click the Exhibit button.
Given the table and the query shown in the exhibit, what is the result set?
A. Smith
B. Miller
C. NULL
D. Fisher
E. Adams
Answer: D
2. What is the join type in the following query?
A. self join
B. cross join
C. nested join
D. Cartesian join
Answer: A
3. Where can the join condition for an inner join be specified? (Choose two.)
A. the ON clause
B. the ANY clause
C. the FROM clause
D. the WHERE clause
Answer: AD
4. Which command will display the account you are currently using?
A. HELP USER;
B. HELP SESSION;
C. HELP ACCOUNT;
D. EXPLAIN ACCOUNT;
E. SELECT ‘ACCOUNT’;
Answer: B
5. Which result do you get from the SELECT SESSION statement ?
A. the SQLFLAG value for the user
B. the session number for the user
C. the session transaction mode for the user
D. the number of sessions running for the user
Answer: B
6. What does the EXPLAIN output provide to assist the user in query analysis? (Choose two.)
A. which steps may be processed in parallel
B. what statistics should be collected on a column
C. accurate time measurements for query processing
D. details of which indexes, if any, will be used to process the query
E. recommendations to improve the query based on timing and sizing
Answer: AD
7. Which two statements about the ACCOUNT function are true? (Choose two.)
A. It has no arguments.
B. It cannot be used in a macro.
C. Value is provided by the parser.
D. It must be coded between quotes.
Answer: AC
8. Given the query
SELECT AVG(column1) FROM t1;
where t1 is an empty table, what is the result?
A. 0
B. Null
C. Error
D. No record found
Answer: B
9. Click the Exhibit button.
Given the two tables and the query shown in the exhibit, what is the result set?
A. 5, NULL
B. 2, NULL
C. 2, 2300
D. 3, NULL
E. 2, 20000
Answer: B
10. What are three characteristics of views? (Choose three.)
A. Views can contain a WHERE clause.
B. Views cannot be used to UPDATE a table.
C. Views must change if columns are added to a table.
D. Views are not affected if columns are added to a table.
E. Views provide an additional level of security or authorization.
Answer: ADE
11. What two types of tables are available when users need to create a small temporary table but only have spool space allocated to them? (Choose two.)
A. Volatile
B. Derived
C. Permanent
D. Global Temporary
Answer: AB
12. Consider the following query:
Which is true?
A. It returns information about employees who have no department number.
B. It returns information about departments that have no employees assigned to them.
C. The ON clause can be replaced with a WHERE clause to produce the same results.
D. It returns an output row for each successful match between employee and department.
Answer: D
13. What is the result of SELECT CAST(’bb12345′ AS CHAR(3)) in Teradata mode? (Note: b = blank)
A. 1
B. ‘bb1′
C. 123
D. 345
E. ‘123′
F. ‘345′
Answer: B
14. The choice of ANSI vs. Teradata mode affects which three items? (Choose three.)
A. data conversions
B. rounding behavior
C. case sensitivity defaults
D. transaction protocol behavior
Answer: ACD
15. Consider this request in Teradata mode:
DELETE t1;
Which request performs equivalently in ANSI mode?
A. DROP TABLE t1;
B. DELETE FROM t1;
C. DELETE FROM t1 ALL;
D. DELETE FROM t1; COMMIT;
Answer: D
16. Which information does HELP TABLE <tablename> provide about the specified table?
A. column name, data type, and comment
B. column name, index, data type, and comment
C. column name, table id, data type, and comment
D. column name, constraint, data type, and comment
Answer: A