Ognacの雑感

木漏れ日々

目次

Blog 利用状況

書庫

ギャラリ

主キーは必須ではありません

以前にも触れたのですが、RDBのテーブルに主キー設定を必須にしている開発標準を見かけます。
データ行数が増減しない、固定のテーブルは結構あるものです。
性別テーブル、部署テーブル、得意先ランクテーブル、商品類別テーブルその他諸々。
少ないテープルたと、2行、多くても100行程度のテーブルはあります。
プロジェクトによっては、一つの汎用マスターに纏めているシステムもありますが、私は嫌で、各々1つのテーブルにします。
    (RDBのテーブル管理が1次元なので、管理しづらい面はありますが)
引用が多いテーブルでも、行数が少ない場合は、索引を貼るメリットは薄いです。速度面でも、貼らない方が早いケースもあります。
フォーリンキーで結合していたり、更新系の部分を生成フレームワークに依存する時は、キーが必要になるので、主キー設定を必須にしているのだと思います。
性別テーブルやランクテーブルは、更新(保守)することって無いでしょう。更新しないテープルと頻繁に更新するマスターは別扱いにした方が、楽できそうです。
 
多くの索引を貼っているテーブルを見かけます。機会性能が向上したので、負になる部分が隠れてしまうのでしょうか。顧客マスターの性別項目に索引を貼っているのもありました。担当者項目、顧客ランク項目にも張ってましたね。
重複を許す索引を設定するとき、キー値に該当するレコードは最大でも全体量の10%以下(数字は説が色々あるようです)が望ましいと言われています。
「索引を貼ると高速化する」と信じる前に、索引を全部はずして、速度比較してみると意外なことが判ります。
追加更新系やバッチが早くなったり、エントリーレスポンスは殆ど変わらなかったり。サーバー負荷が軽くなったり(少ないでしょうが)
SQL文の組み方で速度差は10倍以上の開きがあるのは、有名な話です。
 索引に頼らないで、高速化できれば、そのほうがDB構造もスッキリするし、保守性も高まります。
「ネック順の上位20%を改善したら、80%は解決する」という法則に該当しそうです。

投稿日時 : 2009年6月5日 0:13

Feedback

# re: 主キーは必須ではありません 2009/06/05 5:00 れい

> プロジェクトによっては、一つの汎用マスターに纏めているシステムもありますが、私は嫌で、各々1つのテーブルにします。

これは「そのほうが綺麗」だからですよね。

> 索引に頼らないで、高速化できれば、そのほうがDB構造もスッキリするし、保守性も高まります。

当たり前ですが、索引とかで無理にがんばる前に、まず「DBの構造をキレイにしろ」ってことですよね?
だとすると、このエントリ全体で主張がよく見えません。

> 引用が多いテーブルでも、行数が少ない場合は、索引を貼るメリットは薄いです。速度面でも、貼らない方が早いケースもあります。

「主キー」というのは「索引」だけではないですよね?
「主キー」は、候補キーのうち、「タプルを指定する際はできるだけこれを使うべき」ということを意味するキーですから、本来「索引」や「速度」とは無関係ですよね。
「美しさ」とか、「お行儀」の問題のはずで、上述の「DBの構造をキレイにしろ」に該当しませんか?

候補キーは、設定してやらねばDB側にはわかりませんが、ひとたび候補キーや主キーを設定されれば、それに索引を張って管理するかどうかはDBが考えればよいことのはずです。
(主キーに強制的に索引がついたり、開発者が設定しないと索引がつかない、という現実の制約はありますが。)

なので、まず最初の行儀としては「主キーは設定すべき」で、その後、パフォーマンスチューニングの段階で外すか否かを決定するべきだと私は思います。

このエントリは
「主キーは要らない=現実にあわせて小細工して、構造的な美しさを我慢しろ」
という主張と、
「構造をスッキリ=理想的な構造にして、小細工しないようにせよ」
という矛盾する主張が二つはいっているように感じられます。

# re: 主キーは必須ではありません 2009/06/05 12:26 mintia

私も原則的に主キー必須派です。
その構造がどの項目単位にユニークになるか、
一目でわかるからです。(速度的にもよい)

ドキュメントもあやふやなテーブル定義書をよく目にしますが、そのDBを保守する、または、解析する立場としては、
あやふやなドキュメントを作るよりかは、主キーを
設定してほしいと思いました。

# re: 主キーは必須ではありません 2009/06/05 13:14 aetos

> その構造がどの項目単位にユニークになるか、
> 一目でわかるからです。(速度的にもよい)

コードと名称の2列しかないようなテーブルでは、おのずと明らかでしょうけどね。
ただ、ある程度複雑なテーブルで、主キーがいい加減でリレーションを把握できなかった経験はあるので、おっしゃることはわかります。

速度的に良いかどうかは一概に言えませんね、というのが記事の趣旨(の一つ)だと思いますが。

# re: 主キーは必須ではありません 2009/06/05 19:31 Ognac

タイトルがバグってました。
「主キーに索引設定は必須ではありません」としないと、駄目でした。
確かに、主キーが存在しないテープルはすくないですね。

趣旨は、
「綺麗な構造にしましょう」
「主キーになる項目(複数項目も)に機械的に索引を貼るのは考え物です。無索引のほうが効率的なこともあります。」です。

>主キーを設定してほしいと思いました。
趣旨を混乱させて、すいませんでした
れいさんの御指摘にありましたように、業務データでは、主キーのないデータはすくないですね。
「主キーは索引を設定てほしい」という意味でしょうか。

>コードと名称の2列しかないようなテーブルでは、おのずと明らかでしょうけどね。

性別Table
Code Contents
-------------------
M 男性
F 女性

という、二項目、2列のテーブルです。
主キーは Code になります。

おそらく、一度作成すれば、保守されることはないでしょう。
索引は不要というのが趣旨でした。
何行以上の時に索引必要かとなると、難しいのですが、500件以上でよいような感じがします。(経験則ですが)

# re: 主キーは必須ではありません 2009/06/06 0:24 ちゃっぴ

昔、primary key が無い table で replication が必要になって、強引に primary key つけてもらったな~。

# Everything is very open with a really clear clarification of the issues. It was definitely informative. Your website is very useful. Many thanks for sharing! 2019/04/05 12:53 Everything is very open with a really clear clarif

