Viewing 15 posts - 196 through 210 (of 814 total)
First, thank you to Jeff Moden for pulling out xp_dirtree, which is exactly what I was thinking when I saw the title.
With thanks to Jeff (and Robyn and Phil on...
November 22, 2013 at 8:37 am
RBarryYoung (11/14/2013)
November 15, 2013 at 9:46 am
Mauve (11/14/2013)
November 14, 2013 at 8:35 am
dwain.c (11/11/2013)
I certainly did not suggest that a "JOIN back to the main table" was needed.
You are correct - my apologies. I'm used to having to first find the...
November 12, 2013 at 10:09 am
Steve Jones - SSC Editor (11/11/2013)
November 11, 2013 at 10:05 am
All coding aside, in many to most of our cases, the real question is:
What is the best business case to present to management on why the increased cost, lengthened timelines,...
November 11, 2013 at 9:38 am
See the SQLServerCentral article Best Practice : coalesce vs. isnull? before you make a choice on which one to use!
November 11, 2013 at 9:15 am
Your tables - they have no indexes, particularly no UNIQUE indexes.
As the above posters have said, it's essentially a two-step process:
1) Find the <uniqueish row identifier>, MAX(VersionNum) GROUP BY <uniqueish...
November 11, 2013 at 9:10 am
Interesting article - not bad overall, though it again conflated stored procedures with parameterization, and completely missed not giving the service account admin permissions.
Password security wasn't mentioned (and given the...
November 11, 2013 at 9:02 am
Grant Fritchey (11/7/2013)
But, the one thing I would suggest...
November 8, 2013 at 2:55 pm
GilaMonster (8/28/2012)
eric.lyons (8/28/2012)
Old databases -- has no activity
Doesn't mean they can't be corrupted due to an IO subsystem glitch. It you absolutely don't care about them at all, fine. If...
November 8, 2013 at 2:40 pm
Normal SQL permissions (GRANT and DENY and the database roles) apply for reading and writing data.
TDE has no effect.
Your cryptographic approach applies for decrypting and encryption - if you use...
November 8, 2013 at 2:27 pm
It is not generalizable to restore every single t-log backup in the directory you store backups - this script as presented only works if a human has already selected the...
November 8, 2013 at 2:17 pm
If you're actually going to consistently follow one pattern (i.e. the domain 60 day password expiration), then I'd suggest mandating a simple SQL Server login policy. For instance:
All...
November 5, 2013 at 1:50 pm
Grant Fritchey (10/30/2013)
One point. You might want to consider skipping reorganize. For most indexes it doesn't do much, but is still a fairly costly operation. For detailed...
November 1, 2013 at 11:51 am
Viewing 15 posts - 196 through 210 (of 814 total)