Viewing 15 posts - 4,471 through 4,485 (of 6,038 total)
dBase, Foxpro, and MS Access were nice little self-contained development platforms that got the job done in an era when options for multi-user enterprise development on the PC platform where...
July 17, 2014 at 2:50 pm
Eric M Russell (3/26/2014)
Steve Jones - SSC Editor (3/26/2014)
Gary Varga (3/25/2014)
I use the connection colour option in SSMS. See 'Use custom color' and set up registered servers using the desired...
July 16, 2014 at 9:30 am
andrew gothard (7/15/2014)
Phil Factor (7/15/2014)
Yes, it is certainly possible to have a NoSQL database that handles ACID properly. It just surprises me that some don't. As I understand the...
July 15, 2014 at 2:30 pm
I always cringe when someone talks about "dumping" terrabytes of "stuff" in SQL Server..., so a few analysts and contractors can chew on it for while..., just to see if...
July 15, 2014 at 8:06 am
At least for as long as I can recall, and probably dating back to Sybase, SQL Server has given the developer some flexibility over isolation level. Starting with SQL Server...
July 15, 2014 at 7:44 am
NoSQL databases are a solution to a wide range of niche applications that for the most part didn't exist a decade ago. However, Bitcoin is a revolutionary new business model...
July 15, 2014 at 7:07 am
One solution is to sum on a conditional expression like so:
select employeeid, historyid,
sum(case when activitytype = 'OPEN' then 1 else 0 end) Opens,
sum(case when activitytype = 'CLICK' then 1 else...
July 14, 2014 at 8:01 am
There is no secret sauce when it comes to database administration or development; I don't know why anyone wouldn't openly share their everyday techniques for getting the job done.
July 9, 2014 at 1:51 pm
That same day, I was talking with another DBA about if he might be interested in creating a presentation for an upcoming SQL Saturday, and his response was (paraphrased) "Why...
July 9, 2014 at 6:52 am
In addition to diagraming table relationships, if you want quick insight into what other objects a table depends on (foreign key relationships) or what other objects (like stored procedures) depend...
July 7, 2014 at 3:41 pm
Master_Files returns one row for each database file, and dm_os_volume_stats is a table valued function that returns information about a volume. Remember to get maximum value for each volume (not...
July 7, 2014 at 11:16 am
Gary Varga (7/7/2014)
Eric M Russell (7/7/2014)
July 7, 2014 at 8:47 am
I believe that Microsoft has introduced a cloud database product for the same reason that Coca Cola introduced a line of bottled water products. It's not intended to be a...
July 7, 2014 at 7:54 am
Comparing SQL Server to SQL Azure is like comparing traditional C++/C# forms to ASP.NET. There are some applications where moving to SQL Azure is an evolutionary leap, but there still...
July 7, 2014 at 6:59 am
SQLRNNR (6/30/2014)
I have charged them on occasion.
In this day, most every family has a teenage or twenty-something IT geek who hasn't landed their first real full time job but still...
June 30, 2014 at 4:06 pm
Viewing 15 posts - 4,471 through 4,485 (of 6,038 total)