Every company search should start outside PATSTAT.
Robert Bosch
Let's start with "Robert Bosch". First question: Which "Robert Bosch" are we looking at here? The most obvious one, e.g. "Robert Bosch GmbH"? In that case, we can find more information on
https://en.wikipedia.org/wiki/Robert_Bosch_GmbH and
http://www.bloomberg.com/research/stock ... pId=630409.
The company was formerly known as Workshop for Precision Mechanics and Electrical Engineering and changed its name to Robert Bosch GmbH in 1937. Robert Bosch GmbH was founded in 1886 and is headquartered in Stuttgart, Germany. Robert Bosch GmbH operates as a subsidiary of Robert Bosch Stiftung Gmbh.
In the 2013 Annual Report
http://www.bosch.com/content2/publicati ... t_2013.pdf we read that "The Bosch Group comprises Robert Bosch GmbH and its more than 360 subsidiaries and regional companies in some 50 countries. If its sales and service partners are included, then Bosch is represented in roughly 150 countries."
How to search for "Robert Bosch GmbH" in PATSTAT?
SELECT * FROM `tls206_person` WHERE `person_name` LIKE "Robert Bosch%";
SELECT * FROM `tls206_person` WHERE `person_name` REGEXP "Robert Bosch";
SELECT * FROM `tls206_person` WHERE `person_name` REGEXP "[[:<:]]Robert Bosch[[:>:]]";
SELECT * FROM `tls206_person` WHERE `person_name` = "Robert Bosch GmbH";
Maybe add the clause AND `person_ctry_code` IN ("","DE")
Limit to applicants only by joining with tls207_pers_appln.
Or we could search in tls208_doc_std_nms.
Btw, REGEXP does not work in PATSTAT Online.
If you add "GmbH" to your search then you will miss "Robert Bosch Gesellschaft mit beschränkter Haftung".
If you use tls208 you will get false positives such as "ROBERT BOSCH TOOL CORPORATION" (at least in PATSTAT October 2014 with doc_std_name_id 401). It will also give you Robert Bosch GmbH in India, Japan, Italy, etc. I don't know if these are local offices, subsidiaries or just mistakes made by the applicant. I do know that these countries do not have the legal business entity GmbH.
Now we may think that we can just search for Robert Bosch and that will allow us to capture the subsidiaries as well. But that's not really a good approach. So should we leave out the subsidiaries?
If you restrict your search to Robert Bosch GmbH only, keep in mind that there might be an "Intellectual Property Management" subsidiary that holds most of the patents. That and the fact that financial data is usually consolidated (i.e. subsidiaries are included), are good reasons for trying to find patents for subsidiaries as well. But as always it depends on your research question.
More later...