Viewing 15 posts - 76 through 90 (of 327 total)
Arthur Kirchner (11/22/2012)
I trusted Pinal Dave on this one, without crosschecking MS:
http://blog.sqlauthority.com/2011/02/15/sql-server-lck_m_xxx-wait-type-day-15-of-28/
who wrote
"LCK_M_SCH_S - Occurs when a task is waiting to acquire a Schema Share lock."
an...
November 22, 2012 at 7:52 am
Arthur Kirchner (11/22/2012)
I am also delighted, thanks a lot!here a little correction
'LOCK - Waiting to acquire a Schema Modify lock' WHERE dbo.[#results].[wait_type] = 'LCK_M_SCH_S'
... should be Share.
Thanks for...
November 22, 2012 at 7:15 am
Hello again,
I found the problem. Change the /* to */ on the second comment at the end of the line. If not the complete code will be commented out.
Sorry for...
November 22, 2012 at 6:05 am
Thanks for the comments! 🙂
Could please tell me where the problem is? i don't see the problem.
Thanks,
Rudy
November 22, 2012 at 5:56 am
Hello Lee,
Thanks for the update. Sorry about that, it not always easy to get real testing for scripts.
Glad you like it 🙂
Rudy
November 19, 2012 at 12:43 pm
Hello,
Looks like the code works outside the stored proc. It could be a SQL 2012 issue, not sure. As for dropping the temp table, I still think it good to...
September 18, 2012 at 9:01 am
Hello,
Got your script to execute. Looks like the spaces from the copy/paste from the website caused issues. Now I get the proc created and have created a link connection to...
September 17, 2012 at 10:46 am
Hello,
Just wanted to let you know that this script isn't working properly on a SQL 2008R2 server. I think you may upload an older version. Getting erros on this line...
September 17, 2012 at 8:57 am
VladaL (7/8/2012)
July 9, 2012 at 7:17 am
Hey you are correct, SQL 2008R2 is not supported on Windows Core but you can install it. The purpose of this exercise was to learn more about how SQL server...
July 9, 2012 at 7:12 am
scweichel (6/26/2012)
-- Read physical memory on server
SET @TotalMEMORYinBytes = (select physical_memory_kb from sys.dm_os_sys_info)
-- Coverting value from...
June 27, 2012 at 6:40 am
Tec_Chief (4/30/2012)
June 27, 2012 at 6:37 am
Hello,
Nice article!
You should really say "no" to xp_cmdshell. It is very bad for security.
Instead of using xp_cmdshell, why not just create a local database on each server (very small...
June 6, 2012 at 8:58 am
Enable the Protocols "Named Pipes"
May 29, 2012 at 7:22 am
Interesting article!
Just talking about automation and the pros and cons with staff here. I believe as long as you fully understand what you are automating then go ahead automate...
May 23, 2012 at 6:34 am
Viewing 15 posts - 76 through 90 (of 327 total)