I created a SSIS package which is deployed in my centralized SQL Server. There is a stored procedure written in centralized Server which clean the data from tables. Now my SSIS package from centralized Server is connecting to multiple servers and I need to execute that stored procedure to clean the data.
I don't have any linked servers as I got connecting strings to multiple servers from centralized tables.
How can I execute the stored procedure and do my task in other servers?
Related
I have created a linked server in SQL server 2016 but I can only see tables and views under linked server databases (No stored procedures).
When I try to execute a procedure at the linked server using EXECUTE AT command I'm getting a
Could not find stored procedure"
error. But I can select tables using [ServerName].[DBName].dbo.[TableName].
Is there any missing configuration in order to get stored procedures?
At the moment I'm using SQL Server Management Studio and stored procedures to execute all my API calls. I'm wondering where could I get started if I wanted to transfer the schema and queries within my stored procedures to github. Thanks!
I've created a SSIS with Microsoft Visual Studio 2013 with the user "domain\Administrator". This SSIS has two connections: one to an AS400 db and another to an SQL database. This SSIS drops a table on the SQL database and then creates a tables and fills it with the information from an AS400 db.
In Visual Studio the SSIS works great and only takes a few moments to execute.
On SQL Server 2014 I also created a job that contains just one step with the SSIS package to execute. Create a Proxy account with this user "domain\Administrator" with the credentials and all and specify in the job step that I'll be executing this step with the proxy user created.
When executing the job on SQL Server it keeps working but it doesn't stop at all. It doesn't make any change to the table of the SQL Server database.
Please, could you help me with this issue?
How to connect to two databases at the same time in SQL Server?
i want to create a query from a local database db1 on some tables exist in an outside database db2. Im working with SQL Server.
The servers will need to be connected as a Linked Server in Server Objects, Linked Servers with a user that has access to both servers.
3 pieces to the puzzle:
MS Access Front end
SQL Server with stored procedures
Oracle server with data
I want to use MS Access to call a stored procedure in SQL Server, which takes data from the Oracle server to SQL Server.
Problem: when I call the stored procedure from the MS Access frontend, which is stored in SQL Server, it times out...
I can run other SQL Server stored procedures (that don't use the Oracle server) from Access, and that works without any problems (no issues with security etc.)
I can run the stored procedure in SQL Server using SSRS and it works fine (so I know the stored procedure as such works).
I use Windows authentication to access SQL Server from Access, however there is a different username and password from SQL Server to Oracle (which may be something to do with it?)
Because the stored procedure works on SQL Server, how can I get the MS Access frontend to simply run the stored procedure on SQL Server?
Hope you can help!