In sql server , How many data tables can creates in Dataset?
Is there any limit to define data tables in dataset.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Your memory. Apart from that it’s only limited by Int32. So
2^32is the maximum number ofDataTablesyou can hold inside aDataSet(2,147,483,648 tables, happy coding).By the way, a
DataTablecan contain 16,777,216 rows, but that’s not what you’ve asked.