Viewing 15 posts - 1,606 through 1,620 (of 1,995 total)
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
I'm lucky in that i'm both developer and DBA as well. (primarilly DBA tho)
i think the problem lies in the mentality difference between developers and DBA's
if you think of the...
May 26, 2006 at 3:44 am
what account run the replication on the subscriber (if it's pull) or publisher (if it's push) - does this account have permission to use this.
i'm guessing that your account...
May 26, 2006 at 3:30 am
SalesLineItem: (itemCode, quantity)
where is the reference to saleID
perhaps
SalesLineItem: (ID(PK),saleid(FK),itemCode(FK), quantity,)
May 26, 2006 at 3:26 am
just a thought
customers are an entity
Sales: (saleId,, customerID, amount, storied, saleBalance,
Customer: (customerID,mobileNo,CustomerName)
May 26, 2006 at 3:23 am
Viewing 15 posts - 1,606 through 1,620 (of 1,995 total)