Microsoft 70-461 Study Material

We are Providing you the Best Study Material to Pass the Microsoft 70-461 Certification Exam. Our Material is Very Helpful for those Students Who want to pass their Certification Exams in High Scores.

Latest Microsoft News

We are also Made you aware of all the latest News of Microsoft as well as the Products of Microsoft.

Microsoft 70-461 Certifications Exam Questions

Here You Can Get the Latest Exam Questions Of Microsoft 70-461 Certification Exams. Your Success is Guaranteed if You go through these Questions Once.

We Ensure Your Success

We Can Understand the Importance of your Success in Exam thats why We Put All Our Efforts to Provide You the Best and Most Updated Study Material.

Tuesday, 19 January 2016

Microsoft 70-461 Exam Questions

QUESTION NO: 7

You develop a database for a travel application. You need to design tables and other database objects.
You create a stored procedure. You need to supply the stored procedure with multiple event names and their dates as parameters. What should you do?

A. Use the CAST function.
B. Use the DATE data type.
C. Use the FORMAT function.
D. Use an appropriate collation.
E. Use a user-defined table type.
F. Use the VARBINARY data type.
G. Use the DATETIME data type.
H. Use the DATETIME2 data type.
I. Use the DATETIMEOFFSET data type.
J. Use the TODATETIMEOFFSET function.

Answer: E

Thursday, 14 January 2016

Microsoft Buys Company That Helps Crunch Messy Data


Acquisition may beef up Microsoft’s big data analytics push.

Microsoft acquires Meta Nautix, a startup founded by engineers from Google and Facebook to help more people crack big data.

The terms were not disclosed, but based in Palo Alto California Metanautix had raised about $ 7 million in venture funding from Sequoia Capital and others since its founding in 2012.

A founder Theo Vassilakis, who led the development of Dremel, a system open for consultation of scattered data between different systems code. Dremel has become the core (GOOG ^ 2.02%) BigQuery highly regarded data analysis service of Google. Its co-founder is Apostolos Lerios, former Facebook (FB 3.07%) senior engineer who worked in the photo service of this company, which is home to billions of our own photos and other images.

Metanautix applies the SQL standard (the initials stand structure query language) is used to quiz data from traditional relational data bases to the wild and woolly that do not fit this mold line and  Microsoft exam dumps columns. SQL is the standard language used to ask questions relational databases such as Oracle (ORCL ^ 2.08%) and Microsoft SQL Server.

Being able to apply this same tool to messy non-relational data, in theory it means that companies can learn a lot from various data sources at once. And tens of thousands of SQL and experts can apply their existing skills to new data types.

Therefore, a business analyst for a product manufacturer may wonder how a product sold in the second quarter, but also analyze the messages on Twitter or Facebook to see how customers liked them and they liked what they bought. A set of information is one thing at a traditional database, another set of data is the disruption of social networks.

In a blog post announcing the deal, Joseph Sirosh, Microsoft (MSFT ^ 2.85%) vice president of corporate data do not provide much in the way of detailed plans for Metanautix other than to say that Microsoft technology in the global data platform Microsoft. These include the SQL Server data and Cortana above the products of data analysis.

It was hard to know if the product of years Metanautix the Quest data engine, which cost HP, Shutterfly, and the University of Chicago and customers even be offered separately or whether its technology will be integrated into the Microsoft offering. I guess the latter.

Microsoft 70-461 Sample Questions

QUESTION NO: 6

You develop a Microsoft SQL Server 2012 server database that supports an application. The application contains a table that has the following definition:

CREATE TABLE Inventory
(ItemID int NOT NULL PRIMARY KEY,
ItemsInStore int NOT NULL,
ItemsInWarehouse int NOT NULL)

You need to create a computed column that returns the sum total of the ItemsInStore and
ItemsInWarehouse values for each row.
Which Transact-SQL statement should you use?

