Viewing 15 posts - 46 through 60 (of 216 total)
Instead we just keep packages and configs on a fileshare and execute them using SQL jobs. The only constraint this imposes is that we use windows authentication on our connections....
April 10, 2013 at 9:18 am
I belong to something like 40 websites; financial, gaming, social networking, community (like this one). I use a password vault for most of these which makes it a little easier...
March 26, 2013 at 10:40 am
Thanks guys. It looks like having our server support team recycle the SQL Agent service did the trick. All jobs are running through their entire schedules.
Ken
January 11, 2013 at 7:22 am
Found it, thanks.
SELECT databaseid, filename, SUM(IntegerData*8) AS 'Growth in KB', Duration, StartTime
FROM fn_trace_gettable(<your trace file>, DEFAULT)
WHERE EventClass BETWEEN 92 AND 93
GROUP BY databaseid, filename, IntegerData, Duration, StartTime
ORDER BY...
December 17, 2012 at 4:25 pm
Years ago the company I worked for would patch the majority of our servers one Friday night each month. The Microsoft patches for the month, and other software patches, would...
December 14, 2012 at 2:19 pm
Actually for many NJ residents, landlines were out for days. At least a cellphone can be charged from a car battery.
I'm in NJ but our company is spread out with...
December 12, 2012 at 4:26 pm
Truth is, this machine is flakey. Maybe it's tempdb. It was setup by another group with way too many files, 16 on an 8 core box. We've been trying to...
October 26, 2012 at 8:26 am
Thanks Lowell. That is some out of the box thinking!
Ken
October 25, 2012 at 1:40 pm
Thanks, not seeing much in the logs. I'm tempted to let the data drive fill up just to see what happens :-D. But our end user folks would be going...
October 23, 2012 at 9:44 am
Tom, thanks for sharing this. Not sure what you did to prevent that annoying @schedule_uid from appearing in the new job (which would cause it not to compile) but I'm...
October 8, 2012 at 12:02 pm
Yeah, I was going to say, I'm overwriting the backup each time with INIT. So as you say the tranlog contains either the 1st set of deletions or the last,...
August 20, 2012 at 1:11 pm
Thanks folks, and thanks for the article!
Ken
August 20, 2012 at 12:48 pm
Nice. I use this:
SELECT jobs.name AS 'JobName',
sched.name AS 'SchedName',
CASE sched.freq_type
WHEN 4 THEN 'Daily'
WHEN 8 THEN 'Weekly'
WHEN 16 THEN 'Monthly'
WHEN 32...
July 27, 2012 at 12:56 pm
Generally, I do my best to never let a SQL login have any sort of elevated privs on a database let alone the server.
Same here, which is why I'm...
May 18, 2012 at 1:00 pm
I'm with CrankyRat on this one. Maybe not the Glenn Beck part 🙂 In the last 10-12 years here in the USA we've seen internet bubbles, mortgage meltdowns, and financial...
May 3, 2012 at 9:24 am
Viewing 15 posts - 46 through 60 (of 216 total)