2013年7月25日星期四

Meilleur SUN 310-814 test formation guide

Quand vous hésitez même à choisir Pass4Test, le démo gratuit dans le site Pass4Test est disponible pour vous à essayer avant d'acheter. Nos démos vous feront confiant à choisir Pass4Test. Pass4Test est votre meilleur choix à passer l'examen de Certification SUN 310-814, et aussi une meilleure assurance du succès du test 310-814. Vous choisissez Pass4Test, vous choisissez le succès.


Le test SUN 310-814 est bien populaire dans l'Industrie IT. Mais ça coûte beaucoup de temps pour bien préparer le test. Le temps est certainemetn la fortune dans cette société. L'outil de formation offert par Pass4Test ne vous demande que 20 heures pour renforcer les connaissances essentales pour le test SUN 310-814. Vous aurez une meilleure préparation bien que ce soit la première fois à participer le test.


Code d'Examen: 310-814

Nom d'Examen: SUN (MySQL 5.0, 5.1 and 5.5 Certified Associate Exam)

Questions et réponses: 240 Q&As

Pass4Test est un fournisseur de formation pour une courte terme, et Pass4Test peut vous assurer le succès de test SUN 310-814. Si malheureusement, vous échouez le test, votre argent sera tout rendu. Vous pouvez télécharger le démo gratuit avant de choisir Pass4Test. Au moment là, vous serez confiant sur Pass4Test.


Le test SUN 310-814 est le premier pas pour promouvoir dans l'Industrie IT, mais aussi la seule rue ramenée au pic de succès. Le test SUN 310-814 joue un rôle très important dans cette industrie. Et aussi, Pass4Test est un chaînon inevitable pour réussir le test sans aucune doute.


Pass4Test est un site qui peut réalise le rêve de beaucoup de professionnels. Pass4Test peut vous donner un coup de main pour réussir le test Certification SUN 310-814 via son guide d'étude. Est-ce que vous vous souciez de test Certification SUN 310-814? Est-ce que vous êtes en cours de penser à chercher quelques Q&As à vous aider? Pass4Test peut résoudre ces problèmes. Les documentations offertes par Pass4Test peuvent vous provider une préparation avant le test plus efficace. Le test de simulation de Pass4Test est presque le même que le test réel. Étudier avec le guide d'étude de Pass4Test, vous pouvez passer le test avec une haute note.


C'est un bon choix si vous prendre l'outil de formation de Pass4Test. Vous pouvez télécharger tout d'abord le démo gratuit pour prendre un essai. Vous aurez plus confiances sur Pass4Test après l'essai de notre démo. Si malheureusement, vous ne passe pas le test, votre argent sera tout rendu.


310-814 Démo gratuit à télécharger: http://www.pass4test.fr/310-814.html


NO.1 Which of the following will be true about a table column if you plan to create an index on that
column?
Each correct answer represents a complete solution. Choose all that apply.
A. The column is often used in the WHERE clause of SQL statements.
B. The column contains very small number of NULL values.
C. The table is updated frequently.
D. The column should contain a wide range of values.
Answer: A,D

SUN   certification 310-814   310-814   310-814   310-814

NO.2 You work as a Database Administrator for a company. The company uses MySQL as its database.
You have created a new table named Employees, which keeps all the information of the
employees. You want to add a new row to the Employees table. Which of the following statements
will you use to accomplish the task?
A. INSERT (column1,column2, ...columnN) INTO <table_name> VALUES(value1, value2, ...v
alueN);
B. INSERT INTO <table_name>(column1, column2, ...columnN) VALUES(value1 ,value2,
...va lueN);
C. INSERT <table_name>(column1, column2, ...columnN), VALUES(value1, value2, ...valueN
);
D. INSERT INTO <table_name>(column1, column2,... columnN), VALUES(value1, value2,
...v alueN);
Answer: B

SUN examen   310-814   310-814   310-814   310-814

NO.3 DRAG DROP
Drag and drop the correct constraint types to their corresponding specifications.
Answer:

NO.4 You work as a Database Administrator for a company. The company uses MySQL as its database.
You have created two tables named Employees and Departments in the database. Now, you want
to display data from both tables. Which of the following actions will you perform to accomplish the task?
A. Join
B. Table Merge operator
C. HAVING
D. GROUP BY
Answer: A

