Microsoft.BrainDump.70-457.v2012-12-21.by.Derek.184q.vcehttps://www.examcollection.com/microsoft/Microsoft.BrainDump.70-457.v2012-12-21.by.Derek.184q.vce.file.htmlMicrosoft.BrainDump.70-457.v2012-12-21.by.Derek.184q.vceAlexhttps://www.examcollection.com/microsoft/Microsoft.BrainDump.70-457.v2012-12-21.by.Derek.184q.vce.file.html#comment-176092Exam A Q14<br /> I guess the correct answer should not include a subquery.<br /> Let's follow the requirements:<br /> 1) NOT use object delimiters -- ok<br /> 2) Return the most recent orders first.<br /> SELECT * FROM Orders ORDER BY OrderDate DESC<br /> <br /> 3) Use the first initial of the table as an alias<br /> SELECT O.* FROM Orders O ORDER BY O.OrderDate DESC<br /> <br /> 4) Return the most recent order date for each customer<br /> SELECT<br /> MAX(O.OrderDate)<br /> FROM Orders O<br /> GROUP BY O.CustomerID<br /> ORDER BY MAX(O.OrderDate) DESC<br /> <br /> 5) Retrieve the last name of the person who placed the order<br /> SELECT<br /> C.LastName,<br /> MAX(O.OrderDate)<br /> FROM Orders O<br /> INNER JOIN Customers C<br /> ON C.CustomerID = O.CustomerID<br /> GROUP BY O.CustomerID, C.LastName<br /> ORDER BY MAX(O.OrderDate) DESC<br /> <br /> 6) Return the order date in a column named MostRecentOrderDate that appears as the last column in the report<br /> SELECT<br /> C.LastName,<br /> MAX(O.OrderDate) AS MostRecentOrderDate <br /> FROM Orders O<br /> INNER JOIN Customers C<br /> ON C.CustomerID = O.CustomerID<br /> GROUP BY O.CustomerID, C.LastName<br /> ORDER BY MAX(O.OrderDate) DESCSunday, June 30, 2013 12:39 PM UTBurgoshttps://www.examcollection.com/microsoft/Microsoft.BrainDump.70-457.v2012-12-21.by.Derek.184q.vce.file.html#comment-145544It is valid im Brazil. Pass with 900/1000 (session with 25 QUERING questions with 80 minutes) and 933/1000 (session with 25 ADM questions with 80 minutes) today. I uploaded new version of this dump (will be avaiable soon).Saturday, January 26, 2013 1:03 AM UTrajahttps://www.examcollection.com/microsoft/Microsoft.BrainDump.70-457.v2012-12-21.by.Derek.184q.vce.file.html#comment-145263Hi friends<br /> <br /> <br /> I am planning to appear for this exam. please tell me if this dump is valid or not.<br /> <br /> <br /> Will take the exam with in a week if its validThursday, January 24, 2013 5:53 PM UTleohttps://www.examcollection.com/microsoft/Microsoft.BrainDump.70-457.v2012-12-21.by.Derek.184q.vce.file.html#comment-144725one thing to remind all candidates, make sure you have scrolled to the end of the answer list when doing 'Build list and reorder' test, especially when your test centres are using crap mouses on the test machines..Tuesday, January 22, 2013 5:50 AM UTleohttps://www.examcollection.com/microsoft/Microsoft.BrainDump.70-457.v2012-12-21.by.Derek.184q.vce.file.html#comment-144691passed yesterday with 800, there were about 3 new questions, i will try to remember and post here..Tuesday, January 22, 2013 12:21 AM UTAmrohttps://www.examcollection.com/microsoft/Microsoft.BrainDump.70-457.v2012-12-21.by.Derek.184q.vce.file.html#comment-144424I think PRECEDING and previous same meaningSunday, January 20, 2013 5:54 AM UTMikehttps://www.examcollection.com/microsoft/Microsoft.BrainDump.70-457.v2012-12-21.by.Derek.184q.vce.file.html#comment-143675Thanks Cibek, i didn't read that difference before.<br /> Thanks for clarification.Tuesday, January 15, 2013 7:51 PM UTCibekhttps://www.examcollection.com/microsoft/Microsoft.BrainDump.70-457.v2012-12-21.by.Derek.184q.vce.file.html#comment-143502Mike ---&gt;&gt; Exist a very little difference between those question<br /> Q36 say: "for each year and its PRECEDING year"<br /> Q13 say :"for each year and its PREVIOUS year"<br /> So in the first question you should use LEAD, and the other LAG,<br /> <br /> Hope clarify your doubtMonday, January 14, 2013 8:09 PM UTMikehttps://www.examcollection.com/microsoft/Microsoft.BrainDump.70-457.v2012-12-21.by.Derek.184q.vce.file.html#comment-142574Hello all, there are 2 same question with different answer, i mean Q13 of Exam B and Q36 of exam A, Which are correct of <br /> A) SELECT Territory, Year, Profit, <br /> LAG(Profit,1,0) OVER (PARTITION BY Territory Order by Year) as PrevProfit FROM Profit . OR <br /> B) SELECT Territory, Year, Profit, <br /> LEAD(Profit,1,0) OVER (PARTITION BY Territory Order by Year) as PrevProfit FROM Profit. ??<br /> ---------- <br /> Thanks for your answers.Wednesday, January 09, 2013 1:37 PM UTNaderhttps://www.examcollection.com/microsoft/Microsoft.BrainDump.70-457.v2012-12-21.by.Derek.184q.vce.file.html#comment-142399Passed from a week ago with 733 for part 1 (querying) and 866 for part 2 Administration) , some Querying questions (part 1) are out of the dump, you should not study this dump based on memorizing the answer's letters and order because the choices order is not similar to the order in the dump. <br /> <br /> The exam is two parts, the first one is related to Querying topics and the second one is related to the Administration ones, the Administration part answers are more accurate than the development ones, also all Administration questions are from the dump.<br /> <br /> Thanks for Derek and AnotherInbox :) :)Tuesday, January 08, 2013 11:14 AM UTdavidhttps://www.examcollection.com/microsoft/Microsoft.BrainDump.70-457.v2012-12-21.by.Derek.184q.vce.file.html#comment-142098question 28 answer is wrong. <br /> correct answer should be<br /> <br /> WITH CTEDupRecords<br /> AS<br /> (<br /> SELECT MAX(CreatedDateTime) AS CreatedDateTime, ProductName<br /> FROM Products<br /> GROUP BY ProductName<br /> HAVING COUNT(*) &gt; 1<br /> )<br /> DELETE p<br /> FROM Products p<br /> JOIN CTEDupRecords cte ON<br /> p.ProductName = cte.ProductName<br /> AND p.CreatedDateTime &lt; cte.CreatedDateTimeSunday, January 06, 2013 1:26 AM UTtesterhttps://www.examcollection.com/microsoft/Microsoft.BrainDump.70-457.v2012-12-21.by.Derek.184q.vce.file.html#comment-141807thanks everyone for the great dump, passed with 833, but there are a few new questions in both query part (ex. Return Data from a Stored Procedure) and admin part. Even, some questions are the same but expressions of the answers changed, so you have to not only memorize the questions and their exact answers, but study the link to understand the concepts better as well.Thursday, January 03, 2013 9:40 PM UTrecert_againhttps://www.examcollection.com/microsoft/Microsoft.BrainDump.70-457.v2012-12-21.by.Derek.184q.vce.file.html#comment-140703@Derek, in reaction to your question.<br /> <br /> Exam B Q3<br /> It is a bit unclear on how to interpretate 'efficient'. Easiest qry to write, or easiest qry to be executed by SQL. I am guessing, most efficient to SQL Engine/Execute.<br /> <br /> Answer D is a query that has values in the where statement that are datatypes equal to the fields or the values in the index on the fields. Therefore is is more likely that SQLengine can do a seek which is more efficient than a scan.<br /> <br /> The datatype is datetime, so date + time.<br /> <br /> A will only return data from that day on the time 00:00:00, there are more (mili)seconds in a day you might miss something.<br /> B will only return data exactly equal to getdate(), to the second. So you would miss some again.<br /> C might work if there was no syntax error in the where statement. The getdate() function has to many arguments. If there was no error in the statement this would be 'most efficient to write', only because there is less code to write.<br /> D will work effecient. It runs the where statement againts the database in the correct datatypes and first will go to:<br /> -earliest time getdate() yyyy-mm-dd 00:00:00:000<br /> -earliest time the day after current day (with dateadd +D1) yyyy-mm-dd 00:00:00:000, so with using &lt; you will return the current day until 23:59:59:99999. All returned in correct (efficient datatype) and the qry itself is correct.Wednesday, December 26, 2012 10:53 AM UTDerekhttps://www.examcollection.com/microsoft/Microsoft.BrainDump.70-457.v2012-12-21.by.Derek.184q.vce.file.html#comment-140456Fixed the answers more than 10 questionsMonday, December 24, 2012 2:12 AM UT