Data Scientist versus Data Architect
I recently had the following discussions with a number of data architects, in different communities, in particular (but not limited...
2014-02-19
1,584 reads
I recently had the following discussions with a number of data architects, in different communities, in particular (but not limited...
2014-02-19
1,584 reads
Here is an alphabetical list of online mathematics books, textbooks, monographs, lecture notes, and other mathematics related documents freely available...
2014-02-19
607 reads
The 10 pioneering data scientists listed here were identified as top data scientists in our previous article entitled data science...
2014-02-19
452 reads
One of the main differences between a data scientist and a data engineer has to do with ETL versus DAD:
ETL...
2014-02-18
1,154 reads
May drives a modified Hilux to the rim of that unspellable Icelandic volcano that subsequently shut down Europe’s airspace
via Search...
2014-02-18
348 reads
How to enhance the performance of virtual teams
Virtual teams have some advantages, from allowing the best talent recruitment regardless of...
2014-02-18
468 reads
Companies face specific challenges at each stage of their lives. This is a great article on why many sales organizations...
2014-02-18
563 reads
Apache Hive is the de facto standard for SQL-in-Hadoop with more enterprises relying on this open source project than any...
2014-02-17
577 reads
Toyota Hilux Claims Second Pole Position in Antarctic Race. Have you Hiilux’d?
via Toyota Hilux Claims Second Pole Position (2009).
2014-02-17
508 reads
Monochromatic photos are eye-catching and can bring out details we might miss in regular shots. You can share a single...
2014-02-17
461 reads
By Steve Jones
This month we have a new host, James Serra. I’ve been trying to find...
By HeyMo0sh
As a DevOps professional, I’ve seen firsthand how cloud costs can quickly spiral out...
By Steve Jones
AI is everywhere. It’s in the news, it’s being added to every product, management...
Hi, ssms is free here. I can think of other reasons to do this...
I've written some documentation on using different Markdown types of files on GitHub. It's...
Comments posted to this topic are about the item Not Just an Upgrade
I am doing development work on a database and want to keep a backup so I can reset my database. I make some changes and want to restore over top of my changes. When I run this code, what happens?
USE Master BACKUP DATABASE DNRTest TO DISK = 'dnrtest.bak' GO USE DNRTest GO CREATE TABLE MyTest(myid INT) GO USE master RESTORE DATABASE DNRTest FROM DISK = 'dnrtest.bak' WITH REPLACESee possible answers