我创建了一个每五分钟执行一次SSIS包的Windows服务。它运作得很好,但有些东西正在绊倒它。
每周服务器重新启动,重启后,服务停止工作。 SSIS包开始/结束执行的事件仍然出现在事件查看器中,但包不能正常工作。当我手动启动/停止服务时,所有操作都会正常工作。
我是否遗漏了我应该使用Pacakge
做的事情?
我使用Web服务获取SSIS包的位置。我从下面的代码中剥离了大部分内容,但是留下了足够的维护我的服务结构。
以下是我的代码的主旨:
namespace MyService
{
partial class MyService : ServiceBase
{
private Timer timer;
private Package pkg;
bool executing;
public MyService()
{
InitializeComponent();
}
protected override void OnStart(string[] args)
{
executing = false;
TimerCallback callback = new TimerCallback(Init);
int period = 1000 * 60; //attempt to initialize every minute.
timer = new Timer(callback, null, 0, period);
}
private void Init(object state)
{
try
{
//Get `timeIntervalMinutes` from Parameters table
string mySQLStatement = "...";
DataSet ds = mySQLQuery(...);
int timeIntervalMinutes = Convert.ToInt32(ds.Tables["timeIntervalMinutes"].Rows[0]["Value"]);
//Get `path` from Parameters table
string mySQLStatement = "...";
DataSet ds = mySQLQuery(...);
string path = Convert.ToString(ds.Tables["path"].Rows[0]["Value"]);
//Get `path` from Parameters table
string mySQLStatement = "...";
DataSet ds = mySQLQuery(...);
string server = Convert.ToString(ds.Tables["server"].Rows[0]["Value"]);
//Load the SSIS Package
Application app = new Application();
pkg = app.LoadFromDtsServer(path, server, null);
//If this line is reached, a connection to MyWS has been made, so switch the timer to run the SSIS package
timer.Dispose();
TimerCallback callback = new TimerCallback(OnTimedEvent);
int period = 1000 * 60 * timeIntervalMinutes;
timer = new Timer(callback, null, 0, period);
}
catch (Exception e)
{
return;
}
}
private void OnTimedEvent(object state)
{
if (!executing)
{
executing = true;
DTSExecResult pkgResults = pkg.Execute();
executing = false;
}
}
protected override void OnStop()
{
}
//<MyWS is here>
}
}
感谢您的帮助!
答案 0 :(得分:0)
您的服务或流程可能依赖于其他服务 - 比如MSDTC。如果此服务在启动后没有准备好,您可能会得到不可预测的结果。要么延迟服务的启动,要么找出依赖关系,并设置在服务属性
中