A. ALTER TABLE Inventory ADD TotalItems AS ItemsInStore + ItemsInWarehouse
B. ALTER TABLE Inventory ADD ItemsInStore - ItemsInWarehouse = TotalItemss
C. ALTER TABLE Inventory ADD TotalItems = ItemsInStore + ItemsInWarehouse
D. ALTER TABLE Inventory ADD TotalItems AS SUM(ItemsInStore, ItemslnWarehouse);

Answer: A

Wednesday, 30 December 2015

Microsoft 70-461 Sample Questions

QUESTION NO: 5

You are a database developer at an independent software vendor. You create stored procedures that contain proprietary code.
You need to protect the code from being viewed by your customers.
Which stored procedure option should you use?

A. ENCRYPTBYKEY
B. ENCRYPTION
C. ENCRYPTBYPASSPHRASE
D. ENCRYPTBYCERT

Answer: B

Wednesday, 4 November 2015

Microsoft 70-461 Sample Questions

QUESTION NO: 4

You work as a database developer at ABC.com. You are developing a SQL server 2012 database
for ABC.com's e-Commerce application. The application allows ABC.com employees from
different regions to execute a store procedure based on their location.
The location of the ABC.com employees are determined by an input parameter named @location.
You want to develop a process that will execute the correct stored procedure for every ABC.com employee based on their location.

How would you accomplish this?

A.
You should make use of a client cursor.
B. You should make use of a static cursor.
C. You should make use of a forward-only cursor.
D. You should make use of a dynamic cursor.
E. You should make use of a keyset cursor.

Answer: E

Tuesday, 6 October 2015

Microsoft 70-461 Sample Question

Question No:3

You work as a database developer at ABC.com. ABC.com has a SQL Server 2012 database
named SalesDB that has a table named WeeklySales. The WeeklySales table records the sales amount for each of ABC.com's 20 sales representitives.
You need to write a Transact-SQL query that ranks the sales representatives by the average sales amount for the past year. You want the sales representatives with the same average sales amount to have the same rank with the subsequent rank being skipped.

Which ranking function should you use?

A. The RANK( ) OVER function.
B. The NTILE( ) OVER function
C. The DENSE_RANK( ) OVER function
D. The ROW_NUMBER( ) OVER function
E. The FORMAT function.

Answer: C

Sunday, 4 October 2015

Microsoft 70-461 Sample Question

Question No:2 CORRECT TEXT

You are employed as a SQL Server 2012 database developer at ABC.com. ABC.com has a
database named HRDB with tables named Staff and SalaryHistory. The Staff and SalaryHistory
tables were created using the following Transact-SQL code:
CREATE TABLE HRDB.Staff
(
StaffID int NOT NULL PRIMARY KEY,
FirstName nvarchar(50) NOT NULL,
LastName nvarchar(50) NOT NULL,
JobTitle nvarchar(50) NOT NULL,
StaffAddress nvarchar (200) NULL,

StaffCity nvarchar(50) NOT NULL,
StaffState nvarchar(50) NOT NULL,
StaffPhone varchar (10) NOT NULL,
Salary smallmoney NOT NULL
)
GO
CREATE TABLE HRDB.SalaryHistory
(
StaffID int NOT NULL,
IncreaseDate date DEFAULT GETDATE(),
PrevSalary smallmoney NOT NULL,
NewSalary smallmoney NOT NULL
)
GO
You must write a Transact-SQL query to affect a salary increase of 6.5% for all staff members with a JobTitle of Support Technician. Your query must also update the data in the SalaryHistory table.

What Transact SQL statement would accomplish this task?

To answer, type the correct code in the answer area.

Answer:
UPDATE Staff
SET Salary = Salary * 1.065
WHERE JobTitle = 'Support Technician'
OUTPUT inserted.StaffID, deleted.Salary, inserted.Salary
INTO SalaryHistory(StaffID, PrevSalary, NewSalary)