Viewing 6 posts - 61 through 66 (of 66 total)
In your case:
If there is only ONE .ldf on the log drive, I'll put tempdb log AND data file on the data drive.
If there is more than one .ldf on...
October 26, 2007 at 1:22 pm
watch out that the SUM doesn't overflow the field definition.
take this simple example:
field defined as decimal(3, 2)
with values:
1.01
6.00
4.00
Summing these would produce 11.01, thus an overflow.
So u may need to cast...
October 26, 2007 at 1:14 pm
where isnumeric(fieldname) = 1
and convert(int, fieldname) < 1
October 26, 2007 at 9:51 am
database_id <= 4 is system db.
databse_id > 4 is user db
or... if name is
Master
Msdb
Tempdb
Model
Then its system db
October 26, 2007 at 1:48 am
SQL 2005 SE can use as much memory as OS supports.
for more than 4Gb I'll use /3gb and enable AWE, Lock pages in memory
on your 2000 SE instance don't do...
October 25, 2007 at 8:41 pm
James L Kerr (10/25/2007)
October 25, 2007 at 8:30 pm
Viewing 6 posts - 61 through 66 (of 66 total)