Viewing 15 posts - 61 through 75 (of 566 total)
Powershell. Have you taken a look at the EPM project?
December 15, 2009 at 2:21 pm
Just FYI -
"
Q: What exactly is a processor license and how does it work?
A: If you have made a processor inaccessible to all operating system copies on which...
December 14, 2009 at 12:50 pm
jinx8402 (12/14/2009)
I know and understand performance will...
December 14, 2009 at 12:01 pm
Refer to KB897615 regarding the MS Policy -
December 10, 2009 at 1:06 pm
This thread might offer some assistance -
http://social.msdn.microsoft.com/forums/en-US/sqlanalysisservices/thread/dd633c5e-fdb4-449b-a445-c13abcd6db24/%5B/url%5D
December 10, 2009 at 8:24 am
Is this a named instance or a default instance? You mentioned you that were able to connect to the instance, was this local to the server or from a remote...
December 10, 2009 at 8:14 am
None to the best of my knowledge; a witness can monitor multiple mirrored sessions.
December 10, 2009 at 8:04 am
are your looking for something like -
declare @XmlTest table
( ID int identity(1,1), LineXml xml)
insert into @XmlTest (LineXml)
values
('
<Root>
<LineItem>
<LineItemReference>30044</LineItemReference>
</LineItem>
<LineItem>
<LineItemReference>30045</LineItemReference>
</LineItem>
</Root>'),
('
<Root>
<LineItem>
<LineItemReference>30046</LineItemReference>
</LineItem>
<LineItem>
<LineItemReference>30047</LineItemReference>
</LineItem>
</Root>'),
('
<Root>
<LineItem>
<LineItemReference>30048</LineItemReference>
</LineItem>
<LineItem>
<LineItemReference>30049</LineItemReference>
</LineItem>
</Root>')
select ID,LineXml.value('(/Root/LineItem)[1]', 'int') as Line
from @XmlTest
union
select ID,LineXml.value('(/Root/LineItem)[2]', 'int') as Line
from @XmlTest...
December 10, 2009 at 8:00 am
Regarding performance counters, Lock Wait Time (ms) and Lock Waits/sec should offer some more insight into lock escalation issues;
Lock Wait Time (ms)
Total wait time (milliseconds) for locks in...
December 9, 2009 at 2:38 pm
kolb.branden (12/9/2009)
December 9, 2009 at 2:20 pm
NP. It is my understanding that the OLEDB provider for Microsoft Directory Services doesn't expose the page size property....I'm pretty sure I've seen this logged as a feature request on...
December 9, 2009 at 2:13 pm
dpt (12/9/2009)
I found another way that seems to be the easies - what about setting up an alert in the SQLServer:Locks object? Are you...
December 9, 2009 at 2:02 pm
There was an article posted to SSC today regarding this; check out the comments section. It was suggested that this setting is configurable in AD and an alternative was load...
December 9, 2009 at 1:15 pm
shew (12/9/2009)
Tommy Bollhofer (12/9/2009)
December 9, 2009 at 12:21 pm
Viewing 15 posts - 61 through 75 (of 566 total)