The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
3answers
72 views

SQL agent job step's connection managers

Is there any way with T-SQL to list the connection managers that are used in an SQL Agent Job step?
2
votes
2answers
231 views

How to find when last reindexing happened in sql server?

I have set 'job' for re-indexing, I want to know when the last re-indexing happened in datetime.
2
votes
0answers
65 views

Configuring SQL Server Job agent

I am trying to configure the SQL Server Job Agent using the following scripts USE [msdb] GO CREATE USER [mydbuser] FOR LOGIN [mydbuser] GO EXEC sp_addrolemember N'db_datareader', N'mydbuser' GO EXEC ...
1
vote
0answers
210 views

Login failure when running a SSIS package from a SQL Server job

I have a SSIS package that migrates data from a Sybase database to SQL Server. The connection to the source database has been made through an ODBC connection. If I run the package directly on my ...