-
Accessing external USB disk attached to my ASUS RT-AC68U router
-
Initial impressions of SQL Server v.Next Public Preview
-
Java regex Matcher’s first group is the whole pattern
I didn’t realize that Java’s regex class, Matcher, uses m.group(0) to denote the entire pattern. I spent some time debugging it. Hence this note. As is stated in the documentation, “Capturing groups are indexed from left to right, starting at one. Group zero denotes the entire pattern, so the expression m.group(0) is equivalent to m.group().”…
-
Changing non-nullable column to nullable in SQL Server is quick and painless
-
No 32-bit for SQL Server 2016 Express
I’ve learned that SQL Server 2016 Standard and Enterprise Editions no longer provide 32-bit. But I do wonder about SQL Server 2016 Express Edition. It’s different in that it’s free, and mostly geared toward lightweight usage, people who are learning, etc. So perhaps it still offers 32-bit? After some upgrade work to one SQL Server…