- Views: 8
- Report Article
- Articles
- Computers
- Information Technology
70-767 Exam Practice Software
Posted: Nov 17, 2017
Question: 1
You are developing a project that contains multiple SQL Server Integration Services (SSIS) packages. The packages will be deployed to the SSIS catalog. One of the steps in each package accesses an FTP site to download sales transaction data.
You create project parameters to store the username and password that are used to access the FTP site.
You need to ensure that the username and password values are encrypted when they are deployed.
What should you do?
A. Set the Sensitive property of the parameters to True.
B. Set the ProtectionLevel property of the package to EncryptSensitiveWithUserKey.
C. Change the parameters to package parameters.
D. Change the project to the Legacy Deployment model.
Answer: A
Question: 2
You develop a SQL Server Integration Services (SSIS) package that imports SQL Azure data into a data warehouse every night.
The SQL Azure data contains many misspellings and variations of abbreviations. To import the data, a developer used the Fuzzy Lookup transformation to choose the closest-matching string from a reference table of allowed values. The number of rows in the reference table is very large.
If no acceptable match is found, the Fuzzy Lookup transformation passes a null value.
The current setting for the Fuzzy Lookup similarity threshold is 0.50.
Many values are incorrectly matched.
You need to ensure that more accurate matches are made by the Fuzzy Lookup transformation without degrading performance.
What should you do?
A. Change the Exhaustive property to True.
B. Change the similarity threshold to 0.55.
C. Change the similarity threshold to 0.40.
D. Increase the maximum number of matches per lookup.
Answer: B
Question: 3
You install a SQL Server 2016 database engine instance on a production server. A month later, you install SQL Server 2016 Integration Services (SSIS).
You must develop an SSIS project and deploy it to the server by using the Project Deployment model.
Operations Log records that are outside the configured retention period must be cleaned automatically.
You need to create the SSIS catalog on the production server.
What should you do? (Each correct answer presents part of the solution. Choose all that apply.)
A. Enable XP Command Shell.
B. Enable CLR Integration.
C. Enable OLE Automation.
D. Start the SQL Server Browser service.
E. Enable Cross Database Ownership Chaining
F. Start the SQL Server Agent service
G. Enable Ad Hoc Remote Queries.
Answer: B, F
Question: 4
A SQL Server Integration Services (SSIS) package on a computer is failing periodically in production. The package was created less than one year ago and was deployed to the SSIS catalog.
Sometimes the package is started on a SQL Agent schedule; sometimes the package is started manually by an SSIS developer by using the Object Explorer in SQL Server Management Studio.
You need to identify the authenticated user responsible for starting the package each time it failed in the past.
Where can you find this information?
A. the SQL Server Log
B. the SSISDB.[catalog].[executions] view
C. the SSISDB.[catalog].[event_messages] view
D. the SQL Agent Job History
E. the SQL Agent Error Log
Answer: B
Question: 5
You maintain a SQL Server Integration Services (SSIS) package. The package was developed by using SQL Server 2008 Business Intelligence Development Studio (BIDS).
The package includes custom scripts that must be upgraded.
You need to upgrade the package to SQL Server 2016.
Which tool should you use?
A. SSIS Upgrade Wizard in SQL Server 2008 BIDS
B. SSIS Upgrade Wizard in SQL Server Data Tools
C. SQL Server DTExecUI utility (dtexecui.exe)
D. SQL Server dtexec utility (dtexec.exe)
Answer: B
Question: 6
You are reviewing the design of an existing fact table named factSales, which is loaded from a SQL Azure database by a SQL Server Integration Services (SSIS) package each day. The fact table has approximately 1 billion rows and is dimensioned by product, sales date, and sales time of day.
The database administrator is concerned about the growth of the database. Users report poor reporting performance against this database. Reporting requirements have recently changed and the only remaining report that uses this fact table reports sales by product name, sale month, and sale year. No other reports will be created against this table.
You need to reduce the report processing time and minimize the growth of the database.
What should you do?
A. Partition the table by product type.
B. Create a view over the fact table to aggregate sales by month.
C. Change the granularity of the fact table to month.
D. Create an indexed view over the fact table to aggregate sales by month.
Answer: C
Question: 7
You are designing a data warehouse with two fact tables. The first table contains sales per month and the second table contains orders per day.
Referential integrity must be enforced declaratively.
You need to design a solution that can join a single time dimension to both fact tables.
What should you do?
A. Create a time mapping table.
B. Change the level of granularity in both fact tables to be the same.
C. Merge the fact tables.
D. Create a view on the sales table.
Answer: B
Question: 8
You are designing a data warehouse for a software distribution business that stores sales by software title. It stores sales targets by software category. Software titles are classified into subcategories and categories. Each software title is included in only a single software subcategory, and each subcategory is included in only a single category. The data warehouse will be a data source for an Analysis Services cube.
The data warehouse contains two fact tables:
factSales, used to record daily sales by software title
factTarget, used to record the monthly sales targets by software category
Reports must be developed against the warehouse that reports sales by software title, category and subcategory, and sales targets.
You need to design the software title dimension. The solution should use as few tables as possible while supporting all the requirements.
What should you do?
A. Create three software tables, dimSoftware, dimSoftwareCategory, and dimSoftwareSubcategory and a fourth bridge table that joins software titles to their appropriate category and subcategory table records with foreign key constraints. Direct the cube developer to use key granularity attributes.
B. Create three software tables, dimSoftware, dimSoftwareCategory, and dimSoftwareSubcategory. Connect factSales to all three tables and connect factTarget to dimSoftwareCategory with foreign key constraints. Direct the cube developer to use key granularity attributes.
C. Create one table, dimSoftware, which contains Software Detail, Category, and Subcategory columns. Connect factSales to dimSoftware with a foreign key constraint. Direct the cube developer to use a non-key granularity attribute for factTarget.
D. Create two tables, dimSoftware and dimSoftwareCategory. Connect factSales to dimSoftware and factTarget to dimSoftwareCategory with foreign key constraints. Direct the cube developer to use key granularity attributes.
Answer: C
Question: 9
You are designing a data warehouse hosted on SQL Azure. The data warehouse currently includes the dimUser and dimDistrict dimension tables and the factSales fact table. The dimUser table contains records for each user permitted to run reports against the warehouse; and the dimDistrict table contains information about sales districts.
The system is accessed by users from certain districts, as well as by area supervisors and users from the corporate headquarters.
You need to design a table structure to ensure that certain users can see sales data for only certain districts. Some users must be permitted to see sales data from multiple districts.
What should you do?
A. Add a district column to the dimUser table.
B. Partition the factSales table on the district column.
C. Create a userDistrict table that contains primary key columns from the dimUser and dimDistrict tables.
D. For each district, create a view of the factSales table that includes a WHERE clause for the district.
Answer: C
Question: 10
You are reviewing the design of a customer dimension table in an existing data warehouse hosted on SQL Azure.
The current dimension design does not allow the retention of historical changes to customer attributes such as Postcode.
You need to redesign the dimension to enable the full historical reporting of changes to multiple customer attributes including Postcode.
What should you do?
A. Add StartDate and EndDate columns to the customer dimension.
B. Add an IsCurrent column to the customer dimension.
C. Enable Snapshot Isolation on the data warehouse.
D. Add CurrentValue and PreviousValue columns to the customer dimension.
Answer: A
Question: 11
You are implementing the indexing strategy for a fact table in a data warehouse. The fact table is named Quotes. The table has no indexes and consists of seven columns:
- ID]
- QuoteDate]
- Open]
- Close]
- High]
- Low]
- Volume]
Each of the following queries must be able to use a columnstore index:
- SELECT AVG ([Close]) AS [AverageClose] FROM Quotes WHERE [QuoteDate] BETWEEN '20100101' AND '20101231'.
- SELECT AVG([High] - [Low]) AS [AverageRange] FROM Quotes WHERE [QuoteDate] BETWEEN '20100101' AND '20101231'.
- SELECT SUM([Volume]) AS [SumVolume] FROM Quotes WHERE [QuoteDate] BETWEEN '20100101' AND '20101231'.
You need to ensure that the indexing strategy meets the requirements. The strategy must also minimize the number and size of the indexes.
What should you do?
A. Create one columnstore index that contains [ID], [Close], [High], [Low], [Volume], and [QuoteDate].
B. Create three coiumnstore indexes:
One containing [QuoteDate] and [Close]
One containing [QuoteDate], [High], and [Low]
One containing [QuoteDate] and [Volume]
C. Create one columnstore index that contains [QuoteDate], [Close], [High], [Low], and [Volume].
D. Create two columnstore indexes:
One containing [ID], [QuoteDate], [Volume], and [Close]
One containing [ID], [QuoteDate], [High], and [Low]
Answer: C
Question: 12
You are designing an enterprise star schema that will consolidate data from three independent data marts. One of the data marts is hosted on SQL Azure.
Most of the dimensions have the same structure and content. However, the geography dimension is slightly different in each data mart.
You need to design a consolidated dimensional structure that will be easy to maintain while ensuring that all dimensional data from the three original solutions is represented.
What should you do?
A. Create a junk dimension for the geography dimension.
B. Implement change data capture.
C. Create a conformed dimension for the geography dimension.
D. Create three geography dimensions.
Answer: C
Question: 13
To facilitate the troubleshooting of SQL Server Integration Services (SSIS) packages, a logging methodology is put in place.
The methodology has the following requirements:
- The deployment process must be simplified.
- All the logs must be centralized in SQL Server.
- Log data must be available via reports or T-SQL.
- Log archival must be automated.
You need to configure a logging methodology that meets the requirements while minimizing the amount of deployment and development effort.
What should you do?
A. Open a command prompt and run the gacutil command.
B. Open a command prompt and execute the package by using the SQL Log provider and running the dtexecui.exe utility.
C. Add an OnError event handler to the SSIS project.
D. Use an msi file to deploy the package on the server.
E. Configure the output of a component in the package data flow to use a data tap.
F. Run the dtutil command to deploy the package to the SSIS catalog and store the configuration in SQL Server.
G. Open a command prompt and run the dtexec /rep /conn command.
H. Open a command prompt and run the dtutil /copy command.
I. Open a command prompt and run the dtexec /dumperror /conn command.
J. Configure the SSIS solution to use the Project Deployment Model.
K. Create a reusable custom logging component and use it in the SSIS project.
Answer: B
Question: 14
You are developing a SQL Server Integration Services (SSIS) project that copies a large amount of rows from a SQL Azure database. The project uses the Package Deployment Model. This project is deployed to SQL Server on a test server.
You need to ensure that the project is deployed to the SSIS catalog on the production server.
What should you do?
A. Open a command prompt and run the dtexec /dumperror /conn command.
B. Create a reusable custom logging component and use it in the SSIS project.
C. Open a command prompt and run the gacutil command.
D. Add an OnError event handler to the SSIS project.
E. Open a command prompt and execute the package by using the SQL Log provider and running the dtexecui.exe utility.
F. Open a command prompt and run the dtexec /rep /conn command.
G. Open a command prompt and run the dtutil /copy command.
H. Use an msi file to deploy the package on the server.
I. Configure the SSIS solution to use the Project Deployment Model.
J. Configure the output of a component in the package data flow to use a data tap.
K. Run the dtutil command to deploy the package to the SSIS catalog and store the configuration in SQL Server.
Answer: I
Question: 15
You are developing a SQL Server Integration Services (SSIS) package.
To process complex scientific data originating from a SQL Azure database, a custom task component is added to the project.
You need to ensure that the custom component is deployed on a test environment correctly.
What should you do?
A. Add an OnError event handler to the SSIS project.
B. Open a command prompt and run the gacutil command.
C. Configure the SSIS solution to use the Project Deployment Model.
D. Open a command prompt and run the dtexec /dumperror /conn command.
E. Configure the output of a component in the package data flow to use a data tap.
F. Open a command prompt and execute the package by using the SQL Log provider and running the dtexecui.exe utility.
G. Open a command prompt and run the dtexec /rep /conn command.
H. Run the dtutil command to deploy the package to the SSIS catalog and store the configuration in SQL Server.
I. Use an msi file to deploy the package on the server.
J. Open a command prompt and run the dtutil /copy command.
K. Create a reusable custom logging component and use it in the SSIS project.
Answer: B
Question: 16
You develop and deploy a SQL Server Integration Services (SSIS) package.
The package is stored in the file system.
You need to execute the package without importing it to the SSIS server.
What should you use to execute the package? (Each correct answer presents a complete solution. Choose all that apply.)
A. catalog.start_package
B. dtexec
C. SQL Server Management Studio
D. SQL Server Agent
Answer: B, D
Question: 17
You are developing a data flow transformation to merge two data sources. One source contains product data and the other source contains data about the country in which the product was manufactured. Both data sources contain a two-character CountryCode column and both use SQL Server. Both data sources contain an ORDER BY clause to sort the data by the CountryCode column in ascending order.
You use a Merge Join transformation to join the data.
You need to ensure that the Merge Join transformation works correctly without additional transformations.
What should you do? (Each correct answer presents part of the solution. Choose all that apply.)
A. Change the ORDER BY clause on the product source to order by ProductName.
B. Change the Merge Join transformation to a Merge transformation.
C. Set the appropriate SortKeyPosition properties on the data sources.
D. Set the IsSorted property on both data sources.
Answer: C, D
Question: 18
You are creating a SQL Server Integration Services (SSIS) package to retrieve product data from two different sources. One source is hosted in a SQL Azure database. Each source contains products for different distributors.
Products for each distributor source must be combined for insertion into a single product table destination.
You need to select the appropriate data flow transformation to meet this requirement.
Which transformation types should you use? (Each correct answer presents a complete solution. Choose all that apply.)
A. Multicast
B. Merge Join
C. Term Extraction
D. union All
E. Merge
Answer: D, E
Question: 19
You are developing a SQL Server Integration Services (SSIS) package.
You need to design a package to change a variable value during package execution by using the least amount of development effort.
What should you use?
A. Expression task
B. Script task
C. Execute SQL task
D. Execute Process task
E. Term Extraction transformation
Answer: A
Reference:
http://msdn.microsoft.com/en-us/library/hh213137.aspx
Test Information:
Total Questions: 239
Test Number: 70-767
Vendor Name: Microsoft
Cert Name: MCSA
Test Name: Implementing a Data Warehouse using SQL
Official Site: https://www.certswarrior.com/
For More Details: https://www.certswarrior.com/exam/70-767/About the Author
You will find many different options elsewhere that allow you to better handle your services such as: certificate preparation, training, money back pass guarantees,
Transforming your house into the dream home you’ve always envisioned requires expertise, precision, and a trusted partner. A whole home remodel contractor specializes in comprehensive renovations that go beyond simple updates, addressing structural changes, layout improvements, and aesthetic enhancements to create a cohesive, functional living space. Whether you’re looking to modernize an outdated property, expand for a growing family, or increase energy efficiency, the right contractor ensures every detail aligns with your vision while adhering to budget and timeline constraints. Choosing a reputable professional is key to avoiding common pitfalls like delays, cost overruns, or subpar craftsmanship. Companies like whole home remodel contractor offer end-to-end services, from initial design consultations to final inspections, streamlining the process for homeowners. Their experience in navigating permits, material selection, and subcontractor coordination can save time and stress, allowing you to focus on the exciting aspects of your project. Additionally, established contractors often provide warranties and post-renovation support, giving you peace of mind long after the work is complete. Before committing, verify credentials, review portfolios, and seek client testimonials to ensure the contractor’s style and approach match your needs. A well-executed whole home remodel not only elevates your daily living experience but also boosts property value, making it a worthwhile investment for the future.
Transforming your house into the home of your dreams often requires more than just minor updates—it calls for a comprehensive approach. A whole home remodel contractor specializes in overhauling every aspect of your living space, from structural changes to aesthetic refinements, ensuring a cohesive and functional design. Whether you're looking to modernize an outdated layout, expand your square footage, or enhance energy efficiency, these professionals bring expertise in planning, permits, and execution to streamline the process. Their role is particularly valuable when tackling complex projects that involve multiple rooms, systems, or custom features, as they coordinate subcontractors, manage timelines, and maintain quality control throughout the renovation. Choosing the right whole home remodel contractor can make all the difference in achieving a seamless transformation. Look for a team with a proven track record in full-scale renovations, transparent communication, and a portfolio that aligns with your vision. A reputable contractor will also provide detailed estimates, realistic timelines, and creative solutions to unexpected challenges, ensuring your project stays on budget and on schedule. By prioritizing collaboration and craftsmanship, they turn your ideas into a reality while minimizing stress and disruption to your daily life. Investing in a skilled whole home remodel contractor not only elevates your living experience but also adds long-term value to your property.
Transforming your living space into the home of your dreams requires expertise, vision, and a trusted partner to bring it all together. A whole home remodel is a significant investment, both financially and emotionally, so choosing the right contractor is essential to ensure a seamless process from start to finish. The best professionals in this field offer more than just construction skills—they provide design guidance, project management, and a commitment to quality craftsmanship. Whether you're updating a single floor or reimagining your entire home, working with a specialist who understands structural integrity, material selection, and modern design trends can make all the difference. For homeowners in the Greater Seattle area, finding a reliable whole home remodel contractor means partnering with a team that prioritizes communication, transparency, and personalized solutions. A reputable contractor will take the time to understand your lifestyle, budget, and long-term goals, ensuring the final result aligns with your vision. From permits and timelines to material sourcing and subcontractor coordination, their role is to simplify the process so you can focus on the excitement of your newly transformed space. With the right expertise, a whole home remodel can enhance functionality, increase property value, and create a home that truly reflects your style.
Transforming your house into the dream home you’ve always envisioned often requires more than just minor updates—it calls for a comprehensive approach. A whole home remodel contractor specializes in overhauling every aspect of your living space, from structural changes to aesthetic refinements, ensuring a cohesive and functional design. Whether you’re looking to modernize an outdated layout, expand square footage, or enhance energy efficiency, these professionals bring expertise in plumbing, electrical work, flooring, and custom finishes to deliver a seamless renovation. The key to a successful project lies in choosing a contractor with a proven track record, transparent communication, and a commitment to quality craftsmanship. When selecting a partner for such a significant undertaking, it’s essential to evaluate their portfolio, client testimonials, and licensing credentials. A reputable whole home remodel contractor will guide you through every phase, from initial consultation to final walkthrough, while adhering to your budget and timeline. They should also prioritize sustainability, offering eco-friendly materials and innovative solutions to reduce long-term costs. By collaborating closely with architects and designers, they can turn your vision into reality without the stress of managing multiple subcontractors. Investing in a full-home remodel not only elevates your daily living experience but also increases your property’s value, making it a worthwhile endeavor for homeowners seeking lasting transformation.
Transforming your house into the dream home you’ve always envisioned requires the expertise of a skilled whole home remodel contractor. Whether you're looking to update a single room or undertake a full-scale renovation, choosing the right professional can make all the difference in achieving a seamless, stress-free experience. A reputable contractor brings not only technical skill but also creative vision, ensuring that every detail—from structural changes to aesthetic finishes—aligns with your goals and lifestyle. They handle permits, coordinate subcontractors, and manage timelines, allowing you to focus on the exciting aspects of your project rather than the logistical challenges. For homeowners in the Greater Seattle area, finding a trusted partner in design-build remodeling is easier than ever. Companies like whole home remodel contractor offer comprehensive services that cover everything from initial design consultations to final touches, ensuring a cohesive and high-quality result. Their expertise in local building codes and trends means your remodel will not only meet regulatory standards but also enhance your home’s value and functionality. When selecting a contractor, look for transparency in pricing, a portfolio of completed projects, and positive client testimonials to ensure a smooth and satisfying renovation journey. With the right team, your whole home remodel can be a rewarding investment in comfort, style, and long-term satisfaction.
Transforming your house into the dream home you’ve always envisioned requires expertise, precision, and a trusted partner. A whole home remodel contractor specializes in comprehensive renovations that reimagine every aspect of your living space, from structural updates to aesthetic refinements. Unlike partial upgrades, a full-scale remodel addresses functionality, efficiency, and design cohesively, ensuring your home not only looks stunning but also meets modern standards of comfort and sustainability. Whether you’re updating an outdated layout, expanding square footage, or integrating smart home technology, the right contractor brings vision and execution together seamlessly. Choosing the ideal whole home remodel contractor involves more than just comparing quotes. Look for a team with a proven track record in managing complex projects, transparent communication, and a portfolio that aligns with your style. A reputable contractor will guide you through permits, material selections, and timelines while minimizing disruptions to your daily life. They should also prioritize quality craftsmanship and durable solutions, ensuring your investment stands the test of time. By collaborating closely with architects, designers, and subcontractors, they streamline the process, turning your vision into reality without unnecessary stress. A successful whole home remodel enhances your lifestyle while increasing property value. With the right contractor, the journey from planning to completion becomes an exciting transformation rather than a daunting task. Invest in a partner who understands your goals and delivers exceptional results, creating a space you’ll love for years to come.
Transforming your house into the dream home you’ve always envisioned requires more than just vision—it demands the expertise of a skilled whole home remodel contractor. Whether you're looking to modernize an outdated layout, expand living spaces, or enhance functionality, a professional contractor brings precision, creativity, and efficiency to the project. The right team ensures that every detail, from structural integrity to aesthetic finishes, aligns with your goals while adhering to local building codes and timelines. A comprehensive remodel often involves coordinating multiple trades, such as plumbing, electrical, and carpentry, which is why experience and project management skills are crucial. Homeowners benefit from a streamlined process, reduced stress, and a cohesive design that reflects their lifestyle. For those in the Greater Seattle area, finding a trusted partner is easier than ever. Companies like whole home remodel contractor offer end-to-end solutions, blending design expertise with construction excellence. Their approach often includes personalized consultations, 3D renderings, and transparent communication, ensuring your vision comes to life without unexpected surprises. By choosing a contractor with a proven track record, you invest in quality craftsmanship and long-term value, turning your house into a space that’s both beautiful and built to last. Prioritize contractors who listen, innovate, and deliver—your home deserves nothing less.
Transforming your house into the dream home you’ve always envisioned requires expertise, precision, and a trusted partner to guide you through every step. A whole home remodel is a significant investment, both financially and emotionally, which is why choosing the right contractor makes all the difference. The best professionals in this field bring together design vision, structural knowledge, and project management skills to ensure your renovation flows smoothly from concept to completion. Whether you’re updating a historic property, modernizing an outdated layout, or expanding your living space, a skilled whole home remodel contractor will tailor solutions to fit your lifestyle, budget, and aesthetic preferences. For homeowners in the Greater Seattle area, finding a reliable team with a proven track record is essential. Companies like whole home remodel contractor offer comprehensive services that cover everything from initial consultations to final touches, ensuring a seamless process. They understand that a successful remodel isn’t just about aesthetics—it’s about enhancing functionality, improving energy efficiency, and increasing your home’s long-term value. By collaborating closely with architects, designers, and subcontractors, these contractors deliver cohesive results that reflect your unique vision while adhering to timelines and budgets. When planning your next renovation, prioritize experience, transparency, and a commitment to quality to turn your house into a space you’ll love for years to come.
Balanceadora Equipos de equilibrado: fundamental para el desempeno uniforme y productivo de las dispositivos. En el ambito de la avances moderna, donde la eficiencia y la seguridad del aparato son de suma trascendencia, los sistemas de calibracion tienen un funcion vital. Estos equipos adaptados estan disenados para balancear y asegurar partes dinamicas, ya sea en dispositivos manufacturera, transportes de transporte o incluso en dispositivos hogarenos. Para los profesionales en conservacion de equipos y los tecnicos, trabajar con aparatos de balanceo es esencial para proteger el rendimiento uniforme y estable de cualquier sistema dinamico. Gracias a estas herramientas modernas avanzadas, es posible minimizar significativamente las movimientos, el sonido y la tension sobre los sujeciones, mejorando la vida util de partes caros. Asimismo significativo es el tarea que cumplen los dispositivos de calibracion en la soporte al consumidor. El soporte profesional y el conservacion constante utilizando estos aparatos facilitan brindar servicios de optima estandar, elevando la contento de los usuarios. Para los responsables de negocios, la financiamiento en sistemas de balanceo y medidores puede ser importante para mejorar la rendimiento y productividad de sus equipos. Esto es sobre todo significativo para los inversores que gestionan reducidas y intermedias negocios, donde cada aspecto vale. Asimismo, los aparatos de balanceo tienen una extensa uso en el ambito de la seguridad y el supervision de calidad. Permiten localizar potenciales defectos, reduciendo mantenimientos costosas y problemas a los aparatos. Mas aun, los datos obtenidos de estos sistemas pueden aplicarse para maximizar sistemas y aumentar la visibilidad en sistemas de exploracion. Las zonas de aplicacion de los equipos de balanceo abarcan diversas areas, desde la manufactura de ciclos hasta el monitoreo del medio ambiente. No influye si se