Everything is very open with a really clear clarification of the issues.
It was definitely informative. Your website is very useful.
Many thanks for sharing!

# orIVejpGaaZ 2019/04/22 16:47 https://www.suba.me/

jNJwK2 pretty handy stuff, overall I consider this is really worth a bookmark, thanks

# NYPoanoFbmsnWMeo 2019/04/28 2:34 http://tinyurl.com/lg3gnm9

you ave gotten an awesome weblog right here! would you prefer to make some invite posts on my blog?

# UQBVXXdevOJy 2019/04/29 19:44 http://www.dumpstermarket.com

In my country we don at get much of this type of thing. Got to search around the entire world for such up to date pieces. I appreciate your energy. How do I find your other articles?!

# xEVLYSjmVNAmAiW 2019/04/30 17:17 https://www.dumpstermarket.com

Very neat article.Much thanks again. Really Great.

# wTAlBwlQPdxKWqOo 2019/04/30 20:16 https://cyber-hub.net/

There is perceptibly a bundle to realize about this. I assume you made various good points in features also.

# NDCrMcCNrmwTm 2019/05/01 18:15 https://scottwasteservices.com/

you ave got an you ave got an important blog here! would you wish to make some invite posts on my weblog?

# fmeLufDSbV 2019/05/01 20:43 https://mveit.com/escorts/australia/sydney

Really clear website , thankyou for this post.

# aMhkLOKlfzObVrSYZB 2019/05/03 7:05 http://connertonhomes.com/__media__/js/netsoltrade

