View Single Post
Old 12-30-2016, 09:02 AM  
Barry-xlovecam
It's 42
 
Industry Role:
Join Date: Jun 2010
Location: Global
Posts: 18,083
Yes

Code:
mysql> DESCRIBE xvideos;
+------------+-----------+------+-----+---------+-------+
| Field      | Type      | Null | Key | Default | Extra |
+------------+-----------+------+-----+---------+-------+
| url        | char(50)  | NO   |     | NULL    |       |
| performer  | char(30)  | NO   |     | NULL    |       |
| runtime    | char(12)  | YES  |     | NULL    |       |
| thumb      | char(120) | YES  |     | NULL    |       |
| iframeCode | char(200) | YES  |     | NULL    |       |
| tags       | char(200) | YES  | MUL | NULL    |       |
| category   | char(60)  | YES  | MUL | NULL    |       |
+------------+-----------+------+-----+---------+-------+
7 rows in set (0.00 sec)

mysql> SELECT count(performer) FROM xvideos;
+------------------+
| count(performer) |
+------------------+
|          4543335 |
+------------------+
1 row in set (0.00 sec)
  1. Find the xvideos database in a search
  2. download the csv
  3. create a table for it
  4. export the data and then sort the data to a file of unique names.

Or pay someone to do it for you.
Barry-xlovecam is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote