クラスター化インデックス
- クラスター化インデックスは、テーブルまたはビュー内のデータ行をそのキー値に基づいて並べ替え、格納します。 クラスター化インデックスは、インデックス定義に含まれる列です。 データ行自体は 1 つの順序でしか並べ替えられないので、1 つのテーブルに設定できるクラスター化インデックスは 1 つだけです。
- テーブル内のデータ行が並べ替えられた順に格納されるのは、テーブルにクラスター化インデックスが含まれているときだけです。 テーブルにクラスター化インデックスが含まれている場合、そのテーブルをクラスター化テーブルと呼びます。 クラスター化インデックスが含まれないテーブルのデータ行は、ヒープと呼ばれる順序付けられていない構造に格納されます。
非クラスター化インデックス
- 非クラスター化インデックスは、データ行とは独立した構造になっています。 非クラスター化インデックスには、非クラスター化インデックスのキー値が含まれており、各キー値のエントリにはキー値が含まれているデータ行へのポインターが含まれています。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Ignore Visual Studio temporary files, build results, and | |
## files generated by popular Visual Studio add-ons. | |
## | |
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore | |
# User-specific files | |
*.rsuser | |
*.suo | |
*.user | |
*.userosscache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
typedef struct _SListBuffer { | |
struct _SRingBuffer * next; | |
void * pData; | |
size_t DataSize; | |
long int Status; | |
}SListBuffer; | |
typedef struct _SRingBuffer { | |
SListBuffer * ListHead; | |
SListBuffer * ListBottom; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*.suo | |
/bin | |
/obj |
http://www.wtfpl.net/faq/ の翻訳(非公式)です。 以下の文章には何も保証がありません。
ステップ1. WTFPLの全文をコピー&ペーストもしくはダウンロードし、あなたの成果物と共に配布します。一般的にライセンスファイルの名前は COPYING です。成果物が複数のライセンスを採用している場合は、COPYING.WTFPL というファイル名が一般的です。
ステップ2. あなたの著作権文章に次の文言を追加してください。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
my %table = ( | |
'1' =>'.@-_/:~1' | |
,'2' =>'abcABC2' | |
,'3' =>'defDEF3' | |
,'4' =>'ghiGHI4' | |
,'5' =>'jklJKL5' | |
,'6' =>'mnoMNO6' | |
,'7' =>'pqrsPQRS7' | |
,'8' =>'tuvTUV8' | |
,'9' =>'wxyzWXYZ9' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ja: | |
mail_reminder_all_day1: "日" | |
mail_reminder_all_day2: "日" | |
mail_reminder_all_day5: "日" | |
mail_subject_reminder_all1: "%{count} チケットは %{days} %{day}後が期日です" | |
mail_body_reminder_auth1: "あなたの作成した %{count} チケットは %{days} %{day}後が期日です:" | |
mail_body_reminder_assigned1: "あなたが担当している %{count} チケットは %{days} %{day}後が期日です:" | |
mail_body_reminder_watched1: "あなたがウォッチしている %{count} チケットは %{days} %{day}後が期日です:" | |
mail_body_reminder_custom_user1: "あなたが関係している%{count} チケットは %{days} %{day}後が期日です:" | |
mail_subject_reminder_all2: "%{count} チケットは %{days} %{day}後が期日です" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MOUNTPOINT=`sudo zfs get -o value mountpoint storage/share | tail -1` | |
SNAPPOINT=.zfs/snapshot/0weeks_later | |
SNAPDATE=`sudo zfs get -o value creation storage/share@0weeks_later | tail -1` | |
DEFAULT_TZ=`date +%Z` | |
CALCGMT=`date -d "$SNAPDATE $DEFAULT_TZ" -u "+%Y.%m.%d-%H.%M.%S"` | |
NAMEDATE=@GMT+$CALCGMT | |
echo $SNAPDATE | |
echo $NAMEDATE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# zfs snapshot auto-rotation | |
# | |
# usage: zfs_snapshot.sh <mountpoint> <snapshot name> <number of keeping snapshots> [recursive] | |
# | |
# recursive option: Recursively create snapshot (zfs snapshot -r) | |
# | |
# for crontab | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/obj | |
/bin | |
*.suo | |
*.user |
NewerOlder