I went over this web site and I believe you have a lot of great info, saved to bookmarks (:.

# VeEjAnMsWdIIWTEw 2019/05/03 18:19 http://metallom.ru/board/tools.php?event=profile&a

It as not that I would like to copy your website, excluding I in fact like the explain. Possibly will you discern me which design are you using? Or was it custom made?

# jikoyZNnWJzcSmTvM 2019/05/03 19:03 https://mveit.com/escorts/australia/sydney

This is a great tip particularly to those fresh to the blogosphere. Short but very precise information Thanks for sharing this one. A must read article!

# GYWidJEnMNBw 2019/05/03 21:09 https://mveit.com/escorts/united-states/houston-tx

seo tools ??????30????????????????5??????????????? | ????????

# nEMMOwidqkbuvpWCa 2019/05/03 22:45 https://mveit.com/escorts/united-states/los-angele

Very good article.Really looking forward to read more. Really Great.

# IDznyITQrnIVBXhqwT 2019/05/04 1:34 http://bigan.org/__media__/js/netsoltrademark.php?

This unique blog is without a doubt entertaining and factual. I have picked many handy tips out of this source. I ad love to go back over and over again. Thanks a lot!

# hOElidkFaPtdSSjHEZ 2019/05/07 18:23 https://www.mtcheat.com/

Pretty! This has been an extremely wonderful post. Thanks for providing this info.

# pfOhsahXvyvbKvF 2019/05/08 3:16 https://www.mtpolice88.com/

Very excellent information can be found on site.

# MOxfyQJxxM 2019/05/08 20:27 https://ysmarketing.co.uk/

I was suggested this web site by my cousin. I am not sure whether this post is written by him as nobody else know such detailed about my trouble. You are amazing! Thanks!

# GkSyuGKlQVKPtXIS 2019/05/08 23:07 https://biashara.co.ke/author/keylamcdaniel/

I truly appreciate this blog.Really looking forward to read more. Great.

# IJMWEtwAdBdV 2019/05/09 7:43 http://mcauleymcculloch.strikingly.com/

Major thanks for the article post. Awesome.

# nPNKpeVyvPmrAJ 2019/05/09 9:19 https://spaces.hightail.com/space/uqbNEr9XlV

It as enormous that you are getting thoughts

# iNfSkycyHxHxTesidd 2019/05/09 13:36 https://writexo.com/12i8hzsx

Just a smiling visitor here to share the love (:, btw great design.

# PkoUlFqrVCCrjDSDLFz 2019/05/09 17:55 https://www.mjtoto.com/

You ought to be a part of a contest for one of the highest quality blogs online. I am going to highly recommend this blog!

# TBbrriCjdHs 2019/05/09 20:05 https://pantip.com/topic/38747096/comment1

pretty valuable material, overall I believe this is worth a bookmark, thanks

# EZDHaYAdbsIlhJlQaS 2019/05/09 21:58 https://www.sftoto.com/

I think other website proprietors should take this website as an model, very clean and excellent user friendly style and design, let alone the content. You are an expert in this topic!

# jpmEUnQFpEUA 2019/05/10 0:09 https://www.ttosite.com/

Loving the information on this site, you have done outstanding job on the articles.

# dDRbseaNdnipvsTrGM 2019/05/10 1:06 http://navarro2484dj.nightsgarden.com/for-ample-i-

Tirage en croix du tarot de marseille horoscope femme

# ihrZpqPeFdHJuQ 2019/05/10 2:56 https://www.mtcheat.com/

Just Browsing While I was browsing today I noticed a great post about

# lqevjgvzHyAAjLyukWZ 2019/05/10 3:29 http://www.spuntiespuntini.it/index.php?option=com

Utterly written content material, appreciate it for selective information. No human thing is of serious importance. by Plato.

# kyIjWpbncZzJUx 2019/05/10 6:56 https://disqus.com/home/discussion/channel-new/the

It as not that I want to replicate your web-site, but I really like the pattern. Could you let me know which design are you using? Or was it tailor made?

# tXZTuDyuqOph 2019/05/10 7:22 https://bgx77.com/

Really enjoyed this article.Really looking forward to read more. Great.

# jSaERkutGtUCcH 2019/05/10 16:01 http://blucat.de/index.php?title=Benutzer:NannieGa

You can definitely see your skills in the work you write. The world hopes for even more passionate writers like you who are not afraid to say how they believe. Always go after your heart.

# XGljeEnMGylCeWpVJ 2019/05/10 21:28 http://www.floridarealestatedirectory.com/user_det

It as the little changes which will make the largest changes.

# YJmpCjzRYb 2019/05/12 22:11 https://www.sftoto.com/

Im no pro, but I believe you just made the best point. You definitely comprehend what youre talking about, and I can actually get behind that. Thanks for being so upfront and so sincere.

# tPghrqHpeMz 2019/05/13 0:33 https://www.mjtoto.com/

Really appreciate you sharing this blog.Thanks Again. Fantastic.

# dkSVLLRekRky 2019/05/13 2:00 https://reelgame.net/

Regards for helping out, great information.

# GgTFRztNWIpFhXLlO 2019/05/13 19:38 https://www.ttosite.com/

So pleased to possess located this submit.. Undoubtedly valuable perspective, many thanks for expression.. Excellent views you possess here.. I enjoy you showing your point of view..

# gVzlsTbNrbnG 2019/05/14 0:38 https://zarulim.com.ua/user/ChiHoke30727/

some fastidious points here. Any way keep up wrinting.

# OAZWyLlrNTCc 2019/05/14 2:46 https://www.navy-net.co.uk/rrpedia/Search_Undernea

I went over this website and I believe you have a lot of wonderful info , saved to my bookmarks (:.

# NRrGPiUJEsOt 2019/05/14 16:48 http://autofacebookmarket7yr.nightsgarden.com/use-

Thanks for sharing, this is a fantastic blog article. Keep writing.

# xhongEqUrodxvfBVv 2019/05/14 19:05 https://www.dajaba88.com/

Thanks so much for the post.Much thanks again. Fantastic.

# lxwpuswjxHse 2019/05/14 20:46 http://johnsonw5v.firesci.com/when-my-husband-and-

we came across a cool web site which you could love. Take a appear when you want

# ltSkSGxRyWv 2019/05/14 20:51 https://bgx77.com/

the fans was something else. Minds can and do

# MlztxHeUdrpxzKW 2019/05/15 1:32 https://www.mtcheat.com/

Outstanding post, I believe people should larn a lot from this weblog its very user friendly.

# VkoOxxrpsmjjt 2019/05/15 12:30 http://jaqlib.sourceforge.net/wiki/index.php/User:

Well I definitely enjoyed reading it. This article provided by you is very helpful for proper planning.

# pjJmCiPIrfx 2019/05/15 15:00 https://www.talktopaul.com/west-hollywood-real-est

If you are not willing to risk the usual you will have to settle for the ordinary.

# KOFtJFrUkaSM 2019/05/15 17:49 https://www.evernote.com/shard/s563/sh/d3fd4e1c-94

Real good info can be found on blog.

# bHvNRZHoaQE 2019/05/15 20:58 http://www.boryspil-eparchy.org/browse/ukhod_za_mo

you may have an ideal blog here! would you prefer to make some invite posts on my blog?

# CINuQSZTqZOY 2019/05/16 21:45 http://gutenborg.net/story/400832/#discuss

Thanks a lot for the blog post.Really looking forward to read more. Want more.

# HnrNCwUJBuq 2019/05/16 23:54 https://www.mjtoto.com/

Thanks a lot for the article post.Thanks Again. Fantastic.

# RzHhtYoNlHXfvF 2019/05/17 2:53 https://www.sftoto.com/

pretty handy material, overall I imagine this is really worth a bookmark, thanks

# rsGKUvEpomxM 2019/05/17 19:34 https://www.youtube.com/watch?v=9-d7Un-d7l4

You made some clear points there. I did a search on the issue and found most guys will agree with your website.

# hnyMASPaQGVS 2019/05/18 6:01 https://www.mtcheat.com/

Major thanks for the blog post.Thanks Again. Awesome.

# NRQlVMbMNpRbOBJM 2019/05/18 11:31 https://www.dajaba88.com/

This excellent website truly has all the information I needed concerning this subject and didn at know who to ask.

# azMMEuTrXmulQ 2019/05/18 13:51 https://www.ttosite.com/

Wohh precisely what I was looking for, appreciate it for posting.

# CofUjygIBMKfVDrbfO 2019/05/20 17:36 https://nameaire.com

Wow! This could be one particular of the most beneficial blogs We ave ever arrive across on this subject. Actually Great. I am also an expert in this topic therefore I can understand your hard work.

# hnmwVRqqRqjQbybf 2019/05/22 4:46 http://2learnhow.com/story.php?title=best-prince-c

modified by way of flipping armrests. With these ensembles, you could transform a few

# dHwNNsqnFHlARhMw 2019/05/22 17:13 https://blogfreely.net/micerefund3/an-examination-

Really appreciate you sharing this blog.Thanks Again. Really Great.

# QhavKNBEKX 2019/05/22 22:32 https://bgx77.com/

I think this is a real great post. Really Great.

# dtFsNEWNakXYPhMA 2019/05/23 0:26 https://totocenter77.com/

Wow, that as what I was searching for, what a material! present here at this weblog, thanks admin of this web page.

# roOFHxHQhqOEYnd 2019/05/23 3:14 https://www.mtcheat.com/

website and I ad like to find something more safe.

# LHazePoEVFPlaUYBNG 2019/05/24 5:45 https://www.talktopaul.com/videos/cuanto-valor-tie

Very informative article.Much thanks again. Much obliged.

# clzydXJATXP 2019/05/25 3:30 http://farlov.net/__media__/js/netsoltrademark.php

This is a topic which is near to my heart Many thanks! Where are your contact details though?

# JrHknRKTKq 2019/05/25 10:08 https://lynchrhodes8151.de.tl/This-is-my-blog/inde

When are you going to post again? You really entertain a lot of people!

# EyNahmBmdb 2019/05/26 3:40 http://vinochok-dnz17.in.ua/user/LamTauttBlilt372/

Muchos Gracias for your article.Much thanks again. Awesome.

# tiMmKeUHzkXmxnPad 2019/05/27 18:10 https://www.ttosite.com/

It as nearly impossible to find knowledgeable people in this particular topic, however, you seem like you know what you are talking about! Thanks

# yssqTQcBggFFfkbRx 2019/05/27 19:42 https://bgx77.com/

You made some really good points there. I checked on the net for additional information about the issue and found most people will go along with your views on this website.

# KIAxmHVXOzAgMe 2019/05/27 23:13 http://travianas.lt/user/vasmimica688/

Some really fantastic info , Gladiolus I detected this.

# cxqVvdsMvgtTKF 2019/05/28 23:07 http://bestofwecar.world/story.php?id=19830

This blog is really cool and besides informative. I have chosen a lot of useful advices out of this amazing blog. I ad love to visit it over and over again. Thanks!

# oxqIuOIsZUSAthXzYO 2019/05/29 21:11 https://www.boxofficemoviez.com

You have made some good points there. I checked on the internet for more information about the issue and found most people will go along with your views on this web site.

# paxZOSRZbUvPjAVnbE 2019/05/29 22:45 https://www.ttosite.com/

I think other site proprietors should take this web site as an model, very clean and great user genial style and design, let alone the content. You are an expert in this topic!

# VGQvAxIYxYwskByrc 2019/05/30 3:55 https://www.mtcheat.com/

It as nearly impossible to find experienced people on this subject, however, you seem like you know what you are talking about! Thanks

# BjlyOWjuTemCVtc 2019/05/31 2:21 http://qualityfreightrate.com/members/dryerpoint72

Thanks-a-mundo for the blog article.Really looking forward to read more. Much obliged.

# flMJaiqQQhnq 2019/05/31 16:40 https://www.mjtoto.com/

Wow, that as what I was exploring for, what a stuff! present here at this webpage, thanks admin of this web site.

# oPtDeRlPVqiSW 2019/06/01 5:50 http://menstrength-forum.site/story.php?id=8091

pretty practical stuff, overall I consider this is really worth a bookmark, thanks

# tfgLyWpflRVUt 2019/06/03 20:50 http://totocenter77.com/

This page truly has all the information and facts I wanted concerning this subject and didn at know who to ask.

# WfdNDpipRGm 2019/06/03 23:54 https://ygx77.com/

This is a set of phrases, not an essay. you are incompetent

# ofXGCTJXcqFjwYAjfDf 2019/06/04 10:50 http://studio1london.ca/members/bagelside2/activit

It as not that I want to duplicate your website, but I really like the pattern. Could you let me know which design are you using? Or was it especially designed?

# NOqnjaKLWVGJyyCWjD 2019/06/04 20:43 https://www.creativehomeidea.com/clean-up-debris-o

Really enjoyed this blog article.Really looking forward to read more. Fantastic.

# sFYbuIprCAHBV 2019/06/05 17:01 http://maharajkijaiho.net

I value the post.Really looking forward to read more. Keep writing.

# eaBkFDfOmwJOMVMTkkJ 2019/06/05 22:50 https://betmantoto.net/

This unique blog is obviously entertaining additionally informative. I have discovered a bunch of helpful advices out of this amazing blog. I ad love to return every once in a while. Thanks a bunch!

# mSRjGmeVNC 2019/06/06 1:31 https://mt-ryan.com/

Wow, great article.Really looking forward to read more. Want more.

# hMZnjKaQLsSmuxoKye 2019/06/07 18:32 https://ygx77.com/

Wow, wonderful blog layout! How long have you been blogging for? you make blogging look easy. The overall look of your web site is magnificent, as well as the content!

# BrUvFxRGfzq 2019/06/07 20:39 https://www.mtcheat.com/

This website certainly has all the information I needed concerning this subject and didn at know who to ask.

# JCDJnsrrCxdPbBgNJW 2019/06/07 23:53 https://totocenter77.com/

Wow that was odd. I just wrote an incredibly long comment but after I clicked submit my comment didn at appear. Grrrr well I am not writing all that over again. Anyhow, just wanted to say great blog!

# ULKwbMYpeSXpqad 2019/06/08 1:30 https://www.ttosite.com/

Thanks a lot for the post. Keep writing.

# HduhuOeQWiYTTD 2019/06/08 4:06 https://mt-ryan.com

you have an amazing blog here! would you prefer to make some invite posts on my weblog?

# MSVLkbCamHeSnYnEJ 2019/06/08 5:39 https://www.mtpolice.com/

Where I am from we don at get enough of this type of thing. Got to search around the entire globe for such relevant stuff. I appreciate your effort. How do I find your other articles?!

# dXMspzXUcHgUGNuVBJ 2019/06/08 8:13 https://www.mjtoto.com/

This is a topic which is close to my heart Take care! Exactly where are your contact details though?

# yYpCFfPRHIQyVtbom 2019/06/08 9:45 https://betmantoto.net/

You should take part in a contest for top-of-the-line blogs on the web. I all advocate this web site!

# kbCRQomYNUjSq 2019/06/10 16:47 https://ostrowskiformkesheriff.com

Stunning story there. What occurred after? Take care!

# kSXBZzWykQxCWzjH 2019/06/10 18:28 https://xnxxbrazzers.com/

I truly appreciate this article post. Really Great.

# mYVGUvfzdDig 2019/06/12 17:15 http://www.castagneto.eu/index.php?option=com_k2&a

Thanks for the news! Just was thinking about it! By the way Happy New Year to all of you:D

# DDlITfdGEnIz 2019/06/12 23:38 https://www.anugerahhomestay.com/

Thanks so much for the article.Really looking forward to read more. Want more.

# HUJRyIpSjFxcDcMH 2019/06/13 2:40 http://backsitelinks.xyz/story.php?title=new-york-

You have brought up a very superb details , appreciate it for the post.

# PDbpWLXRpUdyNtmfY 2019/06/13 2:49 https://linkedpaed.com/blog/view/44815/very-best-q

I think other web-site proprietors should take this site as an model, very clean and great user genial style and design, let alone the content. You are an expert in this topic!

# UDqaVrUhkw 2019/06/14 21:21 https://reeceworkman5236.page.tl/Find-out-Best-Ste

Its hard to find good help I am regularly proclaiming that its difficult to get quality help, but here is

# hcUiWuKzxGpnxnv 2019/06/17 19:00 https://www.buylegalmeds.com/

I think other site proprietors should take this site as an model, very clean and magnificent user friendly style and design, let alone the content. You are an expert in this topic!

# SCMrfTnNKp 2019/06/17 22:39 http://theorymeat7.iktogo.com/post/get-the-first-o

Just to let you know your website looks a little bit different on Safari on my laptop with Linux.

# oMwFAEROiRRd 2019/06/18 1:27 https://writeablog.net/sledbrush9/the-significance

There as definately a great deal to find out about this issue. I like all the points you have made.

# VursrYKjxvyD 2019/06/19 2:40 https://www.duoshop.no/category/erotiske-noveller/

I went over this site and I think you have a lot of wonderful information, saved to my bookmarks (:.

# gBcyEtvLAh 2019/06/20 1:14 http://eprostarchive.med.miami.edu/_WOM/Eprost/Ope

the check this site out in a single-elimination bracket and let people vote for their favorites.

# uYPLORSegRJcFPF 2019/06/21 22:03 http://galanz.xn--mgbeyn7dkngwaoee.com/

When some one searches for his necessary thing, therefore he/she needs to be available that in detail, therefore that thing is maintained over here.

# KkYszkXUyGsbTqEVh 2019/06/21 22:28 http://daewoo.xn--mgbeyn7dkngwaoee.com/

I think other website proprietors should take this web site as an model, very clean and magnificent user friendly style and design, as well as the content. You are an expert in this topic!

# wFnNdgGAaj 2019/06/22 0:28 https://guerrillainsights.com/

Perfectly indited subject matter, thankyou for entropy.

# GsUTQicCJpHq 2019/06/22 4:01 https://singerwindow62.home.blog/2019/06/21/car-wa

I similar to Your Write-up about Khmer Karaoke Celebrities

# GBKdiEIqPSdeCbC 2019/06/24 2:19 https://skylineuniversity.ac.ae/elibrary/external-

This particular blog is without a doubt awesome additionally informative. I have picked up a lot of helpful tips out of this source. I ad love to come back again soon. Thanks a lot!

# YfLiLzzPjDHo 2019/06/24 4:36 http://seniorsreversemort1le.innoarticles.com/arra

I reckon something really special in this website.

# lhLDIwpkpVFPjDY 2019/06/24 16:38 http://www.website-newsreaderweb.com/

Thanks for the blog post.Really looking forward to read more. Much obliged.

# INcIdwlGwgayWAipp 2019/06/25 4:48 https://www.healthy-bodies.org/finding-the-perfect

Many thanks for sharing this very good article. Very inspiring! (as always, btw)

# khmBpDYwYpFyqlzH 2019/06/25 22:48 https://topbestbrand.com/สล&am

Valuable Website I have been checking out some of your stories and i can state pretty good stuff. I will surely bookmark your website.

# KllWaxUZejBIBct 2019/06/26 1:19 https://topbestbrand.com/อา&am

Im obliged for the blog.Thanks Again. Really Great.

# OhbLxDBmmCJHFmO 2019/06/26 3:50 https://topbestbrand.com/บร&am

Yeah bookmaking this wasn at a speculative decision great post!.

# gkeEmDCWmgYOa 2019/06/26 6:18 https://www.cbd-five.com/

There is definately a lot to learn about this subject. I love all of the points you have made.

# hlaoDSikjIHWYymGo 2019/06/27 16:31 http://speedtest.website/

I truly appreciate this blog article. Keep writing.

# IfalkmXLhorFPRwATNY 2019/06/27 20:32 https://www.evernote.com/shard/s528/sh/7ae026c3-c5

What as up, just wanted to mention, I liked this blog post. It was funny. Keep on posting!

# RLGddVGfjpJWKGFJTO 2019/06/28 19:09 https://www.jaffainc.com/Whatsnext.htm

Right here is the perfect webpage for everyone who would like to understand this topic.

# gJFwsUUiUuqbrFq 2019/06/29 0:43 http://smithsonianmag.online/story.php?id=9438

This keeps you in their thoughts, and in their buddy as feeds after they work together with you.

# ehUAsbEkWdLFpPYEOA 2019/06/29 9:32 https://emergencyrestorationteam.com/

mobile phones and WIFI and most electronic appliances emit harmful microwave RADIATION (think Xrays rays)

# I feel that is one of the so much vital information for me. And i'm glad studying your article. But should commentary on some common things, The website taste is perfect, the articles is actually great : D. Just right job, cheers 2019/07/02 13:18 I feel that is one of the so much vital informatio

I feel that is one of the so much vital information for me.

And i'm glad studying your article. But should commentary
on some common things, The website taste is perfect, the articles is actually great :
D. Just right job, cheers

# If you are going for most excellent contents like myself, simply go to see this site daily because it offers feature contents, thanks 2019/07/09 17:14 If you are going for most excellent contents like

If you are going for most excellent contents like myself, simply go
to see this site daily because it offers feature contents,
thanks

# I got this website from my pal who told me about this site and at the moment this time I am visiting this web site and reading very informative content here. 2019/08/24 0:21 I got this website from my pal who told me about t

I got this website from my pal who told me about this site and at the moment this time
I am visiting this web site and reading very informative content here.

# I got this website from my pal who told me about this site and at the moment this time I am visiting this web site and reading very informative content here. 2019/08/24 0:22 I got this website from my pal who told me about t

I got this website from my pal who told me about this site and at the moment this time
I am visiting this web site and reading very informative content here.

# I got this website from my pal who told me about this site and at the moment this time I am visiting this web site and reading very informative content here. 2019/08/24 0:23 I got this website from my pal who told me about t

I got this website from my pal who told me about this site and at the moment this time
I am visiting this web site and reading very informative content here.

# I got this website from my pal who told me about this site and at the moment this time I am visiting this web site and reading very informative content here. 2019/08/24 0:24 I got this website from my pal who told me about t

I got this website from my pal who told me about this site and at the moment this time
I am visiting this web site and reading very informative content here.

# I've been exploring for a little bit for any high-quality articles or blog posts in this sort of space . Exploring in Yahoo I at last stumbled upon this web site. Reading this information So i'm glad to convey that I've an incredibly good uncanny feeling 2019/09/05 4:59 I've been exploring for a little bit for any high-

I've been exploring for a little bit for any high-quality articles or blog posts in this sort
of space . Exploring in Yahoo I at last stumbled upon this web site.
Reading this information So i'm glad to convey that I've
an incredibly good uncanny feeling I discovered exactly what I needed.
I so much for sure will make sure to don?t
put out of your mind this website and provides it a
look regularly.

# I've been exploring for a little bit for any high-quality articles or blog posts in this sort of space . Exploring in Yahoo I at last stumbled upon this web site. Reading this information So i'm glad to convey that I've an incredibly good uncanny feeling 2019/09/05 5:00 I've been exploring for a little bit for any high-

I've been exploring for a little bit for any high-quality articles or blog posts in this sort
of space . Exploring in Yahoo I at last stumbled upon this web site.
Reading this information So i'm glad to convey that I've
an incredibly good uncanny feeling I discovered exactly what I needed.
I so much for sure will make sure to don?t
put out of your mind this website and provides it a
look regularly.

# I've been exploring for a little bit for any high-quality articles or blog posts in this sort of space . Exploring in Yahoo I at last stumbled upon this web site. Reading this information So i'm glad to convey that I've an incredibly good uncanny feeling 2019/09/05 5:01 I've been exploring for a little bit for any high-

I've been exploring for a little bit for any high-quality articles or blog posts in this sort
of space . Exploring in Yahoo I at last stumbled upon this web site.
Reading this information So i'm glad to convey that I've
an incredibly good uncanny feeling I discovered exactly what I needed.
I so much for sure will make sure to don?t
put out of your mind this website and provides it a
look regularly.

# I've been exploring for a little bit for any high-quality articles or blog posts in this sort of space . Exploring in Yahoo I at last stumbled upon this web site. Reading this information So i'm glad to convey that I've an incredibly good uncanny feeling 2019/09/05 5:02 I've been exploring for a little bit for any high-

I've been exploring for a little bit for any high-quality articles or blog posts in this sort
of space . Exploring in Yahoo I at last stumbled upon this web site.
Reading this information So i'm glad to convey that I've
an incredibly good uncanny feeling I discovered exactly what I needed.
I so much for sure will make sure to don?t
put out of your mind this website and provides it a
look regularly.

# ZlRifRXTWwuyqT 2021/07/03 3:15 https://amzn.to/365xyVY

If you are free to watch funny videos online then I suggest you to pay a visit this site, it includes really so comic not only movies but also extra information.

# erectile problems 2021/07/07 8:04 why is hydroxychloroquine

hydroxychloroquine 200mg tablets https://plaquenilx.com/# hydroxychloroquine high

# It is not my first time to go to see this website, i am browsing this website dailly and get fastidious information from here everyday. 2021/08/24 0:19 It is not my first time to go to see this website,

It is not my first time to go to see this website, i am browsing this website
dailly and get fastidious information from here everyday.

# It is not my first time to go to see this website, i am browsing this website dailly and get fastidious information from here everyday. 2021/08/24 0:20 It is not my first time to go to see this website,

It is not my first time to go to see this website, i am browsing this website
dailly and get fastidious information from here everyday.

# It is not my first time to go to see this website, i am browsing this website dailly and get fastidious information from here everyday. 2021/08/24 0:21 It is not my first time to go to see this website,

It is not my first time to go to see this website, i am browsing this website
dailly and get fastidious information from here everyday.

# It is not my first time to go to see this website, i am browsing this website dailly and get fastidious information from here everyday. 2021/08/24 0:22 It is not my first time to go to see this website,

It is not my first time to go to see this website, i am browsing this website
dailly and get fastidious information from here everyday.

# I'm not positive where you're getting your information, however great topic. I must spend some time learning much more or understanding more. Thanks for fantastic info I used to be looking for this information for my mission. 2021/08/24 10:01 I'm not positive where you're getting your informa

I'm not positive where you're getting your information, however great topic.
I must spend some time learning much more or understanding more.
Thanks for fantastic info I used to be looking for this
information for my mission.

# I'm not positive where you're getting your information, however great topic. I must spend some time learning much more or understanding more. Thanks for fantastic info I used to be looking for this information for my mission. 2021/08/24 10:02 I'm not positive where you're getting your informa

I'm not positive where you're getting your information, however great topic.
I must spend some time learning much more or understanding more.
Thanks for fantastic info I used to be looking for this
information for my mission.

# I'm not positive where you're getting your information, however great topic. I must spend some time learning much more or understanding more. Thanks for fantastic info I used to be looking for this information for my mission. 2021/08/24 10:03 I'm not positive where you're getting your informa

I'm not positive where you're getting your information, however great topic.
I must spend some time learning much more or understanding more.
Thanks for fantastic info I used to be looking for this
information for my mission.

# I'm not positive where you're getting your information, however great topic. I must spend some time learning much more or understanding more. Thanks for fantastic info I used to be looking for this information for my mission. 2021/08/24 10:04 I'm not positive where you're getting your informa

I'm not positive where you're getting your information, however great topic.
I must spend some time learning much more or understanding more.
Thanks for fantastic info I used to be looking for this
information for my mission.

# Hi colleagues, its fantastic article on the topic of teachingand entirely defined, keep it up all the time. 2021/08/28 20:56 Hi colleagues, its fantastic article on the topic

Hi colleagues, its fantastic article on the topic of teachingand entirely defined, keep it up all the time.

# That is really fascinating, You're a very skilled blogger. I've joined your feed and stay up for in search of more of your magnificent post. Also, I have shared your web site in my social networks 2021/09/01 7:01 That is really fascinating, You're a very skilled

That is really fascinating, You're a very skilled blogger.
I've joined your feed and stay up for in search of more of your magnificent post.
Also, I have shared your web site in my social networks

# That is really fascinating, You're a very skilled blogger. I've joined your feed and stay up for in search of more of your magnificent post. Also, I have shared your web site in my social networks 2021/09/01 7:02 That is really fascinating, You're a very skilled

That is really fascinating, You're a very skilled blogger.
I've joined your feed and stay up for in search of more of your magnificent post.
Also, I have shared your web site in my social networks

# That is really fascinating, You're a very skilled blogger. I've joined your feed and stay up for in search of more of your magnificent post. Also, I have shared your web site in my social networks 2021/09/01 7:03 That is really fascinating, You're a very skilled

That is really fascinating, You're a very skilled blogger.
I've joined your feed and stay up for in search of more of your magnificent post.
Also, I have shared your web site in my social networks

# That is really fascinating, You're a very skilled blogger. I've joined your feed and stay up for in search of more of your magnificent post. Also, I have shared your web site in my social networks 2021/09/01 7:04 That is really fascinating, You're a very skilled

That is really fascinating, You're a very skilled blogger.
I've joined your feed and stay up for in search of more of your magnificent post.
Also, I have shared your web site in my social networks

# Genuinely when someone doesn't know then its up to other viewers that they will help, so here it occurs. 2021/09/02 10:18 Genuinely when someone doesn't know then its up to

Genuinely when someone doesn't know then its up to other viewers that they will
help, so here it occurs.

# Genuinely when someone doesn't know then its up to other viewers that they will help, so here it occurs. 2021/09/02 10:19 Genuinely when someone doesn't know then its up to

Genuinely when someone doesn't know then its up to other viewers that they will
help, so here it occurs.

# Genuinely when someone doesn't know then its up to other viewers that they will help, so here it occurs. 2021/09/02 10:20 Genuinely when someone doesn't know then its up to

Genuinely when someone doesn't know then its up to other viewers that they will
help, so here it occurs.

# Genuinely when someone doesn't know then its up to other viewers that they will help, so here it occurs. 2021/09/02 10:21 Genuinely when someone doesn't know then its up to

Genuinely when someone doesn't know then its up to other viewers that they will
help, so here it occurs.

# Wow, this post is pleasant, my younger sister is analyzing these things, so I am going to convey her. 2021/09/04 23:00 Wow, this post is pleasant, my younger sister is

Wow, this post is pleasant, my younger sister is analyzing these things, so
I am going to convey her.

# Wow, this post is pleasant, my younger sister is analyzing these things, so I am going to convey her. 2021/09/04 23:01 Wow, this post is pleasant, my younger sister is

Wow, this post is pleasant, my younger sister is analyzing these things, so
I am going to convey her.

# Wow, this post is pleasant, my younger sister is analyzing these things, so I am going to convey her. 2021/09/04 23:02 Wow, this post is pleasant, my younger sister is

Wow, this post is pleasant, my younger sister is analyzing these things, so
I am going to convey her.

# Wow, this post is pleasant, my younger sister is analyzing these things, so I am going to convey her. 2021/09/04 23:03 Wow, this post is pleasant, my younger sister is

Wow, this post is pleasant, my younger sister is analyzing these things, so
I am going to convey her.

# Hello, constantly i used to check webpage posts here early in the break of day, as i love to find out more and more. 2021/09/06 9:18 Hello, constantly i used to check webpage posts he

Hello, constantly i used to check webpage posts here early
in the break of day, as i love to find out more and more.

# Hello, constantly i used to check webpage posts here early in the break of day, as i love to find out more and more. 2021/09/06 9:19 Hello, constantly i used to check webpage posts he

Hello, constantly i used to check webpage posts here early
in the break of day, as i love to find out more and more.

# Hello, constantly i used to check webpage posts here early in the break of day, as i love to find out more and more. 2021/09/06 9:20 Hello, constantly i used to check webpage posts he

Hello, constantly i used to check webpage posts here early
in the break of day, as i love to find out more and more.

# Hello, constantly i used to check webpage posts here early in the break of day, as i love to find out more and more. 2021/09/06 9:21 Hello, constantly i used to check webpage posts he

Hello, constantly i used to check webpage posts here early
in the break of day, as i love to find out more and more.

# Hmm is anyone else experiencing problems with the pictures on this blog loading? I'm trying to find out if its a problem on my end or if it's the blog. Any suggestions would be greatly appreciated. 2021/12/06 6:16 Hmm is anyone else experiencing problems with the

Hmm is anyone else experiencing problems with the pictures on this blog loading?
I'm trying to find out if its a problem on my end or if it's the blog.
Any suggestions would be greatly appreciated.

# Hmm is anyone else experiencing problems with the pictures on this blog loading? I'm trying to find out if its a problem on my end or if it's the blog. Any suggestions would be greatly appreciated. 2021/12/06 6:17 Hmm is anyone else experiencing problems with the

Hmm is anyone else experiencing problems with the pictures on this blog loading?
I'm trying to find out if its a problem on my end or if it's the blog.
Any suggestions would be greatly appreciated.

# Hmm is anyone else experiencing problems with the pictures on this blog loading? I'm trying to find out if its a problem on my end or if it's the blog. Any suggestions would be greatly appreciated. 2021/12/06 6:17 Hmm is anyone else experiencing problems with the

Hmm is anyone else experiencing problems with the pictures on this blog loading?
I'm trying to find out if its a problem on my end or if it's the blog.
Any suggestions would be greatly appreciated.

# Hmm is anyone else experiencing problems with the pictures on this blog loading? I'm trying to find out if its a problem on my end or if it's the blog. Any suggestions would be greatly appreciated. 2021/12/06 6:18 Hmm is anyone else experiencing problems with the

Hmm is anyone else experiencing problems with the pictures on this blog loading?
I'm trying to find out if its a problem on my end or if it's the blog.
Any suggestions would be greatly appreciated.

# Howdy this is somewhat of off topic but I was wondering if blogs use WYSIWYG editors or if you have to manually code with HTML. I'm starting a blog soon but have no coding expertise so I wanted to get guidance from someone with experience. Any help wo 2022/03/24 8:16 Howdy this is somewhat of off topic but I was wond

Howdy this is somewhat of off topic but I was wondering if blogs
use WYSIWYG editors or if you have to manually code
with HTML. I'm starting a blog soon but have no coding expertise
so I wanted to get guidance from someone with experience.
Any help would be enormously appreciated!

# Howdy this is somewhat of off topic but I was wondering if blogs use WYSIWYG editors or if you have to manually code with HTML. I'm starting a blog soon but have no coding expertise so I wanted to get guidance from someone with experience. Any help wo 2022/03/24 8:17 Howdy this is somewhat of off topic but I was wond

Howdy this is somewhat of off topic but I was wondering if blogs
use WYSIWYG editors or if you have to manually code
with HTML. I'm starting a blog soon but have no coding expertise
so I wanted to get guidance from someone with experience.
Any help would be enormously appreciated!

# Howdy this is somewhat of off topic but I was wondering if blogs use WYSIWYG editors or if you have to manually code with HTML. I'm starting a blog soon but have no coding expertise so I wanted to get guidance from someone with experience. Any help wo 2022/03/24 8:18 Howdy this is somewhat of off topic but I was wond

Howdy this is somewhat of off topic but I was wondering if blogs
use WYSIWYG editors or if you have to manually code
with HTML. I'm starting a blog soon but have no coding expertise
so I wanted to get guidance from someone with experience.
Any help would be enormously appreciated!

# Howdy this is somewhat of off topic but I was wondering if blogs use WYSIWYG editors or if you have to manually code with HTML. I'm starting a blog soon but have no coding expertise so I wanted to get guidance from someone with experience. Any help wo 2022/03/24 8:19 Howdy this is somewhat of off topic but I was wond

Howdy this is somewhat of off topic but I was wondering if blogs
use WYSIWYG editors or if you have to manually code
with HTML. I'm starting a blog soon but have no coding expertise
so I wanted to get guidance from someone with experience.
Any help would be enormously appreciated!

# I read this paragraph completely on the topic of the comparison of most recent and previous technologies, it's remarkable article. 2024/04/04 11:14 I read this paragraph completely on the topic of t

I read this paragraph completely on the topic of the comparison of most recent and previous technologies, it's remarkable article.

# I read this paragraph completely on the topic of the comparison of most recent and previous technologies, it's remarkable article. 2024/04/04 11:14 I read this paragraph completely on the topic of t

I read this paragraph completely on the topic of the comparison of most recent and previous technologies, it's remarkable article.

# I do not even understand how I finished up right here, but I believed this put up was once great. I don't recognize who you're but definitely you are going to a well-known blogger for those who aren't already. Cheers! 2024/04/05 13:26 I do not even understand how I finished up right h

I do not even understand how I finished up right here, but I believed this put up was once great.
I don't recognize who you're but definitely you are going to a well-known blogger for those who aren't already.
Cheers!

# I do not even understand how I finished up right here, but I believed this put up was once great. I don't recognize who you're but definitely you are going to a well-known blogger for those who aren't already. Cheers! 2024/04/05 13:27 I do not even understand how I finished up right h

I do not even understand how I finished up right here, but I believed this put up was once great.
I don't recognize who you're but definitely you are going to a well-known blogger for those who aren't already.
Cheers!

# I do not even understand how I finished up right here, but I believed this put up was once great. I don't recognize who you're but definitely you are going to a well-known blogger for those who aren't already. Cheers! 2024/04/05 13:28 I do not even understand how I finished up right h

I do not even understand how I finished up right here, but I believed this put up was once great.
I don't recognize who you're but definitely you are going to a well-known blogger for those who aren't already.
Cheers!

# I do not even understand how I finished up right here, but I believed this put up was once great. I don't recognize who you're but definitely you are going to a well-known blogger for those who aren't already. Cheers! 2024/04/05 13:29 I do not even understand how I finished up right h

I do not even understand how I finished up right here, but I believed this put up was once great.
I don't recognize who you're but definitely you are going to a well-known blogger for those who aren't already.
Cheers!

# Great goods from you, man. I've understand your stuff previous to and you are just too magnificent. I really like what you've acquired here, really like what you are stating and the way in which you say it. You make it entertaining and you still care fo 2024/04/12 0:10 Great goods from you, man. I've understand your st

Great goods from you, man. I've understand your stuff previous to and you are just too magnificent.
I really like what you've acquired here, really like what you are stating and the way in which you say it.
You make it entertaining and you still care for to keep it smart.
I can't wait to read much more from you. This is really a
wonderful website.

# Great goods from you, man. I've understand your stuff previous to and you are just too magnificent. I really like what you've acquired here, really like what you are stating and the way in which you say it. You make it entertaining and you still care fo 2024/04/12 0:11 Great goods from you, man. I've understand your st

Great goods from you, man. I've understand your stuff previous to and you are just too magnificent.
I really like what you've acquired here, really like what you are stating and the way in which you say it.
You make it entertaining and you still care for to keep it smart.
I can't wait to read much more from you. This is really a
wonderful website.

# Great goods from you, man. I've understand your stuff previous to and you are just too magnificent. I really like what you've acquired here, really like what you are stating and the way in which you say it. You make it entertaining and you still care fo 2024/04/12 0:12 Great goods from you, man. I've understand your st

Great goods from you, man. I've understand your stuff previous to and you are just too magnificent.
I really like what you've acquired here, really like what you are stating and the way in which you say it.
You make it entertaining and you still care for to keep it smart.
I can't wait to read much more from you. This is really a
wonderful website.

# Great goods from you, man. I've understand your stuff previous to and you are just too magnificent. I really like what you've acquired here, really like what you are stating and the way in which you say it. You make it entertaining and you still care fo 2024/04/12 0:13 Great goods from you, man. I've understand your st

Great goods from you, man. I've understand your stuff previous to and you are just too magnificent.
I really like what you've acquired here, really like what you are stating and the way in which you say it.
You make it entertaining and you still care for to keep it smart.
I can't wait to read much more from you. This is really a
wonderful website.

# Quality articles is the main to interest the users to pay a quick visit the website, that's what this web page is providing. 2024/04/26 6:10 Quality articles is the main to interest the users

Quality articles is the main to interest the users to pay a quick visit the website, that's what this web page is providing.

# Write more, thats all I have to say. Literally, it seems as though you relied on the video to make your point. You clearly know what youre talking about, why waste your intelligence on just posting videos to your weblog when you could be giving us somet 2024/05/13 5:54 Write more, thats all I have to say. Literally, it

Write more, thats all I have to say. Literally, it seems as though
you relied on the video to make your point. You clearly know what
youre talking about, why waste your intelligence on just posting
videos to your weblog when you could be giving us something enlightening
to read?

# Unquestionably believe that which you said. Your favorite justification appeared to be on the internet the simplest thing to be aware of. I say to you, I definitely get irked while people think about worries that they just don't know about. You managed t 2024/05/16 8:39 Unquestionably believe that which you said. Your

Unquestionably believe that which you said.
Your favorite justification appeared to be on the internet the simplest thing to be aware of.
I say to you, I definitely get irked while people think about worries that they just don't know about.
You managed to hit the nail upon the top and also defined out the whole thing without having side-effects , people
could take a signal. Will likely be back to get more. Thanks

タイトル
名前
Url
コメント