Transcript
Page 1: Top ssis interview questions and answers job interview tips

Top 20 ssis interview questions and answers

If you need top 7 free ebooks below for your job interview, please visit: 4career.net

• Free ebook: 75 interview questions and answers• Top 12 secrets to win every job interviews• 13 types of interview quesitons and how to face them• Top 8 interview thank you letter samples• Top 7 cover letter samples• Top 8 resume samples• Top 15 ways to search new jobs

Interview questions and answers – free pdf download Page 1 of 30

Page 2: Top ssis interview questions and answers job interview tips

Tell me about yourself?

This is probably the most asked question in ssis interview. It breaks the ice and gets you to talk about something you should be fairly comfortable with. Have something prepared that doesn't sound rehearsed. It's not about you telling your life story and quite frankly, the interviewer just isn't interested. Unless asked to do so, stick to your education, career and current situation. Work through it chronologically from the furthest back to the present.

Interview questions and answers – free pdf download Page 2 of 30

Page 3: Top ssis interview questions and answers job interview tips

What is a breakpoint in SSIS? How is it setup? How do you disable it?

A breakpoint is a stopping point in the code. The breakpoint can give the Developer\DBA anopportunity to review the status of the data, variables and the overall status of the SSIS package.10 unique conditions exist for each breakpoint.Breakpoints are setup in BIDS. In BIDS, navigate to the control flow interface. Right click on theobject where you want to set the breakpoint and select the ‘Edit Breakpoints…’ option.

Interview questions and answers – free pdf download Page 3 of 30

Page 4: Top ssis interview questions and answers job interview tips

What Can You Do for Us That Other Candidates Can't?

What makes you unique? This will take an assessment of your experiences, skills and traits. Summarize concisely: "I have a unique combination of strong technical skills, and the ability to build strong customer relationships. This allows me to use my knowledge and break down information to be more user-friendly."

Interview questions and answers – free pdf download Page 4 of 30

Page 5: Top ssis interview questions and answers job interview tips

Can you name 5 or more of the native SSIS connection managers?

1) OLEDB connection – Used to connect to any data source requiring an OLEDB connection (i.e.,SQL Server 2000)2) Flat file connection – Used to make a connection to a single file in the File System. Required for reading information from a File System flat file3) ADO.Net connection – Uses the .Net Provider to make a connection to SQL Server 2005 or otherconnection exposed through managed code (like C#) in a custom task4) Analysis Services connection – Used to make a connection to an Analysis Services database or project. Required for the Analysis Services DDL Task and Analysis Services Processing Task5) File connection – Used to reference a file or folder. The options are to either use or create a file or folder6) Excel

Interview questions and answers – free pdf download Page 5 of 30

Page 6: Top ssis interview questions and answers job interview tips

What is Conditional Split transformation in SSIS?

This is just like IF condition which checks for the given condition and based on the condition evaluation, the output will be sent to the appropriate OUTPUT path. It has ONE input and MANY outputs. Conditional Split transformation is used to send paths to different outputs based on some conditions. For example, we can organize the transform for the students in a class who have marks greater than 40 to one path and the students who score less than 40 to another path.

Interview questions and answers – free pdf download Page 6 of 30

Page 7: Top ssis interview questions and answers job interview tips

What are the different values you can set for CheckpointUsage property ?

There are three values, which describe how a checkpoint file is used during package execution:1) Never: The package will not use a checkpoint file and therefore will never restart.2) If Exists: If a checkpoint file exists in the place you specified for the CheckpointFilename property, then it will be used, and the package will restart according to the checkpoints written.3) Always: The package will always use a checkpoint file to restart, and if one does not exist, the package will fail.

Interview questions and answers – free pdf download Page 7 of 30

Page 8: Top ssis interview questions and answers job interview tips

What is the use of Percentage Sampling transformation in SSIS?

Percentage Sampling transformation is generally used for data mining. This transformation builds a random sample of set of output rows by choosing specified percentage of input rows. For example if the input has 1000 rows and if I specify 10 as percentage sample then the transformation returns 10% of the RANDOM records from the input data.

Interview questions and answers – free pdf download Page 8 of 30

Page 9: Top ssis interview questions and answers job interview tips

What is the use of Term Extraction transformation in SSIS?

Term Extraction transformation is used to extract nouns or noun phrases or both noun and noun phrases only from English text. It extracts terms from text in a transformation input column and then writes the terms to a transformation output column. It can be also used to find out the content of a dataset.

Interview questions and answers – free pdf download Page 9 of 30

Page 10: Top ssis interview questions and answers job interview tips

What is Data Viewer and what are the different types of Data Viewers in SSIS?

