Viewing 15 posts - 6,961 through 6,975 (of 7,466 total)
With Query Analyzer or EM : sp_detatch_db 'yourUserdb'
With explorer move the file to the correct location.
With Query Analyzer or EM : sp_attach_db 'yourUserdb', 'FileLocationAndName.MDF', 'FileLocationAndName.Ldf'
For system databases check http://support.microsoft.com/default.aspx?scid=kb%3ben-us%3b224071
Maybe even...
June 10, 2004 at 12:15 am
Antares686 sead it all
- Figure out the average actual datalength of you char columns.
SELECT avg(datalength(...
June 8, 2004 at 12:30 am
- how many rows get into a single datapage ?
- you could rebuild the clustering indexes.
June 7, 2004 at 2:21 am
log on to the server using your sqlagent account and then try to run the package from EM\edit dts package.
You'll get more detailed errorinfo.
June 7, 2004 at 2:11 am
Great to know I'm not the only one that has those concerns
June 4, 2004 at 5:58 am
"...size of the log file and truncates & shrinks it ..."
I hope your DRP can cope with that
June 4, 2004 at 5:37 am
We don't use fixed- or max-memory setting on most of our sql2k-servers. Only when experiencing sql-paging, it occurs we put a max-memory on it.
I believe the recomendation to leave 512Mb is...
June 4, 2004 at 12:07 am
that's what I assumed.
Normaly, just the statistics will not cause such log-load.
dbreindex rewrites it all. this log-overhead can be reduced by switching to bulk-logged recovery mode.
June 3, 2004 at 11:50 pm
switch to bluk-logging before performing your maintenance !
full-logged it logs everything !
June 3, 2004 at 8:11 am
take a look at BOL : search for "NOCHECK CONSTRAINT"
alter table myschema.mytable NOCHECK CONSTRAINT myconstraint
don't forget to enable it again when you're done.
June 3, 2004 at 4:01 am
correct. Only using EM it will not allow you to do so.
I persume because backups should still be available when failed over
(we...
June 2, 2004 at 3:58 am
yep, this time I failed to give the wrong answer
June 2, 2004 at 12:29 am
select t.taskid, t.staffid,
sum(isnull(datediff(s,wt_starttime,isnull(wt_stoptime,getdate()))), 0) as [timespent]
from task t
left join pt_vCheckworktime
on fk_taskid=t.taskid and fk_staffid=t.staffid
group by t.taskid,t.staffid
keep in mind that your udf will be executed at row-level where the join will...
June 1, 2004 at 12:23 am
I even didn't get the chance to reply the wrong question , it was already there for me .... You've already answered this...
May 31, 2004 at 11:58 pm
Viewing 15 posts - 6,961 through 6,975 (of 7,466 total)