Viewing 3 posts - 1 through 3 (of 3 total)
I use the following easy-to-memorize SQL to get column lists:
select ', ' + name from syscolumns where id = object_id( 'MyTable' ) order by colorder
or
select ', ' + column_name from...
April 29, 2008 at 10:52 pm
#808779
There are a few things to consider...
tempdb could be growing to that size because it needs to. Possibly, tables are being created, lots of data are inserted, and the tables are...
October 6, 2005 at 2:50 am
#595367
I have several databases on EMC SANs. My only emphasis is to be sure to physically design your database files as you would on any other RAID or set...
November 28, 2002 at 2:37 am
#442603