自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

爱飞的蒲公英

勤学如春起之苗,不见其增,日有所长;辍学如磨刀之石,不见其损,日有所亏。

  • 博客(12)
  • 资源 (25)
  • 收藏
  • 关注

转载 The Sociolinguistic Variable

1 Labovian MethodologyThe sociolinguistic variable is, Fasold (1990) says, a set of alternative ways of saying the same thing, although the alternatives, or variants, have social significance. Mor

2012-12-31 09:22:55 894

转载 Variation (linguistics)

Variation (linguistics)From Wikipedia, the free encyclopediaIn sociolinguistics, variation in language use among speakers or groups of speakers is a principal concern. Such variation m

2012-12-31 00:17:39 1551

转载 postgresql常用函数汇总

函数:string || string 说明:String concatenation 字符串连接操作例子:'Post' || 'greSQL' = PostgreSQL 函数:string || non-string or non-string || string说明:String concatenation with one non-string input 字符串

2012-12-24 17:43:55 1091

原创 cmd for 数字枚举

for /f "tokens=1,2* delims=." %%a in (list\table.lst) do ( for /l %%n in (1 1 12) do if %%n LEQ 9 ( echo %%a.%%b110%%n ) else ( echo %%a.%%b11%%n ) )

2012-12-24 17:37:07 727

转载 Apparent-time hypothesis

In sociolinguistics, the apparent-time hypothesis(显象时间假设) states that age-stratified(年龄分层) variation in a linguistic form is often indicative of a change in progress. That is, if in a survey of a po

2012-12-24 01:43:30 1238

原创 从Greenplum中查询用户名

SELECT u.usename AS "User name", u.usesysid AS "User ID", CASE WHEN u.usesuper AND u.usecreatedb THEN CAST('superuser, createdatabase' AS pg_catalog.text) WHEN u.usesuper THEN CAST('superu

2012-12-21 11:11:18 4233

转载 postgres function: COALESCE

COALESCECOALESCE(value [, ...])The COALESCE function returns the first of its arguments that is not null. Null is returned only if all arguments are null. It is often used to substitute a defa

2012-12-20 17:30:28 2789

原创 GP中查询表和视图清单,视图的字段及其类型

查询schema_name.view_name的字段及其类型:select a.attname, pg_catalog.format_type(a.atttypid, a.atttypmod) as type,a.attnotnullfrom pg_catalog.pg_attribute a,pg_catalog.pg_class c, pg_catalog.pg_namespace n

2012-12-18 17:21:26 8003

转载 left join 和 left outer join 的区别

来源:http://www.cnblogs.com/cy163/archive/2008/10/16/1312920.htmlleft join 和 left outer join 的区别通俗的讲:    A   left   join   B   的连接的记录数与A表的记录数同    A   right   join   B   的连接的记录数与B表的记录数同

2012-12-18 16:24:40 645

转载 英文书籍下载网站推荐

http://en.bookfi.org近来下载了很多英文书籍,分享一下自己的下载心得,希望对书友有好处。以前常常抱怨由于老外版权意识强,读英语原版书籍难。后来有机会认识了rapidshare,很多新书都能够找到下载,才恍然大悟:并不是找不到书籍阅读,而是没有找到方法。当然并非所有图书都可以在网上免费下载,能免费下载的是少数,一般而言,畅销书、计算机类图书比较多。但是这

2012-12-15 23:04:50 2372

原创 在DOS脚本中加入计数器

@echo off & setlocal EnableDelayedExpansionset count=0for /f "tokens=1,2* delims=." %%a in (not_in_final.lst) do set /a COUNT+=1 & echo insert into myschema.tablename values ('!COUNT!', '%%a', '%%b

2012-12-15 22:41:59 2103

转载 Teradata SQL 笔记

HELP 帮助用户了解数据库中各种对象的结构 SHOW 帮助用户了解某种对象的定义,即返回其DDL语句 EXPLAIN 返回一个SQL语句经优化处理后的执行步骤,注意并未真正执行 FALLBACK 对数据加以保护的一种方式,是冗余的备份 RENAME 对表重命名 NULLIFZERO 对数据作累计处理时,忽略零值 ZEROIFNULL 对数据作累计处理时,将空值作零处理

2012-12-06 10:45:18 803

Greenplum4.2.2管理员指南

Greenplum4.2.2管理员指南,中文版

2014-03-03

GreenPlum Admin Guide

GreenPlum Admin Guide

2013-08-22

Hadoop权威指南(中文第2版)

Hadoop权威指南 中文第2版 不解释

2013-08-22

Word Style

Word Style for Word 2007,用于参考文献格式

2011-12-15

win7 多用户补丁

只支持Windows 7 Build 7600

2011-12-01

C++ Programming Language 中文版

C++ Programming Language 特别版 中文版

2011-11-13

The C++ Programming Language.Third Edition.1997

The C++ Programming Language.Third Edition.1997

2011-11-13

Windows Via C/C++,Fifth Edition

windows 核心编程第五版,经典,不解释~

2011-11-13

算法导论中文版

算法导论中文版,不可不看的经典。版本有点早了,但可以对照着英文原版书看^_^

2011-09-17

Thinking in C++(2nd) Volume II

Thinking in C++(2nd) Volume II

2011-08-14

Thinking in C++(2nd) Volume I

Thinking in C++(2nd) Volume I

2011-08-14

The C++ Programming Language Special 3rd Edition

The C++ Programming Language Special 3rd Edition, by Stroustrup

2011-06-29

Springer-Handbook-of-Speech-Processing

Springer-Handbook-of-Speech-Processing

2011-06-17

《中文信息学报》排版样式

《中文信息学报》排版样式,希望对大家有帮助~

2011-06-15

C++编程思想源代码(Vol1)

thing in C++ Source Code

2011-06-15

CU-HTK(讲义)

Cambridge-Tsinghua workshop 时的报告ppt~ 关于HTK的~

2009-04-18

Pattern Classication(模式分类)

Pattern Classication(模式分类),by 杜达,很经典的一本书,特别推荐~

2009-04-18

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除