A Data Viewer allows viewing data at a point of time at runtime. If data viewer is placed before and after the Aggregate transform, we can see data flowing to the transformation at the runtime and how it looks like after the transformation occurred. The different types of data viewers are:1. Grid2. Histogram3. Scatter Plot4. Column Chart.

Interview questions and answers – free pdf download Page 10 of 30

Page 11: Top ssis interview questions and answers job interview tips

What is Ignore Failure option in SSIS?

In Ignore Failure option, the error will be ignored and the data row will be directed to continue on the next transformation. Let’s say you have some JUNK data(wrong type of data or JUNK data) flowing from source, then using this option in SSIS we can REDIRECT the junk data records to another transformation instead of FAILING the package. This helps to MOVE only valid data to destination and JUNK can be captured into separate file.

Interview questions and answers – free pdf download Page 11 of 30

Page 12: Top ssis interview questions and answers job interview tips

Explain Audit Transformation ?It allows you to add auditing information as required in auditing world specified by HIPPA and Sarbanes-Oxley (SOX). Auditing options that you can add to transformed data through this transformation are :1. Execution of Instance GUID : ID of execution instance of the package2. PackageID : ID of the package3. PackageName4. VersionID : GUID version of the package5. Execution StartTime6. MachineName7. UserName8. TaskName9. TaskID : uniqueidentifier type of the data flow task that contains audit transformation.

Interview questions and answers – free pdf download Page 12 of 30

Page 13: Top ssis interview questions and answers job interview tips

Explain Character Map Transformation?It transforms some character. It gives options whether output result will override the existing column or add to new column. If you define it as new column, specify new column name. Operations available here are:1. Uppercase2. Lowercase3. Byte reversal : such as from 0×1234 to 0×43214. Full width5. Half width6. Hiragana/katakana/traditional Chinese/simplified Chinese7. Linguistic casing

Interview questions and answers – free pdf download Page 13 of 30

Page 14: Top ssis interview questions and answers job interview tips

Explain Conditional split Transformation ?It functions as if…then…else construct. It enables send input data to a satisfied conditional branch. For example you want to split product quantity between less than 500 and greater or equal to 500. You can give the conditional a name that easily identifies its purpose. Else section will be covered in Default Output Column name.After you configure the component, it connect to subsequent transformation/destination, when connected, it pops up dialog box to let you choose which conditional options will apply to the destination transformation/destination.

Interview questions and answers – free pdf download Page 14 of 30

Page 15: Top ssis interview questions and answers job interview tips

Explain Data Mining query Transformation?This component does prediction on the data or fills gap on it. Some good scenarios uses this component is:1. Take some input columns as number of children, domestic income, and marital income to predict whether someone owns a house or not.2. Take prediction what a customer would buy based analysis buying pattern on their shopping cart.3. Filling blank data or default values when customer doesn’t fill some items in the questionnaire.

Interview questions and answers – free pdf download Page 15 of 30

Page 16: Top ssis interview questions and answers job interview tips

Explain Merge Transformation?Merge transformation merges two paths into single path. It is useful when you want to break out data into path that handles errors after the errors are handled, the data are merge back into downstream or you want to merge 2 data sources. It is similar with Union All transformation, but Merge has some restrictions :1. Data should be in sorted order2. Data type , data length and other meta data attribute must be similar before merged.

Interview questions and answers – free pdf download Page 16 of 30

Page 17: Top ssis interview questions and answers job interview tips

Explain Percentage and row sampling Transformations?

This transformation will take data from source and randomly sampling data. It gives you 2 outputs. First is selected data and second one is unselected data. It is used in situation where you train data mining model. These two are used to take the SAMPLE of data from the input data.

Interview questions and answers – free pdf download Page 17 of 30

Page 18: Top ssis interview questions and answers job interview tips

What is the diff between control flow Items and data flow Items?

The control flow is the highest level control process. It allows you to manage the run-time process activities of data flow and other processes within a package.When we want to extract, transform and load data within a package. You add an SSIS dataflow task to the package control flow.

Interview questions and answers – free pdf download Page 18 of 30

Page 19: Top ssis interview questions and answers job interview tips

What is environment variable in SSIS?An environment variable configuration sets a package property equal to the value in an environment variable.Environmental configurations are useful for configuring properties that are dependent on the computer that is executing the package.

Interview questions and answers – free pdf download Page 19 of 30

Page 20: Top ssis interview questions and answers job interview tips

What is Design time Deployment in SSIS ?When you run a package from with in BIDS,it is built and temporarily deployed to the folder. By default the package will be deployed to the BIN folder in the Package’s Project folder and you can configure for custom folder for deployment. When the Package’s execution is completed and stopped in BIDS,the deployed package will be deleted and this is called as Design Time Deployment.

Interview questions and answers – free pdf download Page 20 of 30

Page 21: Top ssis interview questions and answers job interview tips

