1
活動/聚會區 / 回覆: 又到了塞飯時間 - 4/27(三), 19:30 , kiki, 換時間啦!!!!
« 於: 2011-04-25 16:12 »
理論上當天人在台中, 如果趕的回來的話.....
這裡允許您檢視這個會員的所有文章。請注意, 您只能看見您有權限閱讀的文章。
在虛擬環境中設置虛擬環境的意義是?
除了雙重耗損資源和效能外,看不出其他好處?
When using MyISAM table, the limit will be determined by your operating system, ie. the number of files you can have in one directory.
Using InnoDB tables removes that limitation by allowing multiple tables within a single datafile (tablespace).
The maximum tablespace size is 4 billion database pages. By default, a 'page' is 16K, but it is possible to recompile with 64K pages. This will allow a single tablespace size of ... 'BIG'.
A table will obviously take up at least one database page, meaning you can theoretically have a maximum of 4 billion tables per tablespace.
The number of tablespaces will again be limited by your operating system. Using NTFS on NT, the limit is 4,294,967,295. I imagine UNIX will be limited by the number of inodes. However, before reaching the physical limit of files you wil probably run into an issue with the maximum number of 'open' files allowed.
The first limit you hit will undoubtedly be that of your wallet while buying disk drives.