SUN examen   310-814 examen   310-814   310-814   310-814 examen

NO.5 You work as a Database Administrator for a company. The company uses MySQL as its database.
You have written two statements, which are as follows:
1. SELECT DISTINCT OBJECT_TYPE
FROM USER_OBJECTS;
2. SELECT OBJECT_TYPE
FROM ALL_OBJECTS;
Which of the following options explains the difference between the results of these two
statements? Each correct answer represents a complete solution. Choose all that apply.
A. The first statement will display distinct object types that can be accessed by the user.
B. The second statement will display all object types that a user can access.
C. The first statement will display distinct object types owned by a user.
D. The second statement will display all object types owned by a user.
Answer: B,C

SUN   310-814   certification 310-814   certification 310-814   310-814

NO.6 You work as a Database Administrator for a company. The company uses MySQL as its database.
You want to use group functions, so you have decided to put an alias of group functions as 'GP'.
Which of the following are the correct ways to use group functions?
Each correct answer represents a complete solution. Choose all that apply.
A. GP1(GP2(GPn(group_item))) = result
B. GP1(GP2(group_item)) = result
C. GP1(GP2(GP3(group_item))) = result
D. GP1(group_item) = result
Answer: B,D

SUN examen   310-814   certification 310-814

NO.7 Which of the following functions can be performed by a view?
Each correct answer represents a complete solution. Choose all that apply.
A. Restrict a user to specific columns in a table.
B. Contain a sub query in the FROM clause.
C. Join columns from multiple tables, so that they look like a single table.
D. Restrict a user to specific rows in a table.
Answer: A,C,D

SUN   certification 310-814   310-814 examen   310-814

NO.8 Review the following ER diagram:
Which of the following SQL statements will return all rows for a given CUST_ID and PROD_ID
where sales of specific products on a given day are greater than 10?
Additionally the list should be ordered by CUST_LAST_NAME, CUST_FIRST_NAME and
PROD_NAME.
A. SELECTa.cust_last_name, a.cust_first_name, b.prod_name, c.time_id
FROM customers a, products b, times c, sales e
WHERE a.cust_id=e.cust_id
AND b.prod_id=e.prod_id
AND c.time_id=e.time_id
B. GROUP BYa.cust_last_name, a.cust_first_name, b.prod_name, c.time_id
HAVING COUNT(*) > 10
ORDER BY a.cust_last_name, a.cust_first_name, b.prod_name, c.time_id;
C. SELECTa.cust_last_name, a.cust_first_name, b.prod_name, c.time_id, COUNT(*)
FROM customers a, products b, times c, sales e
WHERE a.cust_id=e.cust_id
AND b.prod_id=e.prod_id
AND c.time_id=e.time_id
GROUP BY a.cust_last_name, a.cust_first_name, b.prod_name, c.time_id
HAVING COUNT(*) > 10;
D. SELECTa.cust_last_name, a.cust_first_name, b.prod_name, c.time_id, COUNT(*)
FROM customers a, products b, times c, sales e
WHERE a.cust_id=e.cust_id
AND b.prod_id=e.prod_id
AND c.time_id=e.time_id
GROUP BY a.cust_last_name, a.cust_first_name, b.prod_name, c.time_id
HAVING COUNT(*) > 10
ORDER BY a.cust_last_name, a.cust_first_name, b.prod_name, c.time_id;
E. SELECTa.cust_last_name, a.cust_first_name, b.prod_name, c.time_id, COUNT(*) TOTAL
FROM customers a, products b, times c, sales e
WHERE a.cust_id=e.cust_id
AND b.prod_id=e.prod_id
AND c.time_id=e.time_id
GROUP BY a.cust_last_name, a.cust_first_name, b.prod_name, c.time_id
ORDER BY a.cust_last_name, a.cust_first_name, b.prod_name, c.time_id;
F. SELECTa.cust_last_name, a.cust_first_name, b.prod_name, c.time_id,
COUNT(*) TOTAL
FROM customers a, products b, times c, sales e
WHERE a.cust_id=e.cust_id
AND b.prod_id=e.prod_id
AND c.time_id=e.time_id
AND total > 10
GROUP BY a.cust_last_name, a.cust_first_name, b.prod_name, c.time_id
ORDER BY a.cust_last_name, a.cust_first_name, b.prod_name, c.time_id;
Answer: C

