|
dev
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
ASP script to display database structure?Does anyone have an ASP script that I can use to dump the structure of an MS
SQL 2000 database? The firewall here won't allow any remote connections through and the DB host does not have any web administrations? I just need the table names, field names, and field data types. Thx! Why not use something like this?
SELECT TABLE_NAME, COLUMN_NAME, DATA_TYPE, CHARACTER_MAXIMUM_LENGTH, NUMERIC_PRECISION, NUMERIC_SCALE FROM information_schema.columns -- Show quoteKeith Kratochvil "Noozer" <dont.spam@me.here> wrote in message news:%23uAs46ScGHA.3856@TK2MSFTNGP03.phx.gbl... > Does anyone have an ASP script that I can use to dump the structure of an > MS SQL 2000 database? > > The firewall here won't allow any remote connections through and the DB > host does not have any web administrations? > > I just need the table names, field names, and field data types. > > Thx! > |
|||||||||||||||||||||||