Viewing 15 posts - 31 through 45 (of 133 total)
Doesn't sound right.
Try and connect remotely from your PC (using Enterprise Manager) and see if it is still not responding (there may be an issue with MMC on the server).
It's...
June 28, 2010 at 6:24 am
You should create a dump device that points to the remote server, then backup to the dump device.
June 24, 2010 at 7:19 pm
I'm not sure- windows admins don't seem to defragment drives on a regular basis (like they did in the past). The attitude I have heard from some was that they...
June 24, 2010 at 7:12 pm
Are you talking about the ODBC driver on the Windows 2003 server? If so, I don't think you can.
In Windows 2000 and below you could change the MDAC version, but...
June 23, 2010 at 9:44 pm
btw, I just have this scheduled each night as SQL Agent job.
June 23, 2010 at 9:39 pm
I have the same problem with one of our SQL 2005 servers.
As a work around, I run:
declare @dt datetime
select @dt=getdate()-1
EXECUTE master.dbo.xp_delete_file 0,N'BackupLocation',N'BAK',@dt,1
this has worked perfectly for...
June 23, 2010 at 9:37 pm
You can get tool (such as diskkeeper) that can defragment SQL files when they are in use.
I'm not sure why windows admins don't see the need to defrag drives anymore-especially...
June 23, 2010 at 9:33 pm
I'm no Windows administrator, but I suppose you would need a fiber card for the server to talk to the SAN.
There is no specific configuration needed in SQL Server to...
June 23, 2010 at 7:54 pm
Same goes for your transaction logs- you need them on a faster disk also.
I would run the best practices analyzer against the server- it will give you a wealth of...
June 23, 2010 at 7:50 pm
If I were you, I would move the tempdb off RAID5 as a priority. Even if it's not the cause of your current performance issues- it will be in the...
June 23, 2010 at 7:40 pm
Without more information, a couple of things I can think of to check:
make sure you have multiple tempdb data files (one for each processor) on a fast disk. The IO...
June 23, 2010 at 4:49 am
btw, the same method works for the data file as well as the log file.
June 23, 2010 at 4:31 am
This method saved me hours when I moved databases to the SAN:
Fantastic that mirroring doesn't need to be broken (if you are using it)...
June 23, 2010 at 4:29 am
Mirroring doesn't actually use the transaction log (from what I understand).
The transactions are applied to the principal and the mirror database. This is different from log shipping which actually...
June 22, 2010 at 9:55 pm
Viewing 15 posts - 31 through 45 (of 133 total)