Microsoft.SqlServer.SqlManagementObjects 160.2001141.0-preview

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
This is a prerelease version of Microsoft.SqlServer.SqlManagementObjects.
There is a newer version of this package available.
See the version list below for details.

Requires NuGet 2.12 or higher.

dotnet add package Microsoft.SqlServer.SqlManagementObjects --version 160.2001141.0-preview
NuGet\Install-Package Microsoft.SqlServer.SqlManagementObjects -Version 160.2001141.0-preview
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Microsoft.SqlServer.SqlManagementObjects" Version="160.2001141.0-preview" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Microsoft.SqlServer.SqlManagementObjects --version 160.2001141.0-preview
#r "nuget: Microsoft.SqlServer.SqlManagementObjects, 160.2001141.0-preview"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Microsoft.SqlServer.SqlManagementObjects as a Cake Addin
#addin nuget:?package=Microsoft.SqlServer.SqlManagementObjects&version=160.2001141.0-preview&prerelease

// Install Microsoft.SqlServer.SqlManagementObjects as a Cake Tool
#tool nuget:?package=Microsoft.SqlServer.SqlManagementObjects&version=160.2001141.0-preview&prerelease

Introduction

This file will log substantial changes made to SMO between public releases to nuget.org.

160.1911221.0-preview

  • Increase major version from 15 to 16
  • Remove dependency on native batch parser from NetFx components
  • Change NetStandard client driver to Microsoft.Data.SqlClient
  • Add distribution property for DW materialized views
  • Script FILLFACTOR for indexes on Azure SQL Database

160.201141.0-preview

  • Remove unneeded "using" TSQL statements from Database.CheckTables method implementations

  • Enable ColumnMasterKey properties Signature and AllowEnclaveComputations for Azure SQL DB

  • Fix Database.EncryptionEnabled and Database.DatabaseEncryptionKey behavior during Database.Alter(). Now, this code will correctly create a new key using the server certificate named MyCertificate:

        db.EncryptionEnabled = true;
        db.DatabaseEncryptionKey.EncryptorName = "MyCertificate";
        db.DatabaseEncryptionKey.EncryptionAlgorithm = DatabaseEncryptionAlgorithm.Aes256;
        db.DatabaseEncryptionKey.EncryptionType = DatabaseEncryptionType.ServerCertificate;
        db.Alter()
    
  • Fixed the "like" and "contains" URN filter functions to work with parameters containing single quotes. These operators can be used to optimally initialize collections:

    // populate the collection with databases that have Name starting with "RDA"
    var server = Server(new ServerConnection(sqlConnection));
    server.Databases.ClearAndInitialize("[like(@Name, 'RDA%')]", new string[] { });
    
  • Make Table.Location property optional for creating or scripting external tables.

  • Enable scripting of ANSI_PADDING settings for Azure SQL Database tables.

  • Remove obsolete types ServerActiveDirectory and DatabaseActiveDirectory

  • Added BLOB_STORAGE scripting support for external data sources

  • Fixed error scripting external tables for Azure SQL Database

  • Replace Microsoft.SqlServer.Management.SqlParser.dll with a dependency to its Nuget package

160.2001141.0

  • First non-preview 160 release, aligned with SQL Server Management Studio 18.5
  • Script extended properties for Azure SQL Database objects
  • Enable Jupyter Notebook output for SqlScriptPublishModel. SSMS 18.5 can output a Notebook for Azure Data Studio in Generate Scripts now.
  • Fix issue where Table.EnableAllIndexes(Recreate) did nothing
  • Fix Database.EnumObjectPermissions usage in NetStandard binaries
  • Remove FORCE ORDER hint from table enumeration that was causing major performance issues
  • Fix Transfer with PrefetchAllObjects == false for pre-Sql 2014 versions so it doesn't throw an exception
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (94)

Showing the top 5 NuGet packages that depend on Microsoft.SqlServer.SqlManagementObjects:

Package Downloads
Catalyst.DataProcessing.Engine.SqlServer

