how to deploy SSIS package in vitual machine(azure) from local machine? - sql-server

I have created SSIS package and I can able to deploy in my local server as well using SQL Server 2012. but when I try to deploy the package in virtual machine (azure) server I am getting the error:
A network-related or instance-specific error occurred while
establishing a connection to SQL Server. The server was not found or
was not accessible. Verify that the instance name is correct and that
SQL Server is configured to allow remote connections. (provider: Named
Pipes Provider, error: 40 - Could not open a connection to SQL Server)
(Microsoft SQL Server, Error: 53)
Is there any way to do the deployment in virtual machine server?

I believe the only way is to deploy the packages manually. By this I mean copying and pasting to a shared folder on the server. Make sure connection managers are set up to use environment variables so that you can deploy between environments without having to change configuration settings

Related

SQL Server 2012 Express error: can not connect and start local db

I have installed SQL Server 2012 Express version where I have a local db instance separately. When I connect to SQL Server Express, it connected without problem, but when I try to connect to local db, I get the following error:
The attempt to attach to the database failed with the following information: A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server) (Microsoft SQL Server, Error:2)
The system cannot find the file specified.
When I open SQL Server Configuration Manager, the local db service is not running but it is stopped. When I start that it shows error
The request failed or the service did not respond in a timely fashion. Consult the event log or other applicable error logs for details
When I open its properties and select log on as built in with local system after clicking apply it shows error
The process terminated unexpectedly.[0x8007042b].

Can't access the database on windows server using dotnet core 2.1

I am getting this message when I try to connect the .net core app hosted on IIS, on amazon windows server, to a RDS SQL Server instance - also on amazon:
A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server)
But when try to connect to the RDS from my local pc using SQL Server I can login successfully, also tested this on my local IIS and I can access the remote db.

Microsoft SQL Server Management Studio - cannot create DB engine

I just installed Microsoft SQL Server Management Studio 17.2. I am trying to create a DB Engine on my local computer. My goal is to have a local demo database which I can create and modify tables.
I followed basic articles in the web saying that I only need to write my computer name as a server name and use windows authentication.
I am constantly getting this error:
TITLE: Connect to Server
Cannot connect to f.
ADDITIONAL INFORMATION:
A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server) (Microsoft SQL Server, Error: 53)
The network path was not found
So to repeat again - my goal is only to be able to create database with random data. I need it for demo purposes.

Application is unable to connect to database

I have a development-environment (dev) on which I have my .Net-application running which contains a RoundHouse-project to keep the database up to date. The database is running on the same machine. There are no problems with dev.
I also have a test environment with the same application and also a copy of the database. To keep the database on the test-environment up to date I run the RoundHouse-project from dev using the connectionstring to the database on the test-environment.
This always worked fine but for some reason when I now run RoundHouse with the connectionstring to the test database I get the following error: A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections.
Funny thing is that when I recreate the connectionstring using a .udl file using the same properties and credentials I am able to connect to the test-database.
Running the webapplication using that same connection results in the same error.
I have already checked all the settings in the SQL Server Configuration Manager and made sure TCP/IP and Named Pipes are enabled.
I can ping the server and can connect to it using Remote Desktop.

MVC4 app not connecting to SQL Server when run on local machine

I have an MVC4 app that was working before I started working on it today. As far as I know I did not make any changes to the connection strings.
I have a connection string set to use a SQL Server 2012 database.
When trying to run the app from my local machine I get this error:
A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified)
Description:
An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
SQLExpress database file auto-creation error:
The connection string specifies a local SQL Server Express instance using a database location within the application's App_Data directory. The provider attempted to automatically create the application services database because the provider determined that the database does not exist. The following configuration requirements are necessary to successfully check for existence of the application services database and automatically create the application services database:
Sql Server Express must be installed on the machine.
If I run the app from the server that it resides on I do not get this error. I can also access the SQL Server database from both my local machine and the server with SQL Server Management Studio and Visual Studios built in Server Explorer.

Resources