Viewing 2 posts - 1 through 2 (of 2 total)
Use computed columns.
Example :
CREATE TABLE BaseTable
(PrimaryKey int PRIMARY KEY IDENTITY(1,1),
Color nvarchar(10) NOT...
April 26, 2011 at 11:51 am
#1316081
Its a know fact that in general we use Temp-Tables for large Data and Table variables for small data.
You can check the following link for your doubts. So that you...
March 30, 2011 at 4:26 pm
#1305740