Viewing 15 posts - 9,091 through 9,105 (of 39,771 total)
Watch target memory for each server, and try to balance the load. It's up to you to somehow set this between instances.
September 30, 2015 at 9:21 am
ccd3000 (9/29/2015)
Well, I.T. hijacked and cheapened the 'Engineer' moniker a long time ago so why not 'Scientist'?
Indeed we have.
That's why I've typically called myself the data janitor.
September 30, 2015 at 9:01 am
You need something like this:
SELECT
'SQLAgent - TSQL JobStep (Job 0x'+
CONVERT(char(32),CAST(j.job_id AS binary(16)),2) +
' : Step ' +
CAST(js.step_id AS VARCHAR(3)) +
')', j.job_id, j.name
FROM msdb.dbo.sysjobs...
September 29, 2015 at 12:04 pm
Until you have an issue, you can't argue anything. If the dev does things and they work, then ignore it. Track things.
There isn't anything that I've seen other than blogs...
September 29, 2015 at 12:01 pm
Eric M Russell (9/29/2015)
September 29, 2015 at 11:27 am
I thought there was an alias or something in there. Alias' are great. I prefer a FWDN, with a port number after.
mynamedsql.mycorp.com,5555
I'm surprised this is so hard to change. It...
September 29, 2015 at 11:23 am
"keep" was meaning the end result. There is one instance on the host at the end, not two or more.
September 29, 2015 at 10:03 am
Perhaps some of this works in 2008? Anyone verify this? I've tested in 2012/2014 and it does not work.
September 29, 2015 at 9:41 am
SQLCLR doesn't hide the procedure from someone, though it does make the code hard to get to.
However, what is the purpose here? At some point, much of your data manipulation...
September 29, 2015 at 9:39 am
For why many developers are looking to NoSQL, look no further than JSON. So many of the new tools and languages have built some support for JSON storage, and the...
September 29, 2015 at 8:52 am
ken.trock (9/28/2015)
However I do believe we need to test our code. We all do test our code, even if it's with a few before/after queries. What I don't get is...
September 28, 2015 at 3:11 pm
xsevensinzx (9/28/2015)
September 28, 2015 at 3:08 pm
Jeff Moden (9/27/2015)
First, I loved your observations in the article. It takes so little time to "test-as-you-go" that I don't understand why more people don't do it. To wit,...
September 28, 2015 at 3:05 pm
tbailey 19088 (9/28/2015)
This rename can be done using sp_dropserver and sp_addserver @local='local.
I tested this on one of my development boxes that had only a single, default-named instance. First, I ran...
September 28, 2015 at 3:03 pm
Viewing 15 posts - 9,091 through 9,105 (of 39,771 total)