Viewing 15 posts - 1 through 15 (of 27 total)
Hi Robert!
You are welcome.
I haven't seen that problem so far. Have you reutilized the "-SqlInstance" parameter after your clean up? Or did you start one session from scratch? If the...
July 25, 2021 at 10:22 am
Hey Ken,
Wishing you a speedy recovery!
July 10, 2020 at 9:17 pm
I'm glad you found it useful Peter. Even if you are not using it right now or using your own solution. 🙂
On the permissions field, I also encourage people to...
June 30, 2020 at 2:10 pm
Hi Low Rider,
See if this helps (http://msdn.microsoft.com/en-us/library/ms176013(v=sql.105).aspx):
SELECT TOP 10 login_name, SUM(cpu_time)
FROM sys.dm_exec_sessions
WHERE session_id > 50
GROUP BY login_name
ORDER BY SUM(cpu_time) DESC
Basically will give you the logins with most...
September 24, 2014 at 5:33 am
anarayanamoorthy
The other day there was a programmer who had the SA account inactive and did not know the password.
I followed these instructions and managed to activate...
April 14, 2011 at 2:05 am
Question answered!
At server's permissions scope I have an DENY VIEW DEFINITIONS!
As is normal within the database will not have permissions to view the metadata of the system SP!
But if users...
September 3, 2010 at 2:35 am
More or less! 😀
I allready have my question's answer!
If inside the database I put the users associated with db_owner Role they stayed with the same permissions as "original" db_owner!
This...
September 3, 2010 at 2:16 am
GilaMonster (6/26/2010)
Have you monitored for blocking?
Are you talking about performance counters?
If yes, yes I have had monitorizing using some SQL counters like RowLocks and PageLocks.
There is a few RowLocks but...
June 26, 2010 at 1:18 pm
GilaMonster (6/24/2010)
Cláudio Silva (6/24/2010)
June 26, 2010 at 12:54 pm
Gianluca Sartori (6/24/2010)
I'm sorry. I thought you were experiencing deadlocks from the thread title.So, what's your issue?
Thread title says "without" 🙂
Read my previous post I think now it's more clear
June 24, 2010 at 7:31 am
GilaMonster (6/24/2010)
Cláudio Silva (6/24/2010)
June 24, 2010 at 7:30 am
Gianluca Sartori (6/24/2010)
Typical scenario is something like this:
Session 1 ...
June 24, 2010 at 6:12 am
Another doubt is..all credentials must be an Windows Account??
Can be an SQL Login?
September 14, 2009 at 10:02 am
kruti (9/8/2009)
Hello, got solution?
Yes, the solution was create an 3rd parameter on the 1st SP which says if return an XML or an Table..after this I do an
INSERT...
September 8, 2009 at 2:26 am
Florian Reischl (9/7/2009)
claudiosil100 (9/7/2009)
Why you say the 3rd parameter it's the best solution? 🙂
A third parameter gives you the possibility to use both ways from everywhere. If you call your...
September 7, 2009 at 8:22 am
Viewing 15 posts - 1 through 15 (of 27 total)