摘要: SSIS用来跨数据库中间进行数据同步,比如 Oracle=》MySQL 或者 SQLserver =》 MySQL 这里我们只有Oracle,所以测算 Oracle=》Oracle 首先确定在 Oracle配置文件 tnsnames.ora 里面有你需要的DB配置,比如 TTT 是DB 别名,XXX 阅读全文
posted @ 2021-11-30 18:55 zq爱生活爱代码 阅读(840) 评论(0) 推荐(0) 编辑
摘要: 当我们手动执行 dtsx时没错,但是放到SQLserver JOB里面执行却报错 该异常可能是权限之类问题导致的 解决办法是 设定 Project的安全级别为 EncryptSensitiveWithPassword ,同时 dtsx的 安全级别要和 project一样 设定 dtsx安全级别 ,双 阅读全文
posted @ 2021-11-30 18:52 zq爱生活爱代码 阅读(397) 评论(0) 推荐(0) 编辑
摘要: Datetimebox 修改默认格式,以及初始值 <span style="margin-right:5px;">日期</span> <input id="dtStart" type="text"> $('#dtStart').datetimebox({ required: true, showSe 阅读全文
posted @ 2021-11-30 09:19 zq爱生活爱代码 阅读(58) 评论(0) 推荐(0) 编辑
摘要: <body class="easyui-layout" style="margin:10px;"> <div id="content" region="center" title="查詢結果" style="padding:1px;width:100%;height:100%;"> <div id= 阅读全文
posted @ 2021-11-30 09:19 zq爱生活爱代码 阅读(137) 评论(0) 推荐(0) 编辑
摘要: var pager = $('#details').datagrid().datagrid('getPager'); pager.pagination({ buttons: [ { iconCls: 'icon-save', handler: function () { alert('22'); } 阅读全文
posted @ 2021-11-30 09:19 zq爱生活爱代码 阅读(50) 评论(0) 推荐(0) 编辑
摘要: combobox绑定数据以及设定默认值 <input id="factory" name="factory" style="width:80%;"> $('#factory').combobox({ url: '../SpeedCountBYS/getFactory', valueField: 't 阅读全文
posted @ 2021-11-30 09:18 zq爱生活爱代码 阅读(832) 评论(0) 推荐(0) 编辑
摘要: 显示数值以及对数值进行显示转换 折线的颜色 series: [ { name: '排配總數', type: 'line', yAxisIndex: 1, data: array3, itemStyle: { normal: { label: { formatter: function (val) { 阅读全文
posted @ 2021-11-30 09:16 zq爱生活爱代码 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 预定义特性(Attribute) .Net 框架提供了三种预定义特性: AttributeUsage Conditional Obsolete AttributeUsage 预定义特性 AttributeUsage 描述了如何使用一个自定义特性类。它规定了特性可应用到的项目的类型。 规定该特性的语法 阅读全文
posted @ 2021-11-30 09:14 zq爱生活爱代码 阅读(56) 评论(0) 推荐(0) 编辑