sql-server-2019

How to determine if given table is memory optimized?

醉酒当歌 提交于 2021-01-29 03:08:17
问题 Good morning, My first question is how to determine if tables created in MS SQL Server are memory optimized. I have some tables and I don't remember if some of them I created in-memory optimized or not. Many thanks for answers. 回答1: To riff off of another answer here, here's a way to get the status for all tables in your database: select name, OBJECTPROPERTY(object_id,'TableIsMemoryOptimized') from sys.tables; Similarly, if you want just the in-memory ones, you could do: select name from sys

SQL Server machine learning services r version 3.5

左心房为你撑大大i 提交于 2021-01-27 05:08:13
问题 According to this link, SQL Server machine learning service's highest R version is 3.3. Does anyone know when one can upgrade to version 3.5 or later? Or is my only option to switch to sql server 2019? Thanks. 回答1: Well cs0815, let's take a look. According to your post, you tagged this with sql-server-2017, so I'll be basing this on that version. After reading through your link and this one, I was thinking there might be two options: Hack a new version of R into the R-Services module of SQL

SQL Server machine learning services r version 3.5

风格不统一 提交于 2021-01-27 05:07:36
问题 According to this link, SQL Server machine learning service's highest R version is 3.3. Does anyone know when one can upgrade to version 3.5 or later? Or is my only option to switch to sql server 2019? Thanks. 回答1: Well cs0815, let's take a look. According to your post, you tagged this with sql-server-2017, so I'll be basing this on that version. After reading through your link and this one, I was thinking there might be two options: Hack a new version of R into the R-Services module of SQL

Restore database in docker container

感情迁移 提交于 2020-12-29 06:10:32
问题 Getting an error below when restoring a AdventureWorks2017 database within a docker container. Running SQL Server 2019 CTP 2.0 (mcr.microsoft.com/mssql/server:vNext-CTP2.0-ubuntu) Both backup and target data volume are persisted. No problems creating new database. Checked the paths and they are correct. Do not have any problems when restoring using 2017-latest docker image. Anybody else have this issue with 2019-CTP2, workarounds? Msg 3634, Level 16, State 1, Line 7 The operating system

Restore database in docker container

不想你离开。 提交于 2020-12-29 06:03:42
问题 Getting an error below when restoring a AdventureWorks2017 database within a docker container. Running SQL Server 2019 CTP 2.0 (mcr.microsoft.com/mssql/server:vNext-CTP2.0-ubuntu) Both backup and target data volume are persisted. No problems creating new database. Checked the paths and they are correct. Do not have any problems when restoring using 2017-latest docker image. Anybody else have this issue with 2019-CTP2, workarounds? Msg 3634, Level 16, State 1, Line 7 The operating system