Viewing 3 posts - 241 through 244 (of 244 total)
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...
December 2, 2002 at 7:49 am
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...
October 3, 2002 at 8:45 am
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...
August 14, 2002 at 5:01 pm
Viewing 3 posts - 241 through 244 (of 244 total)