摘要:
如何从SQL Server 中取得字段说明SQL Server 2000你可以在企业管理器中增加字段说明,也可以使用下面的代码:EXECsp_addextendedproperty'MS_Description','somedescription','user',dbo,'table',table_name,'column',column_name现在,你就可以得到通过下面的代码得到字段说明:SE... 阅读全文
摘要:
msdn中的说明,主要阐述了sqlserver 2000与2005下的分区表的组织结构,查询性能,等方面的详细介绍http://msdn.microsoft.com/zh-cn/library/ms345146(SQL.90).aspx 阅读全文
摘要:
Analysis Services 2005中数据完整性处理数据完整性在关系数据库应用的比较广泛,特别是在OLTP系统中,但在ETL和加载数据到数据仓库(DW)时,缺乏提供数据完整性的通常处理,然在SSAS中,数据库管理员可以非常方便的处理这些问题 在SSAS中,可以通过空值处理和错误配置来设置数据完整性处理,其中空值处理和错误配置都和未知成员有关下面就未知成员、空处理、错误配置的一些基本概念分别... 阅读全文
摘要:
http://www.microsoft.com/china/technet/prodtechnol/sql/2005/httpasws.mspx 阅读全文
摘要:
One of the many banes in my life is waiting for IIS to reset. When developing certain components, like a webpart or webcontrol, I oftenuse apost-build event togac the assembly and issue an iisreset. T... 阅读全文
摘要:
<html xmlns="http://www.w3.org/1999/xhtml" ><head runat="server"> <title>test</title> <script type="text/javascript" src="jquery/jquery-1.2.6.js" ></script> <sty... 阅读全文
摘要:
document.forms[0].onsubmit=function () {if (window.document.readyState != null &&window.document.readyState != 'complete'){ alert("正在处理,请稍候!");return false;}else{return true;}} 阅读全文
摘要:
使用mysqlclient查询记录,报Unable to convert MySQL date/time value to System.DateTimemysql的date/time类型通过ado.net查询得到的是一个字符串,而不是日期类型,需要手动用程序转换,不过你可以设置连接字符串"Allow Zero Datetime=true",得到的就是日期型,不用转换了 阅读全文
摘要:
实现在表单内按回车键,执行指定按钮的事件<script language="javascript"> function WebForm_FireDefaultButton(event, target) { if (event.keyCode == 13 && !(event.srcElement && (event.srcElement.tagName.... 阅读全文