Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
SQL Serverでは、データセットにいくつのデータテーブルを作成できますか?
データセットにデータテーブルを定義するための制限はありますか?
あなたの記憶。それを除けば、Int32によってのみ制限されます。したがって、 (2,147,483,648テーブル、ハッピーコーディング)内に保持できる2^32最大数です。DataTablesDataSet
2^32
DataTables
DataSet
ちなみに、aには16,777,216DataTable行を含めることができますが、それはあなたが求めているものではありません。
DataTable
Tables.Countプロパティは整数値を返すため、最大サイズはInt32によって制限されます。2^32です。
例:DataSet ds = new DataSet(); int count =ds.Tables.Count;//データセット内のテーブルの総数を示します。
また、DataTableが格納できる行の最大数は16,777,216です。