Viewing 15 posts - 676 through 690 (of 2,640 total)
I'd suggest a training course - if you're really hosting a sql server this way you shouldn't be asking this question. I know this sounds harsh but data security is...
February 21, 2008 at 6:01 am
yes and no.
you can certainly search stored procedure text and there's lots of code and discussion on this point, it can be tricky(ier ) where procs are very large and...
February 21, 2008 at 5:57 am
perhaps you could expand your question a little as I'm not quite sure what you're asking, sorry.
February 21, 2008 at 5:53 am
I'd just add anothe point having come from supporting an ERP system which used dynamic sql, sql 2005 doesn't seem to handle ad-hoc type queries half as well as sql...
February 21, 2008 at 5:51 am
I'd look for another job - you can never really get any performance out of apps like this and once you've exhausted the hardware options you've nowhere to go. Your...
February 21, 2008 at 5:45 am
there are numerous ways to check server memory I've never bothered with this counter - run this query and see what you get
use master
go
select counter_name ,cntr_value,cast((cntr_value/1024.0)/1024.0 as numeric(8,2)) as Gb...
February 21, 2008 at 5:38 am
in as much as I've applied CU5 to both x64 and x32 servers and have previously deployed x64 and x32 versions of same patches, yes they are the same
however I...
February 21, 2008 at 3:32 am
it depends exactly what it is you're looking for. The microsoft blogs are probably your best bet although 2005 is starting to be old stuff now. the sql cat team...
February 21, 2008 at 3:26 am
waiting for something to happen? twiddling my fingers until someone does something. catching forty winks until I'm asked to do something.
February 21, 2008 at 1:46 am
awe is not allocated dynamically, setting awe on a x32 server disables dynamic memory management and sql server will take all the memory up to the max memory setting. a...
February 21, 2008 at 1:44 am
reported by both the dmvs and diagnostic manager.
you can see the report I use on this page http://www.grumpyolddba.co.uk/monitoring/Creating%20Custom%20Reports%20for%20the%20DBA.htm
February 21, 2008 at 1:40 am
ok so I didn't word that correctly - each user runs the application across the network from their workstation and the server the app is on is also the...
February 20, 2008 at 9:43 am
x32 only uses awe. you must have the /pae switch set in boot.ini. you must set awe option on, you must set max memory. min memory is ignored with awe,...
February 20, 2008 at 9:40 am
are you saying your users are launching the app from a shortcut on the server ?
If so I can't see how that would work.
February 19, 2008 at 3:16 pm
you should only consider x64, there's little point in using 32 bit apps with all the memory issues and limitations. x64 std sql takes the memory limit of the o/s...
February 19, 2008 at 3:10 pm
Viewing 15 posts - 676 through 690 (of 2,640 total)