IBM Assessment: Informix 11.50 Application Developer - A2090-556 模擬練習
When using IBM Data Server Driver for JDBC to connect to Informix Server, which URL should be used when making a connection using Distributed Relational Database Architecture protocol?
正解: A
Which datatype is a synonym for NUMERIC?
正解: D
What happens if you run the following CREATE TABLE statement without the PUT clause?
CREATE TABLE EMPLOYEE
(EMP_ID INTEGER, EMP_PICTURE BLOB) PUT EMP_PICTURE IN MYSPACE1;
CREATE TABLE EMPLOYEE
(EMP_ID INTEGER, EMP_PICTURE BLOB) PUT EMP_PICTURE IN MYSPACE1;
正解: C
What are the default privileges when a table is created by the user?
正解: C
Which of the following data types can be directly cast to a DATE type?
正解: B
What does the TRACE PROCEDURE statement do when debugging stored procedures?
正解: A
What are user created temporary tables used for?
正解: B
Given the following program code: What is the minimum privilege required to successfully execute the program?


正解: A
Assuming you have an employee table that stores the salary for each employee. What will this query return?
SELECT AVG(salary), STDEV(salary) FROM employees;
SELECT AVG(salary), STDEV(salary) FROM employees;
正解: A
Overloading of built-in functions provides which of the following benefits?
正解: A