Forum Replies Created

Viewing 3 posts - 241 through 244 (of 244 total)

  • RE: DTS with Access 2000

    First you should look at your data types in Access. Access can store some non-standard dates and times. For example Access can store a time as 4:55:02 AM SQL Server...

  • 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 3 posts - 241 through 244 (of 244 total)