HOW To USE:
1. If you want all the user tables in the database with largest db size then:
EXEC sp_LargestTables [No Need to pass parameters]
2. If you want only 3 tables in the database with largest db size then:
EXEC sp_LargestTables 3
3. If you want only 20 tables in the database with largest db size including system tables then:
EXEC sp_LargestTables 20,1