Extracting user-defined assemblies
In this recipe, we will extract user-defined assemblies and resave these back to the filesystem as DLLs.
Getting ready
We can use the SampleDB
database that we used in the previous recipe, or you can substitute this with any database that is accessible to you that has some user-defined assemblies.
How to do it...
These are the steps required to extract user-defined assemblies:
- Open PowerShell ISE as an administrator.
- Import the
SQLPS
module as follows:#import SQL Server module Import-Module SQLPS -DisableNameChecking
- First, we will create a bcp format file. Add the following script and run it:
$VerbosePreference = "Continue" $instanceName = "localhost" $timestamp = Get-Date -format "yyyy-MMM-dd-hhmmtt" $emptyBLOB = "SampleDB.dbo.EmptyBLOB" ...
Get SQL Server 2014 with PowerShell v5 Cookbook now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.