Viewing 15 posts - 6,046 through 6,060 (of 7,505 total)
...but existing objects could not make use of the secondary filegroup?...
- If you don't alter existing objects (tables or indexes), they will not use the new filegroup ! You have...
October 26, 2006 at 1:02 pm
- and off course there should be space at disk-level ![]()
- your db already has a filegroup named 'secondary'
choose another name. contact your...
October 26, 2006 at 11:36 am
- use xp_fixeddrives to check out your current freespace at the "local" drives.
(this proc may be secured)
- there may be file-latency when extending a datafile (from your primary filegroup)...
October 26, 2006 at 11:32 am
how about (b)locking issues, long running requests,...
sp_who2, sp_lock may help out
October 26, 2006 at 11:25 am
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
Viewing 15 posts - 6,046 through 6,060 (of 7,505 total)