Package for developing DOS engine plugins based on the SQL Server system support

Naos.Deployment.Core

Created on 2023-05-05 19:43

Naos.Deployment.Console

Created on 2023-05-05 19:43

dbup-sqlserver-scripting

Extends DbUp to provide SQL Server object definition scripting when running migrations from Visual Studio. When a database object changes during a migration, its definition will be saved in the project.

Naos.Database.MessageBus.Handler

Created on 2023-05-05 19:43

GitHub repositories (11)

Showing the top 5 popular GitHub repositories that depend on Microsoft.SqlServer.SqlManagementObjects:

Repository Stars
microsoft/fhir-server
A service that implements the FHIR standard
dotnet/SqlClient
Microsoft.Data.SqlClient provides database connectivity to SQL Server for .NET applications.
MoonStorm/FastCrud
fast & light .NET ORM for strongly typed people
microsoft/sqltoolsservice
SQL Tools API service that provides SQL Server data management capabilities.
rr-wfm/MSBuild.Sdk.SqlProj
An MSBuild SDK that provides similar functionality to SQL Server Data Tools (.sqlproj) projects
Version Downloads Last updated
171.30.0 47,022 3/21/2024
170.23.0 208,089 1/10/2024
170.21.0 87,240 9/29/2023
170.18.0 631,985 5/31/2023
170.13.0 620,087 2/1/2023
170.12.0 43,802 1/27/2023
170.11.0 183,224 1/5/2023
170.8.0 469,644 10/17/2022
170.7.0-preview 29,053 8/18/2022
170.5.0-preview 19,878 8/17/2022
161.48050.0 7,649 11/28/2023
161.48044.0 4,427 5/31/2023
161.48036.0 20,748 1/30/2023
161.48028.0 5,121 12/21/2022
161.47027.0 376,162 8/11/2022
161.47023.0-preview 2,303 6/15/2022
161.47021.0 374,814 5/25/2022
161.47008.0 488,131 3/7/2022
161.46521.71 864,997 10/6/2021
161.46437.65 498,027 7/28/2021
161.46367.54 509,836 4/22/2021
161.46041.41 2,280,283 1/2/2021
161.44091.28 469,906 10/20/2020
161.42121.15-msdata 15,356 8/17/2020
161.41981.14-msdata 1,914 8/3/2020
161.41011.9 526,138 7/22/2020
161.40241.8-msdata 15,980 6/29/2020
160.2004021.0 865,361 4/7/2020
160.2001141.0-preview 4,468 1/15/2020
160.1911221.0-preview 70,137 11/23/2019
150.18208.0 1,145,491 11/6/2019
150.18208.0-preview 1,599 11/6/2019
150.18178.0 245,265 9/27/2019
150.18178.0-preview 1,579 9/27/2019
150.18149.0-preview 4,906 8/14/2019
150.18147.0 372,685 7/30/2019
150.18147.0-preview 1,578 7/30/2019
150.18131.0 209,034 6/14/2019
150.18131.0-preview 1,695 6/13/2019
150.18118.0 321,066 4/24/2019
150.18118.0-preview 1,645 4/24/2019
150.18097.0-preview 29,976 3/22/2019
150.18096.0-preview 2,136 3/8/2019
150.18092.0-preview 1,742 3/4/2019
150.18085.0-preview 2,685 2/15/2019
150.18068.0-preview 4,410 11/16/2018
150.18040.0-preview 3,917 9/24/2018
150.18022.0-preview 2,558 8/22/2018
140.17283.0 1,493,830 8/15/2018
140.17283.0-preview 2,042 8/15/2018
140.17282.0-preview 2,021 8/7/2018
140.17279.0 207,652 7/9/2018
140.17267.0-preview 5,121 5/21/2018
140.17265.0 124,148 5/15/2018
140.17235.0 99,851 3/29/2018
140.17224.0 285,745 2/22/2018
140.17218.0 154,825 1/4/2018
140.17199.0 345,084 10/6/2017
140.17177.0 124,603 8/7/2017