SUN   310-814   310-814   certification 310-814

NO.9 Adam works as a Database Administrator for a company. The company uses MySQL as its
database. Adam has created a table named Employees in the database. He wants to retrieve the
information of those employees who have at least one person reporting to them. Which of the
following queries will Adam execute to accomplish the task?
A. SELECTemployee_id, last_name, job_id, department_id FROM Employees WHERE
employee_id
EXISTS (SELECT manager_id WHERE manager_id is NULL);
B. SELECTemployee_id, last_name, job_id, department_id FROM Employees HAVING
employee_id
IN (SELECT manager_id FROM Employees WHERE manager_id is NOT NULL);
C. SELECTemployee_id, last_name, job_id, department_id FROM Employees outer WHERE
EXISTS
(SELECT 'x' FROM Employees WHERE manager_id = outer.employee_id);
D. SELECTemployee_id, last_name, job_id, department_id FROM Employees WHERE
employee_idIN
(SELECT manager_id WHERE manager_id is NOT NULL);
Answer: C

certification SUN   310-814 examen   certification 310-814

NO.10 Fill in the blank with the appropriate term.
A provides a concise and flexible means for matching strings of text,
suchas particular characters, words, or patterns of characters.
A. regular expression
Answer: A

SUN   310-814 examen   310-814   310-814   310-814 examen

NO.11 You work as a Database Administrator for a company. The company uses the MySQL database.
You have created a table named Employees. The table contains the following structurE.
The company has three departments. A task has been assigned to you to calculate the sum of the
average length of employees' last name per department. Which of the following queries will you
execute to accomplish the task?
A. SELECTSUM(AVG(LENGTH(last_name))) FROM Employees HAVING department_id;
B. SELECTSUM(AVG(LENGTH(last_name))) FROM Employees GROUP BY department_id;
C. SELECTSUM(AVG(LENGTH(last_name))) FROM Employees WHERE department_id=NOT
NU LL;
D. SELECTSUM(AVG(LENGTH(last_name))) FROM Employees ORDER BY department_id;
Answer: B

certification SUN   310-814   310-814 examen

NO.12 You work as a Database Administrator for a company. The company uses the MySQL database.
You have created a new table named Employees in the database and performed update operation but
you got an error because of the last transaction. Now, you want to terminate the last transaction. Which of
the following commands can you use to accomplish the task?
Each correct answer represents a complete solution. Choose all that apply.
A. ROLLBACK
B. REMOVE
C. DELETE
D. COMMIT
Answer: A,D

SUN   310-814   310-814

NO.13 Fill in the blank with the appropriate word.
The data type defines a date that is combined with a time of day along with fractional
seconds that is based on a 24-hour clock.
A. datetime
Answer: A

SUN   310-814 examen   310-814   310-814   310-814

NO.14 Which of the following statements is correct for equijoin used to join two tables named Employees and
Department?
A. SELECTDept_Name, Emp_Name
FROM Departments d1, Employees e1
ORDER BY Dept_Name, Emp_Name;
B. SELECTD.Dept_Name, E.Emp_Name
FROM Departments d1, Employees e1
HAVING Dept_Name, Emp_Name;
C. SELECTE.Emp_Name,
D. Dept_Name
FROM Departments d1, Employees e1
WHERE Dept_No = Dept_No
ORDER BY Dept_Name, Emp_Name;
E. SELECTDept_Name, Emp_Name
FROM Departments d1, Employees e1
WHERE d1.Dept_No = e1.Dept_No
ORDER BY Dept_Name, Emp_Name;
Answer: D

SUN examen   certification 310-814   310-814   certification 310-814

NO.15 Which of the following statements will delete all the records from the table T1?
Each correct answer represents a complete solution. Choose all that apply.
A. TRUNCATE TABLE T1;
B. DELETE FROM T1;
C. DELETE * FROM T1;
D. DELETE T1;
Answer: A,B,D

SUN examen   310-814   310-814   310-814   310-814

NO.16 You work as a Database Administrator for a company. The company uses MySQL as its database.
You have created a table named Employees in the database. You want to create a list of
employees working in the organization, but you do not want to display any duplicate row in the
report. Which of the following statements will help you to accomplish the task?
A. SELECTemp_id, emp_name FROM Employees ORDER BY emp_id;
B. SELECTemp_id, emp_name FROM Employees;
C. SELECT DISTINCTemp_id, emp_name FROM Employees;
D. SELECTemp_id, emp_name FROM Employees GROUP BY emp_id;
Answer: C

