Reputation: 715
I have a free mobile service on Azure and there are 3 tables. Can I somehow get number of rows in each table (using Azure portal or code)?
Upvotes: 0
Views: 46
Reputation: 2045
If you go to https://manage.windowsazure.com and open your database there
From there you can run queries against your database such as
select count(1) from [name of your table]
Upvotes: 1