What are Connection Managers?It is a bridge b/w package object and physical data. It provides logical representation of a connection at design time the properties of the connection mgr describes the physical connection that integration services creates when the package is run.

Interview questions and answers – free pdf download Page 21 of 30

Page 22: Top ssis interview questions and answers job interview tips

Useful job interview materials:

If you need top free ebooks below for your job interview, please visit: 4career.net

• Free ebook: 75 interview questions and answers• Top 12 secrets to win every job interviews• Top 36 situational interview questions• 440 behavioral interview questions• 95 management interview questions and answers• 30 phone interview questions• Top 8 interview thank you letter samples• 290 competency based interview questions• 45 internship interview questions• Top 7 cover letter samples• Top 8 resume samples• Top 15 ways to search new jobs

Interview questions and answers – free pdf download Page 22 of 30

Page 23: Top ssis interview questions and answers job interview tips

Top 6 tips for job interview

Interview questions and answers – free pdf download Page 23 of 30

Page 24: Top ssis interview questions and answers job interview tips

Tip 1: Do your homeworkYou'll likely be asked difficult questions during the interview. Preparing the list of likely questions in advance will help you easily transition from question to question.

Spend time researching the company. Look at its site to understand its mission statement, product offerings, and management team. A few hours spent researching before your interview can impress the hiring manager greatly. Read the company's annual report (often posted on the site), review the employee's LinkedIn profiles, and search the company on Google News, to see if they've been mentioned in the media lately. The more you know about a company, the more you'll know how you'll fit in to it.

Ref material: 4career.net/job-interview-checklist-40-points

Interview questions and answers – free pdf download Page 24 of 30

Page 25: Top ssis interview questions and answers job interview tips

Tip 2: First impressionsWhen meeting someone for the first time, we instantaneously make our minds about various aspects of their personality.Prepare and plan that first impression long before you walk in the door. Continue that excellent impression in the days following, and that job could be yours.Therefore:

Never arrive late. Use positive body language and turn on your

charm right from the start. Switch off your mobile before you step into the

room. Look fabulous; dress sharp and make sure you look

your best. Start the interview with a handshake; give a nice

firm press and then some up and down movement. Determine to establish a rapport with the

interviewer right from the start. Always let the interviewer finish speaking before

giving your response. Express yourself fluently with clarity and

precision.

Useful material: 4career.net/top-10-elements-to-make-a-good-first-impression-at-a-job-interview

Interview questions and answers – free pdf download Page 25 of 30

Page 26: Top ssis interview questions and answers job interview tips

Tip 3: The “Hidden” Job MarketMany of us don’t recognize that hidden job market is a huge one and accounts for 2/3 of total job demand from enterprises. This means that if you know how to exploit a hidden job market, you can increase your chance of getting the job up to 300%.

In this section, the author shares his experience and useful tips to exploit hidden job market.

Here are some sources to get penetrating into a hidden job market: Friends; Family; Ex-coworkers; Referral; HR communities; Field communities; Social networks such as Facebook, Twitter…; Last recruitment ads from recruiters; HR emails of potential recruiters…

Interview questions and answers – free pdf download Page 26 of 30

Page 27: Top ssis interview questions and answers job interview tips

Tip 4: Do-It-Yourself Interviewing PracticeThere are a number of ways to prepare for an interview at home without the help of a professional career counselor or coach or a fee-based service.

You can practice interviews all by yourself or recruit friends and family to assist you.

Useful material: 4career.net/free-ebook-75-interview-questions-and-answers

Interview questions and answers – free pdf download Page 27 of 30

Page 28: Top ssis interview questions and answers job interview tips

Tip 5: Ask questionsDo not leave the interview without ensuring that you know all that you want to know about the position. Once the interview is over, your chance to have important questions answered has ended. Asking questions also can show that you are interested in the job. Be specific with your questions. Ask about the company and the industry. Avoid asking personal questions of the interviewer and avoid asking questions pertaining to politics, religion and the like.

Ref material: 4career.net/25-questions-to-ask-employers-during-your-job-interview

Interview questions and answers – free pdf download Page 28 of 30

Page 29: Top ssis interview questions and answers job interview tips

Tip 6: Follow up and send a thank-you noteFollowing up after an interview can help you make a lasting impression and set you apart from the crowd.Philip Farina, CPP, a security career expert at Manta Security Management Recruiters, says: "Send both an email as well as a hard-copy thank-you note, expressing excitement, qualifications and further interest in the position. Invite the hiring manager to contact you for additional information. This is also an excellent time to send a strategic follow-up letter of interest."

Ref material: 4career.net/top-8-interview-thank-you-letter-samples

Interview questions and answers – free pdf download Page 29 of 30

Page 30: Top ssis interview questions and answers job interview tips

Interview questions and answers – free pdf download Page 30 of 30


Top Related