Viewing 15 posts - 1,606 through 1,620 (of 1,999 total)
does anyone know if this hotfix rollup is cluster aware?
August 16, 2006 at 7:37 am
in query analyser run the following
use master
go
exec sp_helpdb
the 3rd column shows database owner
August 8, 2006 at 3:00 am
use in query analayser the alter table statement
for example
alter table mytable alter column mycolumn varchar(100) NOT NULL
Enterprise mangler does some odd things when changing tables due to backwards compatability...
July 28, 2006 at 3:12 am
select * from mytable where myid in (select top 5 myid from mytable order by mydatefield desc)
July 26, 2006 at 10:10 am
are you running sql server accounts under localsystem or a domain account - lock pages in memory is usually defined under the security policy (i think) for your user account
July 26, 2006 at 9:50 am
what's your biggest database size?
July 26, 2006 at 9:29 am
select case
when tstarttime=@endtime then datediff(hh,@starttime,@endtime)
when tstarttime>=@starttime and tendtime>=@endtime then datediff(hh,tstarttime,@endtime)
when tstarttime<=@starttime and tendtime=@starttime and tendtime<=@endtime then datediff(hh,tstarttime,tendtime)
else '0' end
from mytable
or thereabouts
July 26, 2006 at 9:21 am
if it has mystically doubled in time but the .bak file is the same size then the obvious one to check is in the maintenance plan - check if the...
July 25, 2006 at 3:41 am
thats correct - on failover 2 instances - beware you have to have different instance names!!
i agree with lowell though. they shouldn't hardcode the database name. it might be...
July 25, 2006 at 3:28 am
not sure i understand the reply - basically turn the passive node into an active node.
no point running 2 active instances on the same hardware unless you go into a...
July 24, 2006 at 10:10 am
i'd proboably say install the other instance on the failover node and set it up as ACTIVE/ACTIVE.
at least you can make use of the other node for reporting or other...
July 21, 2006 at 9:40 am
flame!!! right on wangkhar...
I think the key thing here is that developers have to accept that it's the DBA that has to manage the database/server for their application long after...
May 26, 2006 at 10:31 am
To Marti, I ask: When I worked in a large shop there were change control meetings daily, weekly, monthly, and development would have had to get their schema changes approved....
May 26, 2006 at 8:51 am
Viewing 15 posts - 1,606 through 1,620 (of 1,999 total)