While variations on select (xyz) from table all work, they all suffer from searching/scanning data and the overheads that incurs. The best mechanism I have found is;
EXEC sp_spaceused N'<schema>.<table name>’;
While variations on select (xyz) from table all work, they all suffer from searching/scanning data and the overheads that incurs. The best mechanism I have found is;
EXEC sp_spaceused N'<schema>.<table name>’;