Failed to deploy project - SSIS Error Number: 27203 - sql-server

I have created an SSIS project in Visual Studio 2019 containing multiple packages that upload Avro files to a AzureStorage connection type.
The project is targeting SQL2017, I have Azure Feature Pack installed on my machine version 2017 64bit.
This works ok on my machine but I am getting an error trying to deploy to SQL Server2017 to SSISDB Catalog:
Failed to deploy project. For more information, query the operation_messages view for the operation identifier '10'. (.Net SqlClient Data Provider)
Server Name: Datastore1
Error Number: 27203
Severity: 16
State: 1
Procedure: SSISDB.catalog.deploy_project
Line Number: 139
On the SQL server I did:
SELECT * FROM SSISDB.catalog.operation_messages
And could see this message:
Failed to deploy the project. Fix the problems and try again later.:Unable to create the type with the name 'AzureStorage'.

Installing Azure Feature Pack For SQL2017 has resolved my issue.

Related

liquibase.exception.DatabaseException: Connection could not be created with driver com.microsoft.sqlserver.jdbc.SQLServerDriver

I am developing my application in SpringBoot which uses liquibase to update my ms-sql database.
This worked fine till now, but now I am trying to update everything to the latest version:
I changed java from 15 to 17.
I also updated liquibase-maven-plugin to 4.5.0.
mssql-jdbc dependency for liquibase is: mssql-jdbc:9.4.0.jre16
The new mssql-jdbc_auth-9.4.0.x64.dll file is moved to this folder:
c:\apps\Java\x64\jdk-17\bin\ (this is my java location).
My IntelliJ is set to use java 17 (JAVA_HOME is also configured to
the 17 path)
the version of Microsoft SQL Server Express (64-bit): 11.0.2100.60
So I think I did everything, but still, when I try to run my maven, I get the following error:
[ERROR] Failed to execute goal org.liquibase:liquibase-maven-plugin:4.5.0:update (myDatabase) on project my-project:
[ERROR] Error setting up or running Liquibase:
[ERROR] liquibase.exception.DatabaseException: liquibase.exception.DatabaseException: liquibase.exception.DatabaseException: Connection could not be created to jdbc:sqlserver://localhost:1433;databaseName=My_Database;integratedSecurity=true with driver com.microsoft.sqlserver.jdbc.SQLServerDriver. The driver could not establish a secure connection to SQL Server by using Secure Sockets Layer (SSL) encryption. Error: "The server selected protocol version TLS10 is not accepted by client preferences [TLS13, TLS12]"

Could not load file or assembly 'Microsoft.AnalysisServices.AdomdClientUI'

SQL Server version: SQL Server 2016 SP2 GDR 2019 (KB4505220) -
13.0.5101.9 (x64) Issue: Analysis Services Processing Task: Error: Could not load file or assembly
'Microsoft.AnalysisServices.AdomdClientUI, Version=13.0.0.0,
Culture=neutral, PublicKey Token=89845dcd8080cc91' or one of its
dependencies. The system cannot find the file specified.
Actions Made so far:
Follow the option 3 assembly binding from this site. Got this error after: Analysis Service Processing Task: Error: Method not found: 'Boolean Microsoft.analysisServices.AdomdClientUI.AdomdConnectionStringBuilder.IsAzure()'
Install CU2 but during install it states that current SP2-GDR is latest
Any idea on the fix?
We were able to fix the missing dll file when patching to SQL 2016 SP2 version 13.0.5622.0 (CU11 + Security Update) Release Date Feb 25, 2020.

Install SQL SERVER Machine Learning Services (In-Database) Failed

I followed the SQL Server 2017 Setup wizard to install the Python Feature but completed with failures:
The database engine services has installed successful but Python and Machine Learning Services failed.
Below is the error detail:
>Error installing Machine Learning Services (In-Database)
>An error occurred while creating local user account SQLEXPRESS00.
>Error code: 0x85700005
And then I check the Summary log it say:
>Detailed results:
Feature: Python
Status: Failed
Reason for failure: An error occurred for a dependency of the feature causing the setup process for the feature to fail.
Next Step: Use the following information to resolve the error, uninstall this feature, and then run the setup process again.
Component name: Machine Learning Services (In-Database)
Component error code: 0x85700005
Dose anyone have a solution?
My SQL Server 2017 version was 14.0.1000.169(RTM), I just update it to 14.0.3238.1 by install "Latest Cumulative Update for SQL Server 2017" and finally fix that issue~
Below is the link:
https://support.microsoft.com/en-us/help/4038634

Trying to install SQL Server 2012 on win 7. Its a 64-bit machine. I get the following error

TITLE: Microsoft SQL Server 2012 Setup
The following error has occurred:
An error occurred during the installation of assembly 'Microsoft.VC80.ATL, version="8.0.50727.6229", publicKeyToken="1fc8b3b9a1e18e3b", processorArchitecture="x86",type="win32"'.
Please refer to Help and Support for more information.
HRESULT: 0x80070422.
The problem was with Windows update.The "Windows Module installer" service was disabled once i enabled it and cleared up all the updates in C:\Windows\software distribution folder, it started updating and when i install the sqlserver-2012 i dint get that error anymore.
This is where i found about the service.
https://answers.microsoft.com/en-us/windows/forum/all/windows-update-error-80070422/372f6482-ff7c-4f92-858c-228b637bfae4

Could not load package "\File System\ because of error 0x80070002. Description: Unable to find the specified file. Source: MsDtsSrvr

We are building a new environment having SQL server 2014 and migrating our SSIS job to the new environment.
We have a SSIS job named as ABCD (assume)
The job is deployed as file system deployment:
C:\Program Files\Microsoft SQL Server\90\DTS\Packages\ABCD\ABCD.dtsx
While executing, It gives an error as
Could not load package "\File System\ABCD\ABCD because of error 0x80070002. Description: Unable to find the specified file. Source: MsDtsSrvr
Please suggest how to solve this issue, Also as the environment is controlled I am unable to try changes

Resources