Click to See Complete Forum and Search --> : table


sky_00
June 29th, 2005, 05:25 PM
Having sql 2000 , enterprise manager, how to drop a table from command line?.

hspc
June 30th, 2005, 03:14 AM
you can connect using osql utility:
for example to connect to localhost using trusted connection (windows authentication)
osql -S localhost -E
then write the command :
Drop table TABLENAME
Go