免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 3647 | 回复: 5
打印 上一主题 下一主题

求助:Postgres上SELECT执行语句的问题~~ [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2010-06-03 18:01 |只看该作者 |倒序浏览
环境: X86 + Linux(FC3) + Postgres8.3.0

现象: 对于某些记录, 用 '=' , 'like' 匹配 相同的字符串,查找结果不一致,例如:

ids=# SELECT username,logontime,logofftime FROM USER_ACTIVITY WHERE username like 'user-100-100';
   username   | logontime  | logofftime
--------------+------------+------------
user-100-100 | 1275547993 |          0
(1 row)

ids=# SELECT username,logontime,logofftime FROM USER_ACTIVITY WHERE username = 'user-100-100';
username | logontime | logofftime
----------+-----------+------------
(0 rows)

小弟刚接触数据库,问题比较低级,请各位大牛多包涵

论坛徽章:
59
2015七夕节徽章
日期:2015-08-24 11:17:25ChinaUnix专家徽章
日期:2015-07-20 09:19:30每周论坛发贴之星
日期:2015-07-20 09:19:42ChinaUnix元老
日期:2015-07-20 11:04:38荣誉版主
日期:2015-07-20 11:05:19巳蛇
日期:2015-07-20 11:05:26CU十二周年纪念徽章
日期:2015-07-20 11:05:27IT运维版块每日发帖之星
日期:2015-07-20 11:05:34操作系统版块每日发帖之星
日期:2015-07-20 11:05:36程序设计版块每日发帖之星
日期:2015-07-20 11:05:40数据库技术版块每日发帖之星
日期:2015-07-20 11:05:432015年辞旧岁徽章
日期:2015-07-20 11:05:44
2 [报告]
发表于 2010-06-04 12:25 |只看该作者
这是POSTGRESQL里的吗?感觉你的像INFORMIX,看看在你的数据库里-在=操作时有没有被转义了。

论坛徽章:
0
3 [报告]
发表于 2010-06-04 14:49 |只看该作者
补充下,只有部分记录有这样的现象,其他记录用'='和'like'结果是一样的.
对于username字段,我加了索引,如:

ids=# \d user_activity
                                   Table "public.user_activity"
   Column    |          Type          |                         Modifiers
-------------+------------------------+------------------------------------------------------------
id          | bigint                 | not null default nextval('user_activity_id_seq'::regclass)
devid       | bigint                 | not null
ipaddr      | bigint                 | not null
username    | character varying(256) | not null
domainname  | character varying(256) |
dcname      | character varying(256) |
hostname    | character varying(256) |
serverip    | bigint                 | default 0
servername  | character varying(256) | default ''::character varying
logontime   | bigint                 | default 0
logofftime  | bigint                 | default 0
logontype   | bigint                 | default 0
session     | character varying(256) | default ''::character varying
lastacttime | bigint                 | default 0
lastupdtime | bigint                 | default 0
errorcode   | bigint                 | default 0
Indexes:
    "user_activity_pkey" PRIMARY KEY, btree (id)
    "uact_idx_useriplogonsess" UNIQUE, btree (ipaddr, username, logontime DESC, session)
    "uact_idx_lastupdtime" btree (lastupdtime)
    "uact_idx_logofflogonip" btree (logofftime, logontime, ipaddr)
    "uact_idx_logon" btree (logontime)
    "uact_idx_user" hash (username)    <<<<<<<<<<<<<<<<<<

当我DROP掉"uact_idx_user"后就正常了,所以想知道HASH的时候是用username字段的256个字符做还是用username中的字符串('\0'结尾)来做?

如果是前一种方式的话就可以解释了~~

请熟悉其中细节的大牛赐教啊~~

论坛徽章:
59
2015七夕节徽章
日期:2015-08-24 11:17:25ChinaUnix专家徽章
日期:2015-07-20 09:19:30每周论坛发贴之星
日期:2015-07-20 09:19:42ChinaUnix元老
日期:2015-07-20 11:04:38荣誉版主
日期:2015-07-20 11:05:19巳蛇
日期:2015-07-20 11:05:26CU十二周年纪念徽章
日期:2015-07-20 11:05:27IT运维版块每日发帖之星
日期:2015-07-20 11:05:34操作系统版块每日发帖之星
日期:2015-07-20 11:05:36程序设计版块每日发帖之星
日期:2015-07-20 11:05:40数据库技术版块每日发帖之星
日期:2015-07-20 11:05:432015年辞旧岁徽章
日期:2015-07-20 11:05:44
4 [报告]
发表于 2010-06-07 11:36 |只看该作者
我在PG9上实验你的这个问题。正常。不管LIKE还是=都能查询出数据。

论坛徽章:
0
5 [报告]
发表于 2010-06-07 22:07 |只看该作者
问题已经解决,是我用的V8.4.0存在hash index更新的bug, 改BUG在v8.4.2已经修正~~

谢谢大家的帮助~

论坛徽章:
8
综合交流区版块每周发帖之星
日期:2015-12-02 15:03:53数据库技术版块每日发帖之星
日期:2015-10-02 06:20:00IT运维版块每日发帖之星
日期:2015-10-02 06:20:00IT运维版块每日发帖之星
日期:2015-09-14 06:20:00金牛座
日期:2014-10-10 11:23:34CU十二周年纪念徽章
日期:2013-10-24 15:41:34酉鸡
日期:2013-10-19 10:17:1315-16赛季CBA联赛之北京
日期:2017-03-06 15:12:44
6 [报告]
发表于 2010-06-14 16:48 |只看该作者
问题已经解决,是我用的V8.4.0存在hash index更新的bug, 改BUG在v8.4.2已经修正~~

谢谢大家的帮助~
thy295 发表于 2010-06-07 22:07



    呵呵,bug真是无处不在啊
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP