Skip to main content

#saynotointerview for recruitment process


I recently went for a training that consists of employees from multinational corporations. During the brainstorming sessions, one fellow gentleman started speaking about firing his colleague. This guy is actually a senior manager and he interviewed the departed. He was blaming the unfortunate guy told he knows all the job description and he was smart during the interview. So they selected him for the job. But in the job, he never raised to his potential and they sacked him. The senior manager was claiming in the brainstorming session the decision was correct. But lots of people in training disagreed with that. Majority people told the recruitment or interview process in the company flawed to test that lad's knowledge. I strongly believe this might not be a one of the situation in recruitment? How many of you came across similar experience in your professional career?
Do you believe the things we put in the job description are the exact things the potential employees will be doing their job? Or is it the aspirational stuff the organisation or the management indented to do? I am going to make a very controversial statement here. In my career, I never worked for any organisation that described the exact job in their job description. I strongly believe most of you reading this will also not disagreeing with me on this case. That is where I believe we should have to think about our recruitment process. Do we need someone to answer the interview questions based on organisations aspirations? Or do we need the real talents who can make a difference in your work environment?
Some of the companies already do some real time tests or practises in the actual office environment as part of the recruitment process. They will be only selected based on the initial assessment or test, initial interview- some might be after the 1st telephonic interview or technical interview. Do you think in 2-4 hours assessment like this can actually bring out the raw latent skills and capabilities? I can strongly say this will never give you the expected result. One of my head of department and I had this discussion and he told me the trust and behaviour aspects are his main reason for making the final cut on this. The questions remain the same? Is it the best candidate for the job?   
All the interview processes that mentioned before are there for long period. Any of you ever thought or read about any alternative approaches to recruiting the right candidate? I believe in this twenty-first century we need to think about unconventional approaches for recruiting the right candidates for driving the organisations and the world forward. So what alternatives can we think about?
The slogan I am putting down is #saynotointerviews. I believe we should give the potential employees to showcase their skills and talents in the real work environment.
  • Take the potential candidate for 2,3 days of real work environment
  • Ask them to do a specific task as your normal employees are doing.
  • Assign them to a partner to track their progress.
  • Evaluate them over this 2, 3 days how they catching up with the job.
  • How do they understand the job function?
  • How are they applying their knowledge in the actual work culture?
  • Ask them to present their experience to the team.
  • Review them based on how they performed on last 2 or 3 day
  • Select the most suitable candidate for your work environment.
I know there are lots of companies around the world trying different approaches in their recruitment processes. But how many organisations on the current setup can think differently about their current recruitment process?  Anyone ready to scrap their traditional recruitment process and ready to explore the process described above? I believe this will definitely going to help the organisations to find the best/cream candidate for your setup. These potential employees will also be going to benefits from these kind experiences. I would like to conclude this with a George Bernard Shaw quote, "The reasonable man adapts himself to the world; the unreasonable one persists in trying to adapt the world to himself. Therefore all progress depends on the unreasonable man."

Comments

Popular posts from this blog

Compiled Query- Improve the performance of Linq to Entity Query

Most of the small or medium IT firms are using the Entity framework for the Data Access layer (DAL). If we write a complex linq to Entity queries performance will always be an issue. But with the Compiled Query Performance can be improved. This below definitions are from MSDN and more details can be found on the MSDN Link that is at the end of this post           When you have an application that executes structurally similar queries many times in the Entity Framework, you can frequently increase performance by compiling the query one time and executing it several times with different parameters. For example, an application might have to retrieve all the QuoteRevision for a particular quotelineStatus, the quotelinestatus is specified at runtime. LINQ to Entities supports using compiled queries for this purpose.               The  compiled query class provides compilation and caching of queries for reuse . Co...

Sql Server Internals - Named Pipes

Named pipes enables clients applications to request a reliable and two way connection between the client application and Sql Server, across a network. A named pipe has a name which follows the UNC naming convention : \\Server\pipe\name The default names pipe for SQL server is :                 \\Server\pipe\sql\query A named instance would have a named pipe of                \\server\pipe\MSSQL$instancename\sql\query Early versions of SQL Server only provided Named Pipes. Named Pipes also allows for impersonation of a clients credentials. The feature is used by SQL server when using Linked Servers. The clients logon credentials are passed across to the Linked Server for authentication. Named Pipes can operate over TCP/IP, NETBEUI or IPX as it indirectly relies on the Common Internet Files Sytems

How to add a stored procedure in Entity Framework

Step1- Open the . edmx file Step2- Right click in . edmx file and select Update Model from Database Step3- Select Add tab, select Stored Procedures and select the procedure you want to add and click finish as shown in below figure a Step4- Build the Entity Project to make sure nothing is broke Step5- Right click on . edmx file and  select Model Browser Step6- Model Browser Popup will appear as  below figure. Click on the Strored Procedures in PricingToolModel . Stroe and click the newly added SP (it will appear here) Step7- The Add Function Import screen will appear Based on the return we can set up. If you are returning a multiple column Click on the Get Column Information First, then click the new Complex Type. After that you can  see the Return of Collection will select the Complex and a complex type is generated by EF If its returning scalar you can select which return type like int , string etc... If its return  entitty ...