Viewing 15 posts - 421 through 435 (of 545 total)
check buffer cache hit ratio and also look at Lock Pages In Memory option in sql server. There seems to be memory pressure.
Let me know how your DB's are configured...
June 26, 2008 at 7:06 am
ok this one whould provide you enough info:
http://blogs.technet.com/filecab/archive/2005/12/09/extending-cluster-storage.aspx
June 26, 2008 at 6:54 am
Surely Hardware level i.e. RAID controller level will be the best option to go with.
It is a debate in itself, as you will see more members debating my opinion.
June 26, 2008 at 6:52 am
You can get connected information from sysprocesses as follows:
select SPID,
DB_NAME(dbid) as dbname,
dbid,
login_time,
last_batch,
status,
hostname,
program_name,
cmd,
net_library,
loginame from master.dbo.sysprocesses
Order by login_time desc
Or sp_who2
For Failed attempts, you have to Query to ErrorLog. Get the ErrorLog into...
June 26, 2008 at 6:49 am
Do you mean the Server overall(windows or SQL Server)
Pl specify in detail.
Or if it is SQL Server Date Format:
Check BOL for SET DATEFORMAT Syntax
SET DATEFORMAT mdy;
SET DATEFORMAT ydm;
more on BOL
June 26, 2008 at 6:40 am
personally, i will place my binaries on the OS Drive and consider RAID 5 for system Databases. consider Raid 5 for user DataFile as they are readonly most of the...
June 25, 2008 at 9:10 pm
Well, here is the basic IDEA.
A table striped across multiple drives can typically be scanned/accessed faster than the if the same table is stored on a single drive
and otherwise, Placing...
June 25, 2008 at 8:55 pm
Interesting query.
you can have a step in the job that can send you emails when to job started and ofcourse the notification can be set to send you email on...
June 25, 2008 at 8:40 pm
Some storage arrays can continuously capture database snapshots
(i.e., point-in-time copies of data backups), which are overall faster back up and restore than the common traditional database backup methods.
This...
June 25, 2008 at 2:31 pm
This maybe a case of Corrupted Database BAckup or a Corrupted hardware that the Database is on.
DBCC UPDATEUSAGE(DBNAME)
DBCC CHECKALLOC (DBNAME)
Also try this: DBCC PAGE (DBNAME,1,1,0)
June 25, 2008 at 2:17 pm
How do toy backup the LOG?
There should be several T-Logs available gright, if you are using a maintenance plan to BAck them up.?
Manually Sort/check the logs by Datetime appended at...
June 25, 2008 at 1:01 pm
Try this
Restore all transaction log backups that have not yet been restored in the secondary database.
Kill all the users from secondary database to bring the database online. (if there...
June 25, 2008 at 12:54 pm
Viewing 15 posts - 421 through 435 (of 545 total)