Question: 9
You work in a company which is named Wiikigo Corp. The company uses SQL Server 2008. You are the administrator of the company database.
Now you are in charge of a SQL Server 2008 instance. There is a database named DB1 in the instance. On DB1, quite few logged operations are performed.
Now according to the requirement of the company CIO, you must validate that the database can be restored to a specific point in time.
So what action should you perform to achieve this goal?
A. You should verify that the simple recovery model is used by the database
B. You should verify that the full recovery model is used by the database.
C. You should verify that the checksum page verify option is used by the database
D. You should verify that the bulk-logged recovery model is used by the database
Answer: B
Wednesday, 30 December 2015
70-432 Sample Question: 8
Question: 8
You work in a company which is named Wiikigo Corp. The company uses SQL Server 2008.
You are the administrator of the company database. Now you are in charge of a SQL Server 2008 instance.
There is a computer which hosts several applications in your company.
The instance runs on the computer. A job named DeliveryList is created by you. This job requires a file to be written to a file server.
But because the job cannot access the file server, it fails to run. You intend to configure the SQL Server Agent service so that only the SQL Server Agent service has read and write
access to the file server.
Which account type should you use?
A. You should use local Service account
B. You should use network Service account
C. You should use domain account
D. You should use local System account
Answer: C
You work in a company which is named Wiikigo Corp. The company uses SQL Server 2008.
You are the administrator of the company database. Now you are in charge of a SQL Server 2008 instance.
There is a computer which hosts several applications in your company.
The instance runs on the computer. A job named DeliveryList is created by you. This job requires a file to be written to a file server.
But because the job cannot access the file server, it fails to run. You intend to configure the SQL Server Agent service so that only the SQL Server Agent service has read and write
access to the file server.
Which account type should you use?
A. You should use local Service account
B. You should use network Service account
C. You should use domain account
D. You should use local System account
Answer: C
Monday, 14 December 2015
You need to implement the company security policy that is stored in the RestrictedLogonHours table.What should you do?
70-432 Sample Question: 7
Question: 7
You administer a SQL Server 2008 instance. The security policy permits members of a Windows group named CONTOSO\Sales to establish new connections to the SQL Server instance only during business horns between 07:00 horns and 19:00 hours. Other users may connect to the SQL Server instance any time.
You write the following Transact-SQL statements.
You need to implement the company security policy that is stored in the
RestrictedLogonHours table.What should you do?
A. Create a logon trigger that denies the connection to the CONTOSO\Sales group during
non-business hours.
B. Create a SQL Server Agent job that causes the SQL Server Windows service to pause
during non-business hours.
C. Create a SQL Server Agent job that periodically looks for and kills connections made by the CONTOSO\Sales group during non-business hours.
D. Create a policy that uses a condition based on the Server Audit facet. Use the policy to deny the connection to the CONTOSO\Sales group during non-business hours.
Answer: A
Question: 7
You administer a SQL Server 2008 instance. The security policy permits members of a Windows group named CONTOSO\Sales to establish new connections to the SQL Server instance only during business horns between 07:00 horns and 19:00 hours. Other users may connect to the SQL Server instance any time.
You write the following Transact-SQL statements.
You need to implement the company security policy that is stored in the
RestrictedLogonHours table.What should you do?
A. Create a logon trigger that denies the connection to the CONTOSO\Sales group during
non-business hours.
B. Create a SQL Server Agent job that causes the SQL Server Windows service to pause
during non-business hours.
C. Create a SQL Server Agent job that periodically looks for and kills connections made by the CONTOSO\Sales group during non-business hours.
D. Create a policy that uses a condition based on the Server Audit facet. Use the policy to deny the connection to the CONTOSO\Sales group during non-business hours.
Answer: A
Thursday, 10 December 2015
70-432 Sample Question: 6
Question: 6
You administer a SQL Server 2008 instance that contains a database named Ad venture Works.
You are log shipping the Adventureworks database to a remote SQL Server 2008 instance.
During the weekend, the primary SQL Server instance required a restart. After the
weekend, you discover that log shipping has stopped working.
You need to troubleshoot log shipping of the Adventureworks database. What should you do?
A. Verify whether the SQL Server Agent is started on the primary server.
B. Verify whether the AdventureWorks database uses the Simple recovery model.
C. Verify whether the SQL Server Volume Shadow Copy Service (VSS) Writer is started on
the primary server.
D. Execute a DBCC CHECKDB statement on the AdventureWorks database by using the
EXTENDED_LOGICAL_CHECKS option.
Answer: A
You administer a SQL Server 2008 instance that contains a database named Ad venture Works.
You are log shipping the Adventureworks database to a remote SQL Server 2008 instance.
During the weekend, the primary SQL Server instance required a restart. After the
weekend, you discover that log shipping has stopped working.
You need to troubleshoot log shipping of the Adventureworks database. What should you do?
A. Verify whether the SQL Server Agent is started on the primary server.
B. Verify whether the AdventureWorks database uses the Simple recovery model.
C. Verify whether the SQL Server Volume Shadow Copy Service (VSS) Writer is started on
the primary server.
D. Execute a DBCC CHECKDB statement on the AdventureWorks database by using the
EXTENDED_LOGICAL_CHECKS option.
Answer: A
Tuesday, 24 March 2015
70-432 Sample Question : 5
QUESTION 5:
You administer two SQL Server 2008 instances named Instance1 and Instance2.A database named
Customers resides on Instance1.You move the Customers database from Instance1 to Instance2.
A SQL Server login named User1 that has the password "111999" is used by a user to access the
database on Instance1.You create the same SQL Server login on Instance2.The user attempts to access the Customers database on Instance2 by using the SQL Server login User1.However, the user receives an error message which indicates that the access to the Customers database is denied.You need to ensure that User1 can access the Customers database.Which Transact-SQL statements should you execute on Instance2?
A.USE Customers;ALTER USER User1 ENABLE;
B.USE Customers;ALTER LOGIN User1 WITH PASSWORD = '111999' UNLOCK;
C.USE Customers;ALTER USER User1 WITH LOGIN = User1;
D.USE Customers;ALTER LOGIN User1 WITH DEFAULT_DATABASE = Customers;
Answer: C
You administer two SQL Server 2008 instances named Instance1 and Instance2.A database named
Customers resides on Instance1.You move the Customers database from Instance1 to Instance2.
A SQL Server login named User1 that has the password "111999" is used by a user to access the
database on Instance1.You create the same SQL Server login on Instance2.The user attempts to access the Customers database on Instance2 by using the SQL Server login User1.However, the user receives an error message which indicates that the access to the Customers database is denied.You need to ensure that User1 can access the Customers database.Which Transact-SQL statements should you execute on Instance2?
A.USE Customers;ALTER USER User1 ENABLE;
B.USE Customers;ALTER LOGIN User1 WITH PASSWORD = '111999' UNLOCK;
C.USE Customers;ALTER USER User1 WITH LOGIN = User1;
D.USE Customers;ALTER LOGIN User1 WITH DEFAULT_DATABASE = Customers;
Answer: C
Sunday, 8 March 2015
Support Videos Posted For The Microsoft Lumia 640 XL
The Lumia 640 Microsoft XL is a version of Microsoft size phablet Lumia 640. The handset has a larger 5.7-inch 1280 x 720 screen resolution compared to the 5-inch display on the Lumia 640. in addition to the screen size, the Lumia 640 XL has better camera on the back (13MP) and front (5 megapixels). The battery is also a higher cell capacity of 3000mAh. AT & T will offer two models at a later date reserved. While the price has not been revealed yet, we could see the Nokia Lumia 640 XL of $ 220 in the US.
Both laptops were introduced at MWC, and Microsoft weekend posted some support videos for the Lumia 640 XL. The first video shows the keys and phone parts, starting with the volume buttons on the right side of the phone. The support of the video also shows us the keys and the power supply. On the front of the phone is the proximity sensor and shows the micro USB port on the bottom of the laptop.
The second video shows how to insert a SIM card into your device. The phone has a SIM card slots (two, if it is a Dual SIM variant) under the battery. This means that you will have to remove the back cover and remove the cell to access the site. You must do the same to insert a microSD memory card increases. If you have Microsoft Lumia 640 XL on your wish list, get a good start in learning.
Tuesday, 24 February 2015
70-432 Sample Question : 4
QUESTION 4:
Note: This question is part of a series of questions that use the same or similar answer choices.An answer choice may be correct for more than one question in the series.Each question is independent of the other questions in this series.Information and details provided in a question apply only to that question.You administer a Microsoft SQL Server 2008 R2 instance.The instance has a database named CustomerOrders.The database is backed up by using the weekly scheduled SQL Server Agent jobs.The backup schedule is shown in the following table:
A drive fails and the CustomerOrders database goes into suspect mode on Tuesday at 09:00 hours.
You need to restore the backup.What should you do?
A.Restore the backups taken on Wednesday and Thursday at 09:00 hours.
B.Restore the backups taken on Wednesday, Thursday, and Friday.
C.Restore the backups taken on Wednesday and Friday.
D.Restore the backup taken on Wednesday only.
E.Restore the backups taken Wednesday, Friday, and Saturday.
F.Restore the backup taken on Sunday only.
G.Restore the backups taken on Wednesday, Thursday at 09:00 hours, and Thursday at 18:00 hours.
H.Restore the backups taken on Sunday and Monday.
Answer: H
Note: This question is part of a series of questions that use the same or similar answer choices.An answer choice may be correct for more than one question in the series.Each question is independent of the other questions in this series.Information and details provided in a question apply only to that question.You administer a Microsoft SQL Server 2008 R2 instance.The instance has a database named CustomerOrders.The database is backed up by using the weekly scheduled SQL Server Agent jobs.The backup schedule is shown in the following table:
A drive fails and the CustomerOrders database goes into suspect mode on Tuesday at 09:00 hours.
You need to restore the backup.What should you do?
A.Restore the backups taken on Wednesday and Thursday at 09:00 hours.
B.Restore the backups taken on Wednesday, Thursday, and Friday.
C.Restore the backups taken on Wednesday and Friday.
D.Restore the backup taken on Wednesday only.
E.Restore the backups taken Wednesday, Friday, and Saturday.
F.Restore the backup taken on Sunday only.
G.Restore the backups taken on Wednesday, Thursday at 09:00 hours, and Thursday at 18:00 hours.
H.Restore the backups taken on Sunday and Monday.
Answer: H
70-432 Sample Question : 3
QUESTION 3:
You administer three SQL Server 2008 instances named Instance1, Instance2, and Instance3.Each of the three instances runs on a separate server.A mission-critical database is mirrored between Instance1
and Instance2.Instance3 acts as the witness.Instance1 currently acts as the Principal.You plan to apply a patch to both servers.The patch requires a restart of the server. You need to find out the sequence of steps necessary to ensure that the following requirements are met:
The patching process is completed in the shortest possible time.
The database is online on the partner that currently does not apply the patch.
The database does not failover to the other partner during this time.
What should you do?
A.Suspend the mirroring session.
Apply the patch to the server that runs Instance2.
Resume the mirroring session.
Manually failover the mirroring session.
Apply the patch to the server that runs Instance1.
B.Apply the patch to the server that runs Instance2.
Manually failover the mirroring session.
Apply the patch to the server that runs Instance1.
C.Remove the mirroring session.
Apply the patch to the server that runs Instance2.
Apply the patch to the server that runs Instance1.
Re-establish the mirroring session.
D.Apply the patch to the server that runs Instance2.
Apply the patch to the server that runs Instance1.
Answer: A
You administer three SQL Server 2008 instances named Instance1, Instance2, and Instance3.Each of the three instances runs on a separate server.A mission-critical database is mirrored between Instance1
and Instance2.Instance3 acts as the witness.Instance1 currently acts as the Principal.You plan to apply a patch to both servers.The patch requires a restart of the server. You need to find out the sequence of steps necessary to ensure that the following requirements are met:
The patching process is completed in the shortest possible time.
The database is online on the partner that currently does not apply the patch.
The database does not failover to the other partner during this time.
What should you do?
A.Suspend the mirroring session.
Apply the patch to the server that runs Instance2.
Resume the mirroring session.
Manually failover the mirroring session.
Apply the patch to the server that runs Instance1.
B.Apply the patch to the server that runs Instance2.
Manually failover the mirroring session.
Apply the patch to the server that runs Instance1.
C.Remove the mirroring session.
Apply the patch to the server that runs Instance2.
Apply the patch to the server that runs Instance1.
Re-establish the mirroring session.
D.Apply the patch to the server that runs Instance2.
Apply the patch to the server that runs Instance1.
Answer: A
Thursday, 19 February 2015
Microsoft Offers Trade-In Deal For Surface Pro 3
Surface tablet owners who wish to upgrade to a Pro 3 surface can take advantage of a balance in supply through temporary Microsoft.Valid until March 8, the agreement provides up to $ 650 in credit for trade your tablet existing surface . Then you can request that the credit for buying a Surface Pro 3. The promotion is only good in the online site of Microsoft and only in the United States and Puerto Rico.
Microsoft has been promoting the Surface Pro 3 as a viable alternative to a traditional notebook, as Apple MacBook Air. This edition offers a high-end display of 12 inches and runs on an Intel Core processor. All models are compressed surface as standard, but can be used as portable computers through keyboards touch lid or cover type. The software giant has worked to increase sales of the surface through discounts and special promotions.
An agreement shaving $ 100 the price of a Surface Pro 3 was ending February 7, but was extended until February 28, who has also recently added editing 64GB Intel Intel Core i3, who had previously been excluded from discount . And the April 5, you can get a clear protective sleeve for your area.
Microsoft is throwing around a figure of up to $ 650 to trade for the surface current. But what really gets depends on the model and condition. The $ 650 is your only if trade in an area of 256 GB i3 Pro 3 with the adapter and the keyboard type. That option would only make sense if you are trying to update the most powerful i7 512GB version.
The less expensive models are naturally worth less as part payment. Trade in a 64 GB Surface Pro 2, for example, and you will receive a credit of $ 189. Trade in an area of 32 GB 2 and receive $ 105. Or change a Surface Pro Original 128 GB, and you grab $ 207.
Given the $ 100 discount, here are the current prices in the Pro 3 stair surface:
• Intel Core i3, 64GB - $ 699
• Intel Core i5, 128 GB - $ 899
• Intel Core i5 256 GB - $ 1,199
• Intel Core i7, 256GB - $ 1.449
• Intel Core i7, 512GB - $ 1.849
Here's how the process of barter:
• Surf to Microsoft Surface Pro 3 trade on the page to see how much better your current area.
• If you are happy with the price, send your current Microsoft Surface and accessories.
• In return, coupon email from Microsoft, good for the purchase of a new Surface Pro 3.
• On output, apply the discount code, and the price of the Surface Pro 3 is expected to fall accordingly.
The surface model that trade in must be in working condition, which means that you must activate the battery should hold its charge and should not be broken or components or other damage or defects missing. Redemption code receives in exchange for his trade is only valid until April 8.
70-432 Sample Question : 2
QUESTION 2:
You are employed as an Exchange administrator at ABC.com. ABC.com has deployed a hybrid installation of Exchange Server 2013 and Microsoft Office 365.
The e-mail addresses of the ABC.com users have a SMTP suffix of ABC.com. You have received instructions to make sure that all e-mails are sent straight to the internet.
Which of the following actions should you take?
A. You should consider running a non-owner mailbox access report.
B. You should consider running the Hybrid Configuration wizard.
C. You should consider accessing the Exchange Admin Center.
D. You should consider configuring the Microsoft Exchange Online Protection (EOP) Send connector
Answer: B
You are employed as an Exchange administrator at ABC.com. ABC.com has deployed a hybrid installation of Exchange Server 2013 and Microsoft Office 365.
The e-mail addresses of the ABC.com users have a SMTP suffix of ABC.com. You have received instructions to make sure that all e-mails are sent straight to the internet.
Which of the following actions should you take?
A. You should consider running a non-owner mailbox access report.
B. You should consider running the Hybrid Configuration wizard.
C. You should consider accessing the Exchange Admin Center.
D. You should consider configuring the Microsoft Exchange Online Protection (EOP) Send connector
Answer: B
Thursday, 5 February 2015
70-432 Sample Question : 1
QUESTION 1:
Note: This question is part of a series of questions that use the same or similar answer choices.An
answer choice may be correct for more than one question in the series.Each question is independent of the other questions in this series.Information and details provided in a question apply only to that
question.You administer a Microsoft SQL Server 2008 R2 instance.The instance has a database named CustomerOrders.The database is backed up by using the weekly scheduled SQL Server Agent jobs. The backup schedule is shown in the following table:
A drive fails and the CustomerOrders database goes into suspect mode on Monday at 09:00 hours.
You need to restore the backup.What should you do?
A.Restore the backup taken on Wednesday only.
B.Restore the backups taken Wednesday, Friday, and Saturday.
C.Restore the backups taken on Sunday and Monday.
D.Restore the backups taken on Wednesday, Thursday at 09:00 hours, and Thursday at 18:00 hours.
E.Restore the backups taken on Wednesday and Thursday at 09:00 hours.
F.Restore the backups taken on Wednesday and Friday.
G.Restore the backup taken on Sunday only.
H.Restore the backups taken on Wednesday, Thursday, and Friday.
Answer: G
Note: This question is part of a series of questions that use the same or similar answer choices.An
answer choice may be correct for more than one question in the series.Each question is independent of the other questions in this series.Information and details provided in a question apply only to that
question.You administer a Microsoft SQL Server 2008 R2 instance.The instance has a database named CustomerOrders.The database is backed up by using the weekly scheduled SQL Server Agent jobs. The backup schedule is shown in the following table:
A drive fails and the CustomerOrders database goes into suspect mode on Monday at 09:00 hours.
You need to restore the backup.What should you do?
A.Restore the backup taken on Wednesday only.
B.Restore the backups taken Wednesday, Friday, and Saturday.
C.Restore the backups taken on Sunday and Monday.
D.Restore the backups taken on Wednesday, Thursday at 09:00 hours, and Thursday at 18:00 hours.
E.Restore the backups taken on Wednesday and Thursday at 09:00 hours.
F.Restore the backups taken on Wednesday and Friday.
G.Restore the backup taken on Sunday only.
H.Restore the backups taken on Wednesday, Thursday, and Friday.
Answer: G
Tuesday, 3 February 2015
Microsoft Quietly Launches A Free Lock Screen Replacement App For Android
Things are committed to Microsoft Garage, where company employees share pilot projects that have been working on. The latest version is picturesque lock screen, a free application for Android that adds useful features, useful links and beautiful images from the lock screen.
Block picturesque display almost feels like a second home screen. It has several screens that slide and added a search bar Bing, a customizable news feeds, weather forecasts, device notifications, shortcuts to frequently used applications and alternate settings. It also shows the boot image Bing page for daily use as background and lets you swipe through images of last week to use.
Picturesque certainly looks good but could be a bit much for users who already have their own home screens lots of widgets and shortcuts. However, if you're sticking with a pitcher who removed the app drawer at all, this might be up your alley. Overall I like the lock screen to provide a level of security and load quickly. And when I'm home, Smart Unlock enabled me to skip the lock pattern I started so you can quickly start using my phone as soon as I take it.
With Picturesque, you will have the opportunity to really lock your phone, and you have a lot of data hungry widgets trying to update frequently. This does not mean it's a bad app at all, but I wonder if anyone has need of all these features and the content of your green lock screen is the second lock screen replacement to exit Microsoft Garage; Locking the next screen, which launched last October, is aimed at business users with a schedule of prominent power and the ability to dial into conference calls with one stone.
Subscribe to:
Comments (Atom)



