I’m trying to use SQL Server Management Studio to edit database tables. But I can’t seem to access the databases themselves through “Object explorer” (SQL Server Management Studio 2012 hangs).
How can I get the Design mode of a table without going through that?
Use the command line:
For instance, if your username is bobby and your password is foo, use:
Then select your database with
use whatever_your_db_name_is# Note you do literally typeusethen describe [table_name]
To list all tables:
sp_helpworks and you can also useselect * from SYSOBJECTS where TYPE = 'U' order by NAMEwhich you can obviously change to meet your needs.