Viewing 15 posts - 4,456 through 4,470 (of 6,026 total)
patrickmcginnis59 10839 (7/21/2014)
Eric M Russell (7/21/2014)
July 21, 2014 at 11:36 am
It's interesting that developers on the various "NoSQL" platforms are now focussing their efforts on implementing SQL language interfaces. Apparently when it came time to start capitalizing on their inventions...
July 21, 2014 at 10:44 am
podmate (7/17/2014)
I have had too many experiences with poorly built access (and FileMaker Pro) 'applications' that I never want to...
July 17, 2014 at 4:07 pm
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
Viewing 15 posts - 4,456 through 4,470 (of 6,026 total)