摘要: 1. SCOM MP,APM2. VMM, networking,storage2. IIS 工作原理3. 网络安全,加密解密, DNS4. Window安全,UAC,身份验证, 证书5. window文件共享 阅读全文
posted @ 2014-02-27 20:44 Running on the way 阅读(153) 评论(0) 推荐(0) 编辑
摘要: Visual Studio -> Build -> Publish [project name]Input the Target Location and set other configures, click PublishOn the IIS Manager, set a Application Pools1) Click Application Pools -> Add Application Pool2) Give a name of the pool, click Ok3) Click Advanced Settings4) Set the “Enable 32-B 阅读全文
posted @ 2012-02-27 13:30 Running on the way 阅读(227) 评论(0) 推荐(0) 编辑
摘要: 1. Learning SQL http://sql.learncodethehardway.org/ 阅读全文
posted @ 2012-02-08 14:30 Running on the way 阅读(103) 评论(0) 推荐(0) 编辑
摘要: 在SQL server中设置某列的值的类型为xml,以下为对该列中的值进行添加/删除XML节点, 修改节点间的字符等1. 创建数据库表TestProduct, 使列PROD_REPORT_X的类型为xmlcreate table TestProduct( PROD_ID_N integer not null, PROD_REPORT_X XML)go2. 添加一行insert into TestProductValues(1, '<productinfo> <name>SPF</name> <spec> <thickness> 阅读全文
posted @ 2012-02-06 23:04 Running on the way 阅读(192) 评论(0) 推荐(0) 编辑
摘要: DataContext dataContext = newDataContext(@"Data Source = .\instance1;Initial Catalog=master; Integrated Security= true");Table<Customer> customers = dataContext.GetTable<Customer>();IQueryable<string> query = customers.Where(n => n.Name.Contains(“a")) .OrderBy(n = 阅读全文
posted @ 2011-11-23 15:51 Running on the way 阅读(173) 评论(0) 推荐(0) 编辑