-
2013-12-28
本文介绍了SQL Server 2008数据集成功能,改进了分析服务,报告服务,以及Office集成方面的新特性…… 计划于2008年第一季度发布的SQL Server 2008不仅对原有性能进行了改进,还添加了许多新特性,比如新添了数据集成功能,改进了分析服务,报告服务,以及Office集成等等。 SQ…
http://www.wfuyu.com/sqlserver/8943.html
-
2013-10-23
现象:mysql 服务无法启动,系统发生1058错误 我的mysql原安装好的,后来用360安全卫士把服务禁掉,然后用mysqld-nt standalone启动,现在我想把服务重 新启动,却无法启动. 解决方法: ◆1、运行 D:mysqlin>mysqld-nt -remove Service successfully removed. D:mysqlin>mysqld-nt -install Ser…
http://www.wfuyu.com/mySql/8940.html
-
2014-02-22
access 只能在 windows 下使用这一致命的特性让我深恶痛绝痛下决心要把 access 转换到 mysql但是从网上找了很多文章都没有直接转换的东西听说可以利用odbc转就尝试了一下 先安装好mysqlmyodbc建一个mysql的空数据库在odbc管理中加上这个数据库指定名称 用access打开数据库然后选导…
http://www.wfuyu.com/access/8938.html
-
2014-03-29
比如现在有一人员表 (表名:peosons) 若想将姓名、身份证号、住址这三个字段完全相同的记录查询出来 select p1.* from persons p1,persons p2 where p1.id<>p2.id and p1.cardid = p2.cardid and p1.pname = p2.pname and p1.address = p2.address 可以实现上述效果. 几个删除重复记录的S…
http://www.wfuyu.com/sqlserver/8930.html
-
2013-12-27
以Access 为例 查询> 新建> 设计视图> 视图> SQL视图 看到没哈哈在里面敲SQL吧哈哈
http://www.wfuyu.com/access/8921.html
-
2014-06-10
MySQL 4.1的字符集支持(Character Set Support)有两个方面字符集(Character set)和排序方式(Collation)。 //标题:MySQL字符集简单讲解(个人总结) //作者:dx_andy //时间:2007.8.27 晚 //测试环境:win32 MySQL 5.0.45 //原因:自己的MySQL出现乱码问题 MySQL自4.1版本…
http://www.wfuyu.com/mySql/8919.html
-
2013-10-05
安装好freetds之后 添加库的环境变量 $ export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/freetds/lib/ 之后开vi #include <stdio.h> #include <string.h> #include <stdio.h> #include <unistd.h> #include </usr/local/freetds/include/sybfront.h> #include …
http://www.wfuyu.com/server/8914.html
-
2014-02-02
网(LieHuo.Net)教程 使用MySQL,安全问题不能不注意。以下是MySQL提示的23个注意事项:
1.如果客户端和服务器端的连接需要跨越并通过不可信任的网络,那么就需要使用SSH隧道来加密该连接的通信。
2.用set password语句来修改用户的密码,三个步骤,先“mysql -u root”登陆数…
http://www.wfuyu.com/mySql/8908.html
-
2013-11-01
查找未使用的非聚集索引和未使用的表.
DMV:sys.dm_db_index_usage_stats The counters are initialized to empty whenever the SQL Server (MSSQLSERVER) service is started. In addition, whenever a database is detached or is shut down (for example, because AUTO_CLOSE is set to ON), all…
http://www.wfuyu.com/sqlserver/8905.html
-
2014-02-26
MySQL Connector/ODBC 2.50 (MyODBC 2.50)连接方式 本地数据库连接 以下是语法格式: Driver={mySQL};Server=localhost;Option=16834;Database=myDataBase; 远程数据连接 以下是语法格式: Driver={mySQL};Server=myServerAddress;Option=131072;Stmt=;Database=myDataBase; User=myUsername;Password…
http://www.wfuyu.com/mySql/8894.html