IPMC FINAL EXAMINATION FOR SQL ADMINISTRATION TIME: 1 hour DATE: 4 DECEMBER, 2012 Answer all questions 1. Which of the following services of SQL Server 2005 allows you to implement message-based communication? A. Full-text search B. Service Broker C. Notification services D. Replication 2. Which of the following services of SQL Server 2005 allows you to gather and integrate data from disparate data sources in an organization? A. Analysis services B. Integration services C. Notification services D. Replication 3. SQL can be categorized as explain them in one line: A. (DDL) B. (DML) C. (DCL) D. (DQL) 4. Which of the following features of SQL Server 2005 allow the developers to implement their programming logic in any language supported by the .NET framework? A. Support for data migration B. High availability C. CLR integration D. Scalability 5. Which of the following tools of SQL Server 2008 allow starting and stopping the full-text search? A. SQL Server Management Studio B. Business Intelligence Development Studio C. Database Engine Tuning Advisor D. SQL Server Configuration Manager 6. Explain the following in online. int float char varchar 7. What are these used for in SQL? A. + (for addition) B. - (for subtraction) C. / (for division) D. * (for multiplication) E. % (for modulo) 8. Write a query to display all the records of the ProductModel table where the product name begins with HL. A. SELECT * FROM Production.ProductModel WHERE Name LIKE '%HL' B. SELECT * FROM Production.ProductModel WHERE Name LIKE '’HL% '’ C. SELECT * FROM Production.ProductModel WHERE Name LIKE 'HL%' D. SELECT * FROM Production.ProductModel WHERE Name LIKE '’%HL’’ 9. Explain the following in one line. A. CREATE B. INSERT C. DELETE D. UPDATE E. GROUP BY 10. What is the word DISTINCT used for in SQL?