SUN examen   310-814 examen   310-814 examen   certification 310-814   310-814 examen   310-814 examen

NO.17 FreeE
Consider the exhibit given below:
Which of the following queries will return the name of the customer who placed the highest amount of
orders and the total order amount?
A. SELECT CUSTOMER,MAX(UNITPRICE*QUANTITY) AS "TOTAL"
FROM ORDERS
GROUP BY CUSTOMER
/
B. SELECT CUSTOMER,SUM(UNITPRICE*QUANTITY) AS "TOTAL"
FROM ORDERS
WHERE SUM(UNITPRICE*QUANTITY)=
(SELECT MAX(SUM(UNITPRICE*QUANTITY))
FROM ORDERS
GROUP BY CUSTOMER)
GROUP BY CUSTOMER
/
C. SELECT CUSTOMER,SUM(UNITPRICE*QUANTITY) AS "TOTAL"
FROM ORDERS
GROUP BY CUSTOMER
HAVING SUM(UNITPRICE*QUANTITY)=
(SELECT MAX(SUM(UNITPRICE*QUANTITY))
FROM ORDERS
GROUP BY CUSTOMER)
/
D. SELECT CUSTOMER,SUM(UNITPRICE*QUANTITY) AS "TOTAL"
FROM ORDERS
GROUP BY CUSTOMER
HAVING SUM(UNITPRICE*QUANTITY)=
(SELECT SUM(UNITPRICE*QUANTITY)
FROM ORDERS
GROUP BY CUSTOMER)
/
Answer: C

SUN   310-814   310-814 examen   310-814

NO.18 Speed Inc. is a courier company. It delivers letters, parcels, and other items to their desired
destination. The company wants to create a database that keeps the records of items received,
items delivered, and also the information about any undelivered item. A table named Courierdetail has the
following attributes:
CustomerName
Address
ContactNumber
DateOfReceiving
DeliveryAcknowledgement
Which of the above-mentioned attributes can be designated as the primary key?
A. CustomerName
B. None of the attributes can be designated as the primary key.
C. Address
D. ContactNumber
Answer: B

SUN   310-814 examen   310-814   certification 310-814   certification 310-814   certification 310-814

NO.19 You work as a Database Administrator for a company. The company uses MySQL as the
database platform. You have created a table named Students in the database. The structure of the table is
as follows:
Stu_IDNUMBER (3) PRIMARY KEY
Stu_NameVARCHAR2 (25) NOT NULL
Fee NUMBER (8, 2)
Class NUMBER (5);
You have executed the following statement for the table "Students":
SELECT e.Stu_Name, m.Fee
FROM Students e, Students m
WHERE e.Stu_ID = m.stu_ID;
Which of the following join types have you used in the above statement?
A. Cross join
B. Equijoin
C. Self join
D. Outer join
Answer: C

SUN   certification 310-814   310-814   310-814

NO.20 You work as a Database Administrator for a company. The company uses MySQL as its database.
The database contains a table named Employees. You want to remove an index named
Emp_name_idx from the Employees table. Which of the following statements should you use to
accomplish the task?
A. DELETE INDEXEmp_name_idx;
B. CANCEL INDEXEmp_name_idx;
C. REMOVE INDEXEmp_name_idx;
D. DROP INDEXEmp_name_idx;
Answer: D

SUN   310-814   certification 310-814

NO.21 Adam works as a Database Administrator for a company. Adam has created a table named
Students. In this table, Adam wants to create a column to store the fees of students. Which of the
following data types will Adam use to accomplish the task?
Each correct answer represents a complete solution. Choose all that apply.
A. NUMBER
B. NUMBER(p,s)
C. DEFAULT
D. BLOB
Answer: A,B

SUN   310-814   310-814   certification 310-814

NO.22 Which of the following provides reliable units of work that allow correct recovery from failures and
keeps a database consistent even in cases of system failure?
A. Database security B.
Two-phase commit C.
Concurrency control
D. Database transaction
Answer: D

SUN   310-814   310-814 examen   310-814   certification 310-814

NO.23 Fill in the blank with the appropriate word.
A specifies that the value of a column (or columns), upon which the index is based, must
be unique.
A. unique index
Answer: A

