How many tables a dataverse can have in power platform?

175 views Asked by At

How many tables a dataverse can have in power platform? How many rows and columns a table can have in dataverse?

I searched in Google. It provided many answers and I got confused. Please help me to find out the right answers

2

There are 2 answers

1
Justinas On

Maximum number of tables that can be created in dataverse


There is no specified limit on the number of tables for Dataverse. You can refer to the SQL Server limits since relational data is stored there.

SQL doesn't impose a limit on number of tables, but instead the number of total database objects (~2 Billion).

There is a limit of 1024 columns per table that you should be aware of, but otherwise you will exceed your Dataverse storage capacity long before you hit any metadata limits.

2
Henk van Boeijen On

For Dataverse there is actually a limit to the number of tables that can be created. Navigate to https://admin.powerplatform.microsoft.com/environments.

Then:

  • Select an environment;
  • Click Settings on the command bar;
  • Choose Resources and All legacy settings;
  • On the legacy settings page navigate to Administration;
  • From the menu select feature Resources In Use.

In my case I can create 3,000 entities (tables), but this may vary depending on your plan.

See also Limitations on creating metadata items - MS Learn.

For the maximum number of columns per table SQL Server limitations apply. From the article referenced above: "Within each table there's an upper limit on the number of columns you can create. This limit is based on the technical limitations on the amount of data that can be stored in a row of a database table."

Concerning the maximum size of the database: I remember a limit of 4TB has been mentioned in documentation, but I know special arrangements can be made when really needed. In reality databases that are multiple terabytes in size are not easy to handle in the cloud.