Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)

  • RE: nullability

    Use computed columns.

    Example :

    CREATE TABLE BaseTable

    (PrimaryKey int PRIMARY KEY IDENTITY(1,1),

    Color nvarchar(10) NOT...

  • RE: temp table vs. table variable

    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...

Viewing 2 posts - 1 through 2 (of 2 total)