Viewing 15 posts - 4,561 through 4,575 (of 6,038 total)
Despite all the coders contributing to OpenSSL, they somehow missed an obvious buffer overflow bug that could be spotted in a production or test environment without even examining at the...
April 24, 2014 at 1:16 pm
Steve Jones - SSC Editor (4/24/2014)
jarick 15608 (4/24/2014)
The push needs to come from someone in senior management with some security smarts. In my experience, very few executives have this...
April 24, 2014 at 12:34 pm
David.Poole (4/24/2014)
Unsupervised digital landfill
Unfortunately there are many IT shops who treat their relational database like a digital landfill: no thought for normalization, constraints, or optimization. Archived emails, website clicks, basically...
April 24, 2014 at 11:33 am
Steve Jones - SSC Editor (4/24/2014)
mkerr-793479 (4/24/2014)
Where is the code for the proc?This was a joke for April Fools. :w00t:
Yeah, we get the joke, but at this point you could...
April 24, 2014 at 10:57 am
jarick 15608 (4/24/2014)
April 24, 2014 at 8:43 am
Another disadvantage of using triggers in place of constraints is that a newly created trigger won't validate existing rows, only newly inserted or updated rows. Also there are more scenarios...
April 24, 2014 at 8:08 am
If a software application is hard coded to use the "SA" account, you can rename it and then create a new account named "SA" with limited permissions. One or more...
April 24, 2014 at 7:22 am
It's amazing that googling the following will still return hundreds of actual server login credentials.
filetype:config connectionString uid password
April 24, 2014 at 6:59 am
Also SORT_IN_TEMPDB = { ON | OFF } depending on which filegroup (default or tempdb) has available free work space.
April 23, 2014 at 9:49 am
I believe that performing a clustered index reorganization is always an online operation, and LOB_COMPACTION (on by default) will also reclaim deallocated LOB pages, which is what Kumar really needs.
What...
April 23, 2014 at 9:39 am
Also, for sizing up a table that includes nText and nVarChar(max) columns, the sys.dm_db_partition_stats view can be used to return more detailed information about In Row allocation versus LOB and...
April 23, 2014 at 8:22 am
S_Kumar_S (4/23/2014)
And...
April 23, 2014 at 8:09 am
djj (4/23/2014)
DECLARE @T1 VARCHAR(50);SET @T1 = (SELECT TOP(1) Col1 FROM MyTable); -- define variable first way
SELECT TOP(1) @t1 = Col1...
April 23, 2014 at 7:47 am
Of course, by breaking the MCM mold, Microsoft has insured that these minted certifications are now even more exclusive and valuable. 🙂
April 23, 2014 at 7:14 am
Given the cirsunstances, it's probably best to just hard code the definition of the temp table, which is the typical way of doing it. I wouldn't even dick around with...
April 21, 2014 at 12:27 pm
Viewing 15 posts - 4,561 through 4,575 (of 6,038 total)