Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2005 Forums
 SQL Server Administration (2005)
 BI-SQL

Author  Topic 

inbs
Aged Yak Warrior

860 Posts

Posted - 2010-03-21 : 09:54:17
we have SQL SERVER for BI System.
today i invited BI and DataBase counselor ,he recommende us to :

put in
DISK1
1. OS+tempdb on 146 G*2 RAID 1+0

DISK2
2.DataBase+Log ON 750 G RAID 5
3.BackUp ON 750 G RAID 5

my question, i read that the recommendation is to seperate DB and log to difffrent disk,in my case why i need to put them together?
(all my dbs is 250 G and log is 8 G )

ahmad.osama
Posting Yak Master

183 Posts

Posted - 2010-03-23 : 06:24:48
quote:
Originally posted by inbs

we have SQL SERVER for BI System.
today i invited BI and DataBase counselor ,he recommende us to :

put in
DISK1
1. OS+tempdb on 146 G*2 RAID 1+0

DISK2
2.DataBase+Log ON 750 G RAID 5
3.BackUp ON 750 G RAID 5

my question, i read that the recommendation is to seperate DB and log to difffrent disk,in my case why i need to put them together?
(all my dbs is 250 G and log is 8 G )


it is advised, but not mandatory. It depends on the system. You should ask the consultant to provide you with a reason for the settings.
Go to Top of Page

inbs
Aged Yak Warrior

860 Posts

Posted - 2010-03-23 : 07:52:01
i read some article and they said 'that db and log can not set in the same disk.
my consultant said the reason to put the db and log on the same disks,is that our db it is just 250 G and log 8 G. and the most of the transactions run in the night.


Go to Top of Page

tkizer
Almighty SQL Goddess

38200 Posts

Posted - 2010-03-24 : 00:21:25
The ideal architecture separates the data files and the transaction log file, but it just depends on how many disks you have. We separate lots of stuff out. Each of these gets its own set of disks in my environments: tempdb, data files, transaction logs, backups, and the other system databases.

For a 250GB database, you should have a minimum of 4 data files as Microsoft's recommendation is that no data file is over 64GB.

Tara Kizer
Microsoft MVP for Windows Server System - SQL Server
http://weblogs.sqlteam.com/tarad/

Subscribe to my blog
Go to Top of Page

inbs
Aged Yak Warrior

860 Posts

Posted - 2010-03-24 : 05:22:53
tkizer

the size all my database is 250G (i have 35 Database-35 datafiles in recovery model simple).

so it is ok to set data file and Transaction log in same disk?
Go to Top of Page

ahmad.osama
Posting Yak Master

183 Posts

Posted - 2010-03-24 : 05:24:58
quote:
Originally posted by inbs

i read some article and they said 'that db and log can not set in the same disk.
my consultant said the reason to put the db and log on the same disks,is that our db it is just 250 G and log 8 G. and the most of the transactions run in the night.



are you sure enough that log size will not be more than 8GB? what relation does night has with transaction log size?
you must check the recovery model and backup strategy in order to control the log size.
Go to Top of Page

tkizer
Almighty SQL Goddess

38200 Posts

Posted - 2010-03-24 : 13:57:33
quote:
Originally posted by inbs

tkizer

the size all my database is 250G (i have 35 Database-35 datafiles in recovery model simple).

so it is ok to set data file and Transaction log in same disk?



The size of the database is not what determines whether or not they should be on the same disk. Check your current I/O pattern and very if everything is okay.

Tara Kizer
Microsoft MVP for Windows Server System - SQL Server
http://weblogs.sqlteam.com/tarad/

Subscribe to my blog
Go to Top of Page
   

- Advertisement -