Content Explore
  • 《SQL Cookbook》

    Published : 2008-11-12 Categories : Software Tags : SQL DB2 MySQL Oracle PostgreSQL Database Cookbook O'Reilly MSSQL Read
    来自 O'Reilly 的Cookbook系列,很多人将其翻译成“锦囊妙计”系列。
    这本书应该有 100+ 妙计吧,分别提供 Oracle,MySQL,PostgreSQL,SQL Server,DB2 五种流行的解决方案,涉及到查询、插入、更新、删除、多表操作、排序、字符串处理、时间操作、报表、数据仓库运算、分层查询、常用窗口函数...
    才发现... 以前处理的一些个问题真龌龊
    !-_-
    O'R...
  • MySQL Query Browser, Official GUI tool to query MySQL database

    Published : 2008-06-02 Categories : Software Tags : MySQL Client GUI Query Linux
    MySQL Query Browser:
    Official GUI tool to query MySQL database
    MySQL Query Browser is a visual database query tool with a syntax
    highlighting SQL editor. The result tables of may be edited
    before chan...
  • MySQL Administrator, Official GUI tool for intuitive MySQL administration

    Published : 2008-06-02 Categories : Software Tags : MySQL Administrator Client GUI Linux
    MySQL Administrator:
    GUI tool for intuitive MySQL administration
    MySQL Administrator is a powerful visual administration console that
    enables you to easily administer your MySQL environment and gain
    s...
  • MySQL Navigator, MySQL DBMS GUI

    Published : 2008-06-02 Categories : Software Tags : MySQL Client GUI Linux
    MySQL Navigator is MySQL database server client program.
    You can enter query, get result set,
    edit script, run script,
    user add, user drop, user alter,
    get client & server infomation with MySQL Naviga...
  • 从字符串中删除不需要的字符[SQL]

    Published : 2007-12-21 Categories : Tech Tags : Replace Translate SQL DB2 MySQL SQL Server Oracle PostgreSQL
    O'Reilly , SQL Cookbook
    by Antbony Molinaro
    解决方案:replace(), translate()
    DB2
    select ename,
    replace(translate(ename, 'aaaa', 'AEIOU'), 'a', '') stripped1,
    sal,
    replace(cast(sal as char(4)), '0', '') str...
  • PostgreSQL 大象

    Published : 2007-11-22 Categories : Software Tags : PostgreSQL psql pgAdmin phpPgAdmin Database
    开源社区的家伙们喜欢用动物作为软件标识,MySQL是海豚,PostgreSQL是大象。
    大象比海豚“重”一些,MySQL快速,简单稳定,流行于web应用; PostgreSQL对待数据更严肃,在事务,存储,视图,触发,约束方面有更好的表现。
    获取软件 http://www.postgresql.org
    Debian/Ubuntu 下安装:
    sudo apt-get install postgres...
  • 基于mysql + php 的 utf-8 应用

    Published : 2007-03-14 Categories : Tech Tags : MySQL PHP UTF-8
    SmartKit 0.0.26实现了utf-8的应用,小结一下:
    utf-8是unicode的一种变长字符编码,由Ken Thompson于1992年创建。utf-8用1到6个字节编码unicode字符,这种编码致力于把全球的语言纳入一个统一的编码...
    详细信息参考: The Basics of UTF-8
    http://www.codeguru.com/cpp/misc/misc/multi-...
  • 如何导入MDF数据到 SQL server

    Published : 2006-12-09 Categories : Tech Tags : SQL Server mdf Import
    mdf文件如何导入到sql server数据库
    1.停掉 MSSQLSERVER, 将安装目录下C:\ProgramFile\MSS\MSSQL\Data\test.mdf 和 test_log.ldf文件移走
    2.重启 MSSQLSERVER, 删除PUBS
    3.将MDF文件移到安装目录下
    4.在SQL查询分析器肿执行exec sp_attach_db 'test', 'C:\......\te...
  • MySQL trigger

    Published : 2006-08-20 Categories : Tech Tags : MySQL Trigger
    1.MySQL 5.0.2及其以上版本开始支持trigger
    2.目前MySQL 5.0系列的最新版本是 5.0.24(MySQL 5.1系列还处于beta)
    3.新的MySQL手册中把触发器和事务处理,存储过程等项完全独立开,目前trigger只能触发SQL语句。这个SQL语句受一定的语法限制:禁止使用下述语句(对存储函数的的所有限制也适用于触发程序)
    [fieldset=限制]* CHECK ...
  • Apache 2.0.58 + PHP 5.1.4 + MySQL 5.0.21

    Published : 2006-05-30 Categories : Life Tags : Apache PHP MySQL Install Setting Windows
    重装 Windows XP ENG SP2
    接下来开始漫长的 IBM Software Installer ... 同时开始 wsus update 和 应用程序安装 ...
    一直以来大多用 PHP 4.* + MySQL 4.0.* ,今天升级,咱要也要跟上国际步伐!
    List:
    apache_2.0.58-win32-x86-no_ssl.msi
    http://www.apache.org
    m...