Search icon CANCEL
Subscription
0
Cart icon
Cart
Close icon
You have no products in your basket yet
Save more on your purchases!
Savings automatically calculated. No voucher code required
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Hands-On Data Science with SQL Server 2017

You're reading from  Hands-On Data Science with SQL Server 2017

Product type Book
Published in Nov 2018
Publisher Packt
ISBN-13 9781788996341
Pages 506 pages
Edition 1st Edition
Languages
Authors (2):
Marek Chmel Marek Chmel
Profile icon Marek Chmel
Vladimír Mužný Vladimír Mužný
Profile icon Vladimír Mužný
View More author details
Toc

Table of Contents (14) Chapters close

Preface 1. Data Science Overview 2. SQL Server 2017 as a Data Science Platform 3. Data Sources for Analytics 4. Data Transforming and Cleaning with T-SQL 5. Data Exploration and Statistics with T-SQL 6. Custom Aggregations on SQL Server 7. Data Visualization 8. Data Transformations with Other Tools 9. Predictive Model Training and Evaluation 10. Making Predictions 11. Getting It All Together - A Real-World Example 12. Next Steps with Data Science and SQL 13. Other Books You May Enjoy

Questions

  1. Which external languages are supported by SQL Server?
    Python and R.
  2. Which service must be running for the successful execution of external code?
    SQL Server Launchpad.
  3. Can we combine filestreams with temporal tables?
    No, temporal tables do not support the versioning of filestream data.
  4. We are calling the following code: exec sp_execute_external_script @language = 'R', @script = '';. The script does not work and returns an error. Why?
    Every parameter of the procedure is of the nvarchar data type. All parameter values must start with a leading capital N: N'text in the parameter'.
  5. We are calling the sp_execute_external_script stored procedure. Inside the R script, we have the following line: Outputdataset <- as.data.frame(1+1);. The code does not return a result. Why?
    This is because the R language is case-sensitive. The correct casing is...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at ₹800/month. Cancel anytime