Am 02.03.2014 12:58, schrieb Kolossos:
> Is there any idea for a workaround to get from 300.000 Wikipedia
> articles the Wikidata Q-Number?
> 
> [1]   SELECT `ips_item_id` FROM `wb_items_per_site`
> WHERE `ips_site_id` = 'dewiki'
> AND `ips_site_page` = 'Bundesanstalt_für_Verwaltungsdienstleistungen';

dewiki and wikidatawiki are on the same database s5, so there is not
difference. And replication is ok. Only commonswiki is missing on s5
since two days.
Your query should not return any result on both databases because
ips_site_page is using spaces instead of underscores. Because of the "ü"
you could also use a wrong character encoding on your connection.
For me

 SELECT @@hostname, `ips_item_id` FROM
wikidatawiki_p.`wb_items_per_site` WHERE `ips_site_id` = 'dewiki' AND
`ips_site_page` = 'Bundesanstalt für Verwaltungsdienstleistungen';

returns the correct result on toolserver and labs.

+------------+-------------+
| @@hostname | ips_item_id |
+------------+-------------+
| z-dat-s5-b |    15793045 |
+------------+-------------+
1 row in set (0.00 sec)
+------------+-------------+
| @@hostname | ips_item_id |
+------------+-------------+
| labsdb1002 |    15793045 |
+------------+-------------+
1 row in set (0.03 sec)


But you could also rewrite your query and request dewiki instead of
wikidatawiki:

SELECT TRIM(LEADING 'Q' FROM TRIM(LEADING 'q' FROM pp_value)) AS ips_item_id
 FROM dewiki_p.page
  INNER JOIN dewiki_p.page_props ON page_id=pp_page
 WHERE page_namespace=0 AND
page_title='Bundesanstalt_für_Verwaltungsdienstleistungen'
 AND pp_propname='wikibase_item';

+-------------+
| ips_item_id |
+-------------+
| 15793045    |
+-------------+
1 row in set (0.04 sec)


_______________________________________________
Toolserver-l mailing list (Toolserver-l@lists.wikimedia.org)
https://lists.wikimedia.org/mailman/listinfo/toolserver-l
Posting guidelines for this list: 
https://wiki.toolserver.org/view/Mailing_list_etiquette

Reply via email to