Forum Replies Created

Viewing 2 posts - 241 through 242 (of 242 total)

  • RE: new database server for every application

    I have the same issue with some web portal products. I just do it and don't tell the vendor. It is dishonest, but anytime I need tech support from those...

  • RE: Data Dictionary from within SQL Server 2000

    Great idea. I usually find it better to use the information_schema views so I altered your stored procedure as follows

    select

    o.[table_name] as 'table_name',

    c.ordinal_position as 'column_order',

    c.[column_name] as 'column_name',

    e.value as 'column_description',

    C.DATA_TYPE as...

Viewing 2 posts - 241 through 242 (of 242 total)