[SQLSERVER] List all tables in database Connect to server > osql -S SERVER/INSTANCE -E (-E allow to connect without password) Select DATABASE > use DATABASE List tables in database > SELECT * FROM sysobjects WHERE xtype = 'u'