Viewing 15 posts - 46 through 60 (of 813 total)
Steve Jones - SSC Editor (11/17/2014)
Gary Varga (11/16/2014)
November 18, 2014 at 8:41 am
I also use Ola's solution as the basis for backups, though with a few slight tweaks for a vendor app environment. I also very much support no more than...
November 13, 2014 at 8:56 am
As always, the #1 problem is human beings. Most other problems can be traced to this, and the bulk of them are combinations of corporate culture, explicit vs. implicit...
November 13, 2014 at 8:38 am
I copy and pasted into a text editor, verified that 1 and 4 were the same, guessed 1 was more likely to get the point, and lost with a correct...
November 11, 2014 at 9:05 am
First, a technical option:
What happens if you put a firewall in between set to Reject all access to the internet, so at least there's a very fast response to any...
November 11, 2014 at 8:58 am
Starwatcher (10/30/2014)
kenambrose (10/30/2014)
MAKE ALL COLUMNS NOT NULLABLE.
If you can't figure out how to design a schema where that works for your business requirements,...
October 30, 2014 at 10:52 am
sqldriver (10/15/2014)
October 15, 2014 at 11:07 am
No; I just run a redeploy anytime I question whether an SP is up to date.
The only other real way to do it is simply compare the entire definition column...
October 14, 2014 at 10:25 am
Start by putting a standardized, unique comment at the start of each stored procedure, listing the version.
Then you can use something like:
SELECT
CASE
WHEN PATINDEX('%UniqueVersion:%',definition) > 0 THEN SUBSTRING(definition,...
October 14, 2014 at 8:25 am
Ok, my post just got eaten, and I'm out of time, so here's the short short short version:
First, is_policy_checked is meaningless except during the actual password change operation:
select name, is_policy_checked,...
October 9, 2014 at 10:02 am
Is SQL Server (the core product) mature?
Well, it has some of the hallmarks of a mature product - very limited feature growth (bad point: very limited bug fixing of even...
September 26, 2014 at 9:11 am
GilaMonster (9/23/2014)
One of the first things you need to identify before starting with encryption is what you are trying to protect against.
This is the most important piece of advice in...
September 25, 2014 at 8:19 am
Personally, I'd recommend doing this from a DOS prompt/Windows scheduled task/Enterprise scheduler scheduled task from the get-go; the business requirement will only get bigger from here!!! The next thing...
September 25, 2014 at 8:05 am
Very interesting, though I'd find a version that looks for not only internal objects, but also explicit objects like #temp and ##global temp tables, and even "real" tables in tempdb,...
September 25, 2014 at 7:52 am
Thank you for the script, Carolyn; both sets of SQL Statements (the alerts and the notifications) work well on SQL 2012, both on error number and severity level based alerts.
One...
September 23, 2014 at 9:28 am
Viewing 15 posts - 46 through 60 (of 813 total)