
技术大全
-
FileZilla读取目录列表失败的解决办法2014-04-24FileZilla是一款非常优秀的且免费的FTP软件,包含服务器端和客户端。 但最近在连接某服务器时发现FileZilla出现“读取目录列表失败”的错误提示,无法正常连接该服务器。 但是使用CuteFtp没有问题。 百度一...
-
Select Top X Items Of All Categories2014-04-21SELECT M.Id,M.CategoryId,M.Title,M.Short,M.ViewCount,M.DateCreated,M.Name AS CategoryName,M.PicUrl FROM ( SELECT ...
-
获取字段首字母2014-04-20Create function [dbo].[f_GetPy](@str nvarchar(4000)) returns nvarchar(4000) as begin declare @strlen int,@re nvarchar(4000) SET @str...
-
SQL-将表中一个字段的列转化成一个字符串2014-04-19declare @str nvarchar(max) set @str=” select @str=@str+isnull(name+’,',”) from CriminalUser WHERE criminal_id=13 ...
-
数据库自动备份的条件2014-04-17需要安装SQL Server Integration Service,同时确保登录用户账户是正确的。
-
今天下午cn-asp.net服务器出现这样的错误信息: Error Summary: HTTP Error 503.2 – Service Unavailable The serverRuntime@appConcurre...
-
HTTP错误汇总(404、302、200……)2014-04-15HTTP 400 - 请求无效 HTTP 401.1 - 未授权:登录失败 HTTP 401.2 - 未授权:服务器配置问题导致登录失败 HTTP 401.3 - ACL 禁止访问资源 HTTP 401.4 -...
-
简单的谷歌地图 ( Google Maps )生成器 ( API V3 )2014-04-15http://www.nap.st/google_map_generator/?lang=zh-CN
-
FileZilla 425 Can’t open data connection2014-04-14WIN 2008 SERVER+FileZilla FTP Server,FTP端口:2013 防火墙中已允许FTP Server及端口访问,设置好后,FlashFxp客户端,被动模式,能连接,但是出错:425 Can’t open data c...
-
Caching is a very easy solution to many performance related issues on almost any website. There are many different ways to use se...
-
CREATE NONCLUSTERED INDEX [IX_name] ON [dbo].[Nop_Product] ( [Name] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORE...
-
站点加载速度测试网站2014-04-11http://tools.pingdom.com/fpt/
-
页面缓存方式2014-04-10I added the following code into Web.config. This allows each of the specified resources to be cached at the client for maximum 8 ...
-
数据库连接池问题 Max Pool Size2014-04-09超时时间已到。超时时间已到,但是尚未从池中获取连接。出现这种情况可能是因为所有池连接均在使用,并且达到了最大池大小。 说明: 执行当前 Web 请求期间,出现未处理的异常。请检查堆栈跟踪信息,以了解有关该错误以及代码中导致错误的出处的详细信息。 ...
-
数据库LOG文件压缩的语句2014-04-08Use DBNAME GO Alter Database DBNAMESet Recovery Simple GO Alter Database DBNAMESet Recovery Full GO...
-
查询数据库最近Schema的变化的语句2014-04-07如下,很实用: select * from sys.objects order by modify_date desc