摘要:
1:查看sql server代理中作业的运行状况的脚本 或者(查看语句的执行计划以及执行时间) 或者(可以查看作业当前的运行状态) SELECT[job].[name] AS '作业名称', CASE [jobh].[run_status]WHEN 0 THEN '失败'WHEN 1 THEN '成 阅读全文
摘要:
From:http://interactivepython.org/courselib/static/pythonds/Introduction/ExceptionHandling.html Exception Handling There are two types of errors that 阅读全文
摘要:
From:http://interactivepython.org/courselib/static/pythonds/Introduction/ControlStructures.html Control Structures As we noted earlier, algorithms req 阅读全文
摘要:
from:http://interactivepython.org/courselib/static/pythonds/Introduction/InputandOutput.html Input and Output Input Python’s input function takes a si 阅读全文
摘要:
From: http://interactivepython.org/courselib/static/pythonds/Introduction/GettingStartedwithData.html Built-in Collection Data Types Python has a numb 阅读全文
摘要:
From:http://interactivepython.org/courselib/static/pythonds/Introduction/GettingStartedwithData.html Python has two main built-in numeric classes that 阅读全文
摘要:
User-defined functions from:https://campus.datacamp.com/courses/python-data-science-toolbox-part-1/writing-your-own-functions?ex=1 Strings in Python S 阅读全文