Viewing 15 posts - 6,046 through 6,060 (of 7,501 total)
in that case also copy the path to the ldf file from explorer.
maybe the best way is to rightclick and hold and drag to the run window
(start\run) clear the...
October 26, 2006 at 8:55 am
with SET @Msg = 'Error: [A-ERR]' + CHAR(10) + 'Severity: [A-SEV]' + CHAR(10) + 'Date: [STRTDT]' + CHAR(10) + 'Time: [STRTTM]' + CHAR(10) + 'Database: [A-DBN]' + CHAR(10) + 'Message:
October 26, 2006 at 6:02 am
Check your cluster service settings for sqlserver !
I suspect you didn't create a dependency for your sqlserver instance with the R-drive ! Therefor sqlserver cannot reach the drive !
October 26, 2006 at 5:42 am
I forgot to mention you only defrag the indexes.
Defrag only does index-level-optimisation.
Check BOL.
After every upgrade, sp, restore, attatch_db it is advisable
to perform full dbmaintenance.
dbcc dbreindex (or configure a maintenanceplan)
sp_updatestats
dbcc updateusage(0)...
October 26, 2006 at 5:08 am
maybe these article help out :
http://www.sqlservercentral.com/columnists/sjones/cyclingthoseerrorlogs.asp
http://www.databasejournal.com/features/mssql/article.php/3587611
October 26, 2006 at 3:45 am
just a shot in the dark ...
- did you format the volumes with blocksize to max in stead of default (4k) ?
- maybe your clustering index isn't the right one...
October 26, 2006 at 3:40 am
... Also if there is a way for me to see how the login is linked through a group I would be interested to know how. ...
EXEC master..xp_logininfo @acctname =...
October 25, 2006 at 7:55 am
if your volume is not that high, you may even use the tablediff.exe
you can find it at
"C:\Program Files\Microsoft SQL Server\90\COM\tablediff.exe"
October 25, 2006 at 1:49 am
I've just copy/pasted the script and added the last inner-join-part.
It returned rows. (with sql2000 and with sql2005)
This is the full script, copy/paste it and run. It should give results if...
October 20, 2006 at 12:12 am
just to add to the other replies :
you could use triggers to enforce this check constraint.
Although its better to avoid ....
CREATE TRIGGER mytrigger _IU ON mytable
FOR insert, update
AS
BEGIN
if exists...
October 19, 2006 at 7:54 am
or maybe even replace the complete where clause with
inner join
( select job_id, max(run_date) as Max_run_date
from msdb.dbo.sysjobhistory
group by job_id ) jhMAX
on jh.job_id = jhMAX.job_id
and jh.run_date = jhMAX.Max_run_date
October 19, 2006 at 3:01 am
there is also a litle pitfall with ...
and jh.run_date = convert(int,
October 19, 2006 at 2:30 am
- how long is it taking the system to allocate 200GB ?
- did you try to copy a 200Gb file to that logical disk ? And how long did that...
October 19, 2006 at 1:58 am
so this may be I/O related.
keep in mind that files are being initialized (=nulled out) at allocation time (unless you specify not to).
What filesize are you trying to allocate ?
October 17, 2006 at 5:01 am
how about :
declare
@daysago int
set
@daysago = 7
Select
j.name as
October 17, 2006 at 2:56 am
Viewing 15 posts - 6,046 through 6,060 (of 7,501 total)