SUN   310-814   310-814 examen   310-814 examen

NO.24 Which of the following are the types of numeric literals that can be used in arithmetic expressions?
Each correct answer represents a complete solution. Choose all that apply.
A. Numeric
B. Integer
C. Binary
D. Real
Answer: B,D

SUN   310-814   310-814 examen   310-814 examen   310-814

NO.25 Which of the following terms is described in the statement below?
"It is procedural code that is automatically executed in response to certain events on a particular
table or view in a database."
A. Data type
B. Table
C. Datetime data type
D. Database trigger
Answer: D

SUN examen   certification 310-814   310-814 examen   certification 310-814

NO.26 Considering the exhibit given below:
SQL> INSERT INTO T1 VALUES (10,'JOHN');
1 row created
SQL> INSERT INTO T1 VALUES (12,'SAM');
1 row created
SQL> INSERT INTO T1 VALUES (15,'ADAM');
1 row created
SQL> SAVEPOINT A;
Savepointcreated SQL>
UPDATE T1
2 SET NAME='SCOTT'
3 WHERE CUST_NBR=12;
1 row updated
SQL> SAVEPOINT B;
Savepointcreated
SQL> DELETE FROM T1 WHERE NAME LIKE '%A%';
1 row deleted
SQL> GRANT SELECT ON T1 TO BLAKE;
Grant succeeded
SQL> ROLLBACK;
Rollback complete
What will be the output of SELECT * FROM T1;?
A. CUST_NBR NAME
---------------- ---------
10 JOHN
B. CUST_NBR NAME
---------------- ---------
10 JOHN
12 SCOTT
15 ADAM
C. CUST_NBR NAME
---------------- ---------
10 JOHN
15 ADAM
D. CUST_NBR NAME
---------------- ---------
10 JOHN
12 SCOTT
Answer: D

SUN examen   310-814   310-814   310-814 examen   310-814

NO.27 Which of the following properties of concurrency control refers to the requirement that other
operations cannot access or see the data in an intermediate state during the execution of a
transaction?
A. Consistency
B. Durability
C. Atomicity
D. Isolation
Answer: D

SUN examen   310-814 examen   certification 310-814

NO.28 Which of the following are true about UPDATE statements?
Each correct answer represents a complete solution. Choose all that apply.
A. You can use the WHERE clause to have your update affects a specific set of rows.
B. You use the SET clause to update multiple columns of a table separated by commas.
C. You can use co-related sub query in UPDATE statements to update data from other tables.
D. If you don't use the WHERE clause then the UPDATE will not update any rows in the table.
Answer: A,B,C

certification SUN   310-814 examen   310-814   certification 310-814

NO.29 Adam works as a Database Administrator for a company. He creates a table named Students. He wants
to create a new table named Class with the help of the Students table. Which of the
following syntaxes will Adam use to accomplish the task?
A. CREATE TABLE Class
INSERT INTO SELECT * FROM Students;
B. CREATE TABLE Class
FROM SELECT * FROM Students;
C. CREATE TABLE Class
(SELECT * FROM Students);
D. CREATE TABLE Class
AS SELECT * FROM Students;
Answer: D

SUN examen   310-814   certification 310-814   310-814   310-814

NO.30 You work as a Database Administrator for a company. The company uses MySQL as its database
development platform. You have created a table named Employees in the database. You want to
display the names of the employees whose salary is more than $5000, but you do not want to
display any duplicate content. Therefore, you have written the following query:
SELECT emp_id, DISTINCT emp_name WHERE salary > 5000
FROM Employees;
Which of the following statements is true about the above query?
A. The statement will display only unique names whose salary is more than $5000.
B. The UNIQUE clause should be used in place of the DISTINCT clause.
C. The statement will give an error.
D. The statement will display those records whose salary is more than $5000.
Answer: C

certification SUN   310-814   certification 310-814   310-814 examen

Beaucoup de gens trouvent difficile à passer le test SUN 310-814, c'est juste parce que ils n'ont pas bien choisi une bonne Q&A. Vous penserez que le test SUN 310-814 n'est pas du tout autant dur que l'imaginer. Le produit de Pass4Test non seulement comprend les Q&As qui sont impressionnées par sa grande couverture des Questions, mais aussi le service en ligne et le service après vendre.


没有评论:

发表评论