Viewing 15 posts - 16 through 30 (of 41 total)
Marios,
Try a search for sp_spaceused on all management packs on your target server. I beieve it will be in one of the core system packs.
April 28, 2009 at 7:21 pm
did you also look through the discovery management packs? the SQL packs usually are in pairs, one for dscovery, one for monitoring. do a quick search through all of them...
April 28, 2009 at 12:11 pm
hi joe. this snippet should help get you started.
select sj.name, sjs.next_run_date, sjs.next_run_time
from msdb..sysjobs sj
inner join msdb..sysjobschedules sjs on sj.job_id = sjs.job_id
inner join msdb..sysschedules ss on ss.schedule_id = sjs.schedule_id
order by...
January 9, 2009 at 8:01 am
hi david.
if i understand your post, you are struggling with a way to associate the old and new code within the same row in a tbale, correct?
if so, would it...
January 6, 2009 at 1:17 pm
we have a job in sql agent that runs every hour and checks the size of the error log. if the log size gets over 2mb, we recycle. i got...
December 24, 2008 at 6:58 am
nice eitorial today Phil. we recently experienced that very scenario, where the design did not scale up very well. when we were finally called into action to investigate, our reaction...
December 18, 2008 at 10:34 am
same here. i would add that it is hard to define the difference between "company time" and "my time", as I am expected to be available at all hours anyway....
December 3, 2008 at 7:11 am
i would love to write more and be able to answer questions, but by the time i read a lot of questions on this or other forums, most of them...
November 28, 2008 at 7:57 am
it sounds like the environment itself forces you to be in a reactive mode, so there may not be much else for you to do in terms of being proactive....
October 2, 2008 at 8:22 am
in our shop, we see views used and misused. the worst examples are the ones you have already outlined here, such as nested views. but you can also have issue...
September 11, 2008 at 8:41 am
Robert Phillips (9/4/2008)
September 5, 2008 at 9:16 am
Wouldn't it be easier to create a SQL login that would only be used by the application, instead of a windows user? How do users log on as a...
August 22, 2008 at 7:52 am
another issue is naming conventions. if code gets developed in test that uses a four part name, that code will not work when moved to production unless the link exists...
August 20, 2008 at 8:00 am
i have used that -g flag previously, but as you said it does not solve the real issue, it just delays it from happening as frequently.
August 18, 2008 at 8:27 am
Thanks Jonathon, I will try the DBCC FREESYSTEMCACHE the next time we have this issue.
It doesn't happen often, and I am familiar with the MemToLeave area, and the various things...
August 18, 2008 at 7:58 am
Viewing 15 posts - 16 through 30 (of 41 total)