Search found 97 matches

by nico.rasters
Wed Aug 06, 2014 8:27 pm
Forum: PATSTAT Product Line
Topic: Beginner needs help
Replies: 1
Views: 4998

Re: Beginner needs help

Not sure if your question is still relevant (and you are posting on the wrong board btw) and I can not test this because I do not have access to PATSTAT Online, but... you missed some brackets: and (tls224_appln_cpc.cpc_class_symbol like 'D01G%' or tls224_appln_cpc.cpc_class_symbol like 'D01H%' or t...
by nico.rasters
Fri Jul 11, 2014 7:56 pm
Forum: PATSTAT Product Line
Topic: How to find number of patents containing NPL in a sector
Replies: 1
Views: 1957

Re: How to find number of patents containing NPL in a sector

You are probably posting in the wrong forum, unless the Global Patent Index is something that was added to the latest PATSTAT edition? if you have PATSTAT you can use `tls212_citation`.`npl_publn_id` to get a count of NPL references. Don't use MAX(`npl_citn_seq_nr`). That only gives the max number f...
by nico.rasters
Fri Jul 11, 2014 7:54 pm
Forum: PATSTAT Product Line
Topic: I am looking for data including this field to each patent
Replies: 1
Views: 1607

Re: I am looking for data including this field to each paten

Do you have access to a local installation of PATSTAT (if so, which version?) or PATSTAT Online? The following query would give you a list of names that have "TEVA" in them. SELECT * FROM `tls206_person` WHERE `person_name` REGEXP "[[:<:]]TEVA[[:>:]]"; Alternatively, you can use ...
by nico.rasters
Fri Jul 11, 2014 7:42 pm
Forum: PATSTAT Product Line
Topic: Linking cited patents to inventors
Replies: 1
Views: 1857

Re: Linking cited patents to inventors

Sorry this post has remained unanswered for such a long time. From the names of the tables in your post, I assume that you are trying to use the OECD Citations database, the OECD REGPAT database, and PATSTAT. You mention PATSTAT April 2013. Is that the version you are using? I'm on October 2013, so ...
by nico.rasters
Fri Apr 25, 2014 11:20 pm
Forum: PATSTAT Product Line
Topic: What applications are in PATSTAT?
Replies: 3
Views: 3294

Re: What applications are in PATSTAT?

Good question. Maybe someone with access to TLS221_INPADOC_PRS can answer this? http://www.epo.org/searching/subscription/raw/product-14-24-1.html Theoretically I would say that all kind of applications can be present in PATSTAT. It is snapshot data after all. There are around 50.000 patents in the ...
by nico.rasters
Wed Mar 12, 2014 6:27 pm
Forum: PATSTAT Product Line
Topic: In which patent offices does a firm file the same invention?
Replies: 3
Views: 2805

Re: In which patent offices does a firm file the same invent

I ran the following query on PATSTAT October 2013. SELECT * FROM `tls206_person` INNER JOIN `tls207_pers_appln` ON `tls206_person`.`person_id` = `tls207_pers_appln`.`person_id` INNER JOIN `tls218_docdb_fam` ON `tls207_pers_appln`.`appln_id` = `tls218_docdb_fam`.`appln_id` WHERE `tls218_docdb_fam`.`d...
by nico.rasters
Wed Mar 12, 2014 6:04 pm
Forum: PATSTAT Product Line
Topic: OECD REGPAT: Urgent Question
Replies: 1
Views: 2326

Re: OECD REGPAT: Urgent Question

First you should reduce the problem. Only patents with multiple applicants are an issue. For patents with multiple applicants there is no direct link between applicant and inventor, but as you are using REGPAT you can use the Ctry_code and Reg_code fields. For example, (based on REGPAT Jan 2014) for...
by nico.rasters
Fri Feb 21, 2014 7:50 pm
Forum: PATSTAT Product Line
Topic: A query for my MA final paper
Replies: 1
Views: 1995

Re: A query for my MA final paper

It's best not to double post. Not a very easy question btw. I assume you are using PATSTAT Online? Instead of the long WHERE (hrm_l2_id= OR OR OR) you could do WHERE `hrm_l2_id` IN (1,2,3,4,etc.) And those IDs are numbers, so no need to put them within quotes. Also you should do a LEFT OUTER JOIN wi...
by nico.rasters
Fri Feb 21, 2014 7:30 pm
Forum: PATSTAT Product Line
Topic: In which patent offices does a firm file the same invention?
Replies: 3
Views: 2805

Re: In which patent offices does a firm file the same invent

You could use http://gder.phpnet.org/The_worldwide_count_of_priority_patents.html in combination with the EEE-PPAT database. Alternatively there's TLS206_PERSON (dirty names), TLS208_DOC_STD_NMS (standardized by the EPO... they themselves say it's low quality) and the OECD HAN database. For your und...
by nico.rasters
Fri Feb 21, 2014 7:05 pm
Forum: PATSTAT Product Line
Topic: Unique inventors names identification problem
Replies: 1
Views: 1895

Re: Unique inventors names identification problem

http://www.esf-ape-inv.eu/ is supposed to deal with that. And at http://gder.phpnet.org/The_worldwide_count_of_priority_patents.html you can see some code to find an inventor's country if it's missing. Having more information is always helpful to distinguish between inventors with the same name. I w...