Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2018
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.79 KB | None | 0 0
  1.  
  2. SHOW CREATE TABLE whois
  3.  
  4. whois CREATE TABLE `whois` (
  5.  `id` int(11) NOT NULL AUTO_INCREMENT,
  6.  `ref` varchar(20) NOT NULL,
  7.  `num` text,
  8.  `domain_name` text,
  9.  `registrar_name` text,
  10.  `contact_email` text,
  11.  `query_time` text,
  12.  `create_date` text,
  13.  `update_date` text,
  14.  `expiry_date` text,
  15.  `standardRegCreatedDate` text,
  16.  `standardRegExpiresDate` text,
  17.  `standardRegUpdatedDate` text,
  18.  `Audit_auditUpdatedDate` text,
  19.  `status` text,
  20.  `whoisServer` text,
  21.  `registrarIANAID` text,
  22.  `domain_registrar_id` text,
  23.  `domain_registrar_name` text,
  24.  `domain_registrar_url` text,
  25.  `domain_registrar_whois` text,
  26.  `registrant_address` text,
  27.  `registrant_city` text,
  28.  `registrant_company` text,
  29.  `registrant_country` text,
  30.  `registrant_email` text,
  31.  `registrant_fax` text,
  32.  `registrant_faxExt` text,
  33.  `registrant_name` text,
  34.  `registrant_organization` text,
  35.  `registrant_phone` text,
  36.  `registrant_postalCode` text,
  37.  `registrant_state` text,
  38.  `registrant_street1` text,
  39.  `registrant_street2` text,
  40.  `registrant_street3` text,
  41.  `registrant_street4` text,
  42.  `registrant_telephone` text,
  43.  `registrant_telephoneExt` text,
  44.  `registrant_zip` text,
  45.  `administrative_city` text,
  46.  `administrative_country` text,
  47.  `administrative_email` text,
  48.  `administrative_fax` text,
  49.  `administrative_faxExt` text,
  50.  `administrative_name` text,
  51.  `administrative_organization` text,
  52.  `administrative_postalCode` text,
  53.  `administrative_state` text,
  54.  `administrative_street1` text,
  55.  `administrative_street2` text,
  56.  `administrative_street3` text,
  57.  `administrative_street4` text,
  58.  `administrative_telephone` text,
  59.  `administrative_telephoneExt` text,
  60.  `administrative_address` text,
  61.  `administrative_company` text,
  62.  `administrative_phone` text,
  63.  `administrative_zip` text,
  64.  `technical_city` text,
  65.  `technical_country` text,
  66.  `technical_email` text,
  67.  `technical_fax` text,
  68.  `technical_faxExt` text,
  69.  `technical_name` text,
  70.  `technical_organization` text,
  71.  `technical_postalCode` text,
  72.  `technical_state` text,
  73.  `technical_street1` text,
  74.  `technical_street2` text,
  75.  `technical_street3` text,
  76.  `technical_street4` text,
  77.  `technical_telephone` text,
  78.  `technical_telephoneExt` text,
  79.  `technical_address` text,
  80.  `technical_company` text,
  81.  `technical_phone` text,
  82.  `technical_zip` text,
  83.  `billing_city` text,
  84.  `billing_country` text,
  85.  `billing_email` text,
  86.  `billing_fax` text,
  87.  `billing_faxExt` text,
  88.  `billing_name` text,
  89.  `billing_organization` text,
  90.  `billing_postalCode` text,
  91.  `billing_state` text,
  92.  `billing_street1` text,
  93.  `billing_street2` text,
  94.  `billing_street3` text,
  95.  `billing_street4` text,
  96.  `billing_telephone` text,
  97.  `billing_telephoneExt` text,
  98.  `billing_address` text,
  99.  `billing_company` text,
  100.  `billing_phone` text,
  101.  `billing_zip` text,
  102.  `zone_city` text,
  103.  `zone_country` text,
  104.  `zone_email` text,
  105.  `zone_fax` text,
  106.  `zone_faxExt` text,
  107.  `zone_name` text,
  108.  `zone_organization` text,
  109.  `zone_postalCode` text,
  110.  `zone_state` text,
  111.  `zone_street1` text,
  112.  `zone_street2` text,
  113.  `zone_street3` text,
  114.  `zone_street4` text,
  115.  `zone_telephone` text,
  116.  `zone_telephoneExt` text,
  117.  `name_server_1` text,
  118.  `name_server_2` text,
  119.  `name_server_3` text,
  120.  `name_server_4` text,
  121.  `domain_status_1` text,
  122.  `domain_status_2` text,
  123.  `domain_status_3` text,
  124.  `domain_status_4` text,
  125.  PRIMARY KEY (`id`),
  126.  KEY `ref` (`ref`)
  127. ) ENGINE=InnoDB AUTO_INCREMENT=106352427 DEFAULT CHARSET=utf8
  128.  
  129. ---------------
  130. DESC whois
  131.  
  132.  
  133.  
  134. id int(11) NO PRI auto_increment
  135. ref varchar(20) NO MUL
  136. num text YES
  137. domain_name text YES
  138. registrar_name text YES
  139. contact_email text YES
  140. query_time text YES
  141. create_date text YES
  142. update_date text YES
  143. expiry_date text YES
  144. standardRegCreatedDate text YES
  145. standardRegExpiresDate text YES
  146. standardRegUpdatedDate text YES
  147. Audit_auditUpdatedDate text YES
  148. status text YES
  149. whoisServer text YES
  150. registrarIANAID text YES
  151. domain_registrar_id text YES
  152. domain_registrar_name text YES
  153. domain_registrar_url text YES
  154. domain_registrar_whois text YES
  155. registrant_address text YES
  156. registrant_city text YES
  157. registrant_company text YES
  158. registrant_country text YES
  159. registrant_email text YES
  160. registrant_fax text YES
  161. registrant_faxExt text YES
  162. registrant_name text YES
  163. registrant_organization text YES
  164. registrant_phone text YES
  165. registrant_postalCode text YES
  166. registrant_state text YES
  167. registrant_street1 text YES
  168. registrant_street2 text YES
  169. registrant_street3 text YES
  170. registrant_street4 text YES
  171. registrant_telephone text YES
  172. registrant_telephoneExt text YES
  173. registrant_zip text YES
  174. administrative_city text YES
  175. administrative_country text YES
  176. administrative_email text YES
  177. administrative_fax text YES
  178. administrative_faxExt text YES
  179. administrative_name text YES
  180. administrative_organization text YES
  181. administrative_postalCode text YES
  182. administrative_state text YES
  183. administrative_street1 text YES
  184. administrative_street2 text YES
  185. administrative_street3 text YES
  186. administrative_street4 text YES
  187. administrative_telephone text YES
  188. administrative_telephoneExt text YES
  189. administrative_address text YES
  190. administrative_company text YES
  191. administrative_phone text YES
  192. administrative_zip text YES
  193. technical_city text YES
  194. technical_country text YES
  195. technical_email text YES
  196. technical_fax text YES
  197. technical_faxExt text YES
  198. technical_name text YES
  199. technical_organization text YES
  200. technical_postalCode text YES
  201. technical_state text YES
  202. technical_street1 text YES
  203. technical_street2 text YES
  204. technical_street3 text YES
  205. technical_street4 text YES
  206. technical_telephone text YES
  207. technical_telephoneExt text YES
  208. technical_address text YES
  209. technical_company text YES
  210. technical_phone text YES
  211. technical_zip text YES
  212. billing_city text YES
  213. billing_country text YES
  214. billing_email text YES
  215. billing_fax text YES
  216. billing_faxExt text YES
  217. billing_name text YES
  218. billing_organization text YES
  219. billing_postalCode text YES
  220. billing_state text YES
  221. billing_street1 text YES
  222. billing_street2 text YES
  223. billing_street3 text YES
  224. billing_street4 text YES
  225. billing_telephone text YES
  226. billing_telephoneExt text YES
  227. billing_address text YES
  228. billing_company text YES
  229. billing_phone text YES
  230. billing_zip text YES
  231. zone_city text YES
  232. zone_country text YES
  233. zone_email text YES
  234. zone_fax text YES
  235. zone_faxExt text YES
  236. zone_name text YES
  237. zone_organization text YES
  238. zone_postalCode text YES
  239. zone_state text YES
  240. zone_street1 text YES
  241. zone_street2 text YES
  242. zone_street3 text YES
  243. zone_street4 text YES
  244. zone_telephone text YES
  245. zone_telephoneExt text YES
  246. name_server_1 text YES
  247. name_server_2 text YES
  248. name_server_3 text YES
  249. name_server_4 text YES
  250. domain_status_1 text YES
  251. domain_status_2 text YES
  252. domain_status_3 text YES
  253. domain_status_4 text YES
  254.  
  255. ---------------
  256. ANALYZE TABLE whois
  257.  
  258. capturesipbee.whois analyze status OK
  259.  
  260. ---------------
  261. OPTIMIZE TABLE whois
  262.  
  263. capturesipbee.whois optimize note Table does not support optimize, doing recreate + analyze instead
  264. capturesipbee.whois optimize error Error writing file './capturesipbee/#sql-4742_3ab7e.frm' (Errcode: 28 "No space left on device")
  265. capturesipbee.whois optimize status Operation failed
  266.  
  267. ---------------
  268. SELECT COUNT(*) FROM whois
  269.  
  270. 106352406
  271. ---------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement