Viewing 15 posts - 271 through 285 (of 387 total)
This will read the registry and give you what you need, I got it from this site after posing the same question:
declare
@reg_srv varchar(256
February 21, 2006 at 10:04 am
Try the query like this:
select whatever from table OPTION (MAXDOP 1)
The number in the maxdop hint is the number of procesors the query will use, I would also look at when the...
February 13, 2006 at 11:27 am
Without looking at the code my only question is whether the machine this is running on is a multi processor box. If so I would look at using the maxdop...
February 13, 2006 at 10:24 am
Yes thats what I thought, but maybe I am just not findong it. Maybe it will be back in the first sp.
January 31, 2006 at 8:51 am
This is the sql EM fires when you do a refresh and a base is being restored:
select name, DATABASEPROPERTY(name, N'IsDetached'),
(case when DATABASEPROPERTY(name, N'IsShutdown') is null then -1
else DATABASEPROPERTY(name,...
January 27, 2006 at 1:33 pm
This should give you what you need
select DATABASEPROPERTY(name, N'IsInRecovery') end)
January 27, 2006 at 1:23 pm
Phil,
Thanks for this, this does exactly what I have been looking for. Does this work against 2005? Do you have any plans on writting a new version that will if...
January 11, 2006 at 10:51 am
Sounds like the execution plan may have changed, do you have a set of input params that you know where being processed in the past in a reasonable time. If...
January 8, 2006 at 1:57 pm
You need to open the surface area configuration tool and click the option for remote connections and then click local and remote connections option. Use bol 2005 for more dtails
January 8, 2006 at 12:07 pm
I have seen this before, what they are realy saying is that it would be more difficult to recode there work. It would not supprise me if there are orphaned...
January 5, 2006 at 11:33 am
Running this in the distribution database will give you a history of the distribution agents. You can modify the view to look at the other agents wich have there history...
January 3, 2006 at 10:28 am
search this site for USP_KillUsers, this script will give you what you want
December 19, 2005 at 2:27 pm
December 9, 2005 at 9:57 am
Viewing 15 posts - 271 through 285 (of 387 total)