I am a recruiter looking for a developer with InnoDB skills and other advanced MySQL skills, however, these seem to be rare?
If someone doesn't have InnoDB, what skills are similar or easily transferable?
What skills are similar to InnoDB
Moderator: General Moderators
-
Preciseresourcing
- Forum Newbie
- Posts: 6
- Joined: Thu Dec 18, 2008 8:23 am
- Location: Leeds, West Yorkshire
What skills are similar to InnoDB
Last edited by onion2k on Thu Dec 18, 2008 9:46 am, edited 1 time in total.
Reason: Unnessary contact details removed.
Reason: Unnessary contact details removed.
Re: What skills are similar to InnoDB
Do you know what InnoDB is..?
Re: What skills are similar to InnoDB
*Waves hand*pytrin wrote:Do you know what InnoDB is..?
I do i do!
Re: What skills are similar to InnoDB
InnoDB is not a skill. It's a database engine. The skill required to do things with InnoDB would be database admin and/or SQL programming.
-
Preciseresourcing
- Forum Newbie
- Posts: 6
- Joined: Thu Dec 18, 2008 8:23 am
- Location: Leeds, West Yorkshire
Re: What skills are similar to InnoDB
Are there any other "similar" transactional engines that people who haven't worked on InnoDB, would easily be able to pick up?
Many Thanks
Many Thanks
onion2k wrote:InnoDB is not a skill. It's a database engine. The skill required to do things with InnoDB would be database admin and/or SQL programming.
Re: What skills are similar to InnoDB
MySQL has two transactional storage engines - InnoDB and BerkelyDB. You can read more on the different storage engines in the manual - http://dev.mysql.com/doc/refman/5.0/en/ ... gines.html
Being familiar with a particular storage engine is less important than being familiar with the concept of transactions itself. If data integrity is important to you, you should look for people who know how to use transactions. Better research a little on what the terms mean when you post looking for technical help, so you won't get burned.
Being familiar with a particular storage engine is less important than being familiar with the concept of transactions itself. If data integrity is important to you, you should look for people who know how to use transactions. Better research a little on what the terms mean when you post looking for technical help, so you won't get burned.
- volomike
- Forum Regular
- Posts: 633
- Joined: Wed Jan 16, 2008 9:04 am
- Location: Myrtle Beach, South Carolina, USA
Re: What skills are similar to InnoDB
Most guys who do PHP that I know -- they do MySQL. A few know PostgreSQL and SQLite as well. And of those whom know MySQL, most know that MySQL comes with a few transaction engines inside that you can choose from, but the only ones I've used were InnoDB and MyISAM. They both have their pluses and minuses depending on the task. When you create a table in the database in MySQL, you choose whether to use MyISAM or InnoDB or another transaction engine. A given MySQL database can mix InnoDB and MyISAM tables, as well.
Most MySQL guys I know are already up to speed on InnoDB and MyISAM. If I were to take a survey, I'd say that's about the norm for 2/3rds of all MySQL devs out there.
So, for me, if a guy has used PHP for a year, more than likely he knows MySQL, and more than likely he knows to use InnoDB or MyISAM inside MySQL, and which works better for the given task.
Now, if you ask a candidate who knows PHP and ask what's InnoDB and they don't know, then heck yeah -- that's a red flag that they're a very junior PHP programmer.
Most MySQL guys I know are already up to speed on InnoDB and MyISAM. If I were to take a survey, I'd say that's about the norm for 2/3rds of all MySQL devs out there.
So, for me, if a guy has used PHP for a year, more than likely he knows MySQL, and more than likely he knows to use InnoDB or MyISAM inside MySQL, and which works better for the given task.
Now, if you ask a candidate who knows PHP and ask what's InnoDB and they don't know, then heck yeah -- that's a red flag that they're a very junior PHP programmer.