Viewing 15 posts - 16 through 30 (of 755 total)
Have you tried DBCC MEMORYSTATUS? If not, you will find more information in this link http://support.microsoft.com/kb/907877
August 16, 2013 at 3:40 am
No problem. Could you please provide the source of the query? Thanks in advance!
August 16, 2013 at 3:36 am
You may want to change the title. Your question is not related to the CPU utilization.
August 16, 2013 at 3:26 am
Maybe you should write a blog about it and provide a more detailed description of what happened. You could use screenshots.
July 26, 2013 at 4:03 pm
dm_tapas (7/12/2013)
Yesterday it happened... SQL was not allowed any new connections..but it was showing 99 % CPU usage by SQL.
we restarted the server ... and server is...
July 12, 2013 at 8:14 am
To answer your question, you can find information about sp_spaceused here. When I'm checking disk usage by a database I usually use the disk usage standard report on SQL...
July 9, 2013 at 5:32 am
I'm nott a big fan of shrinking a database, if you have enough space on production, maybe worth it to keep it as it is.
July 9, 2013 at 5:23 am
Could you please answer Steve's questions?
July 9, 2013 at 5:14 am
How were you trying to connect to the Server when using SSMS? Did you use the full Servername + instance (If applicable)? Did you try using the portnumber to connect?...
July 9, 2013 at 5:12 am
Try this:
create table #temp
(
id int,
strg varchar (5),
[index] tinyint
)
insert into #temp
values (1, 'abc', 1)
declare @strg varchar (5)
select @strg = case when ID = 1 and [INDEX] = 1
then strg
else '0'
end
from...
June 24, 2013 at 2:56 pm
You may want to read the information in this link http://msdn.microsoft.com/en-us/library/ms177440.aspx
June 24, 2013 at 2:52 pm
April 9, 2013 at 7:58 am
faisalfarouqi (1/29/2013)
I've finally come up with a script that does the trick for me, and can be helpful for others as well. Now, here are the...
February 12, 2013 at 3:16 pm
poornima.s_pdi (2/1/2013)
Hi Ignacio,I attached in .rar format.Plz try to extract it.
Regards,
poornima
Hi, please accept my apologies for not getting back to you before, but I have been a bit busy....
February 12, 2013 at 3:07 pm
Could you please add the attachment in another format? I'm not able to open it.
January 31, 2013 at 12:31 pm
Viewing 15 posts - 16 through 30 (of 755 total)