Number: 070-433 Passing Score: 800 Time Limit: 120 min File Version: 2010-02-17 Microsoft _CertifyMe_ 70-433 _v2010-02-13_148q_by-Smith Questions: 148 Best choice for you. go through that atleast read it once carefully. Good Luck for Exam. By Smith
Exam A QUESTION 1 You have a user named John. He has SELECT access to the Sales schema. You need to eliminate John's SELECT access rights from the Sales.SalesOrder table without affecting his other permissions. Which Transact-SQL statement should you use? A. B. C. D. DROP USER John; DENY SELECT ON Sales.SalesOrder TO John; GRANT DELETE ON Sales.SalesOrder TO John; REVOKE SELECT ON Sales.SalesOrder FROM John;
Answer: B Section: (none) Explanation/Reference:
QUESTION 2 You need to create a column that allows you to create a unique constraint. Which two column definitions should you choose? (Each correct answer presents a complete solution. Choose two.) A. B. C. D. nvarchar(100) NULL nvarchar(max) NOT NULL nvarchar(100) NOT NULL nvarchar(100) SPARSE NULL
Answer: AC Section: (none) Explanation/Reference:
QUESTION 3 You manage a SQL Server 2008 database that is located at your company's corporate headquarters. The database contains a table named dbo.Sales. You need to create different views of the dbo.Sales table that will be used by each region to insert, update, and delete rows. Each regional office must only be able to insert, update, and delete rows for their respective region. Which view should you create for Region1? A. CREATE VIEW dbo.Region1Sales AS SELECT SalesID,OrderQty,SalespersonID,RegionID FROM dbo.Sales WHERE RegionID = 1; B. CREATE VIEW dbo.Region1Sales AS SELECT SalesID,OrderQty,SalespersonID,RegionID FROM dbo.Sales WHERE RegionID = 1 WITH CHECK OPTION; C. CREATE VIEW dbo.Region1Sales WITH SCHEMABINDING AS SELECT SalesID,OrderQty,SalespersonID,RegionID FROM dbo.Sales WHERE RegionID = 1;
D. CREATE VIEW dbo.Region1Sales WITH VIEW_METADATA AS SELECT