Python脚本无法在任务计划程序上运行

时间:2019-01-28 11:35:24

标签: python sql taskscheduler

我正在尝试使python脚本在任务计划程序上自动运行。

我尝试了来自Google搜索的多个修复程序,但都没有成功。

我当前的操作设置如下:

Task Scheduler Configuration

我尝试了几种不同的操作组合,包括将脚本名称放入参数等。这些都没有用。

然后,我向脚本中添加了一个代码,以查看其到达的距离:

import logging, os

logpath = os.path.dirname(__file__)

logging.basicConfig(filename= logpath +'\\' +'logfile.log',level=logging.DEBUG,format='%(asctime)s %(message)s', datefmt='%m/%d/%Y %I:%M:%S %p')

logging.info("The script was here")

该脚本工作直到它必须连接到SQL Server:

cnxn = pyodbc.connect("Driver={SQL Server Native Client 11.0};" "Server=dmadb;" "Database=db_DMA_MIDW_INS;" "Trusted_Connection=yes;")

有什么想法吗?

谢谢!

0 个答案:

没有答案