摘要:
function ImportStatistics(val, pros) { top.$.jBox.tip("导入已完成,正在统计整理导入的数据...", 'loading'); top.$.ajax({ type: "post", dataType: "json", data: { "val": val, "pros": pros }, url: "admin/ajax.aspx?oper=ImportStatistics... 阅读全文
摘要:
.wrapper { width: 726px; float: left; }#jiao_dian { width: 980px; *height: 292px; margin-top: 10px; margin-right: auto; margin-bottom: 0; margin-left:... 阅读全文
摘要:
student表,id,name,addressid上建立聚集索引,Name建索引,address无索引。1. 【Table Scan】:遍历整个表,查找所有匹配的记录行。这个操作将会一行一行的检查,当然,效率也是最差的。以无索引字段为条件,按存放顺序一个个查,同4where address='12... 阅读全文
摘要:
1、对外键建立索引,大数据量时性能提高明显(建索引可以直接【Merge Join】,否则还须在查询时生成HASH表作【Hash Join】)2、尽量少使用inner join,使用left join是更好的选择3、对where 条件建立索引,where 条件中列顺序与索引顺序一致,使用前置的模糊查询... 阅读全文
摘要:
App_global.asax.sr8_llzl.dll' -- '拒绝访问。设置c:windows\temp 目录访问权限 temp--> 属性-->安全-- > 添加IIS_IUSRS -->并赋予其权限为 读 和 写--> 确定Message: 无法将类型为“MSScriptControl.ScriptControlClass”的 COM 对象强制转换为接口类型“MSScriptControl.IScriptControl”。此操作失败的原因是对 IID 为“{0E59F1D3-1FBE-11D0-8FF2-00A0D10038BC}”的接口 阅读全文
摘要:
一,文件夹A下的文件夹下的文件,移到文件夹A下。二,经常上贴吧什么的,有些图贴,会直接网页全部保存为,结果是一个html文件,和引用资源的文件夹,文件夹下有很多无用的文件,写了个方法,把图片另存为,其余都删掉。代码。namespace 文件夹内容放到上级{ public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventA... 阅读全文
摘要:
select P_ID from DE_Payment B whereP_Time=(select max(A.P_Time) from DE_Payment Awhere A.PA_ID=B.PA_ID) 阅读全文