Basic Administration

  • I know that in Oracle/SQL*Plus, if I type 'desc tablename', it will give

    me information on the table. This command doesn't seem to work in SQL

    Server. Anyone know if there's an equivalent?

  • Yup; I believe this is ANSI92 compliant.

    SELECT *

    FROM INFORMATION_SCHEMA.COLUMNS

    WHERE TABLE_NAME = 'sometable'

    -- Mitch


    --Mitch

  • Thanks. I appreciate the response.

  • sp_help tablename  gives information on tables.

  • very helpful, thank you very much.

Viewing 5 posts - 1 through 4 (of 4 total)

You must be logged in to reply to this topic. Login to reply