由买买提看人间百态

topics

全部话题 - 话题: rdbms
1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
F****n
发帖数: 3271
1
来自主题: Database版 - 为啥RDBMS只用一个Index? (转载)
【 以下文字转载自 Java 讨论区 】
发信人: Foxman (今狐冲), 信区: Java
标 题: 为啥RDBMS只用一个Index?
发信站: BBS 未名空间站 (Sat Mar 28 15:46:49 2015, 美东)
不久前有个项目要比较Lucene和主要RDBMS的search performance。因为老板想知道如
果把RDBMS当成NoSQL(就是Table Design的时候坚持denormalize) 用效果如何。经过
一段时间研究,
发现在其他条件不变的情况下单个column的search二者差不多,但多个fields/columns
的 query
RDBMS要慢的多 (e.g., select * from users where last_name='xxx' and email='
yyy")
进一步我发现RDBMS对一个Table在一个Query中居然一直只使用一个Index, 即使所有的
Column都有Index! 一开始以为是Query Planner根据selectivity的选择,但后来发现
根本不是这样:
1. 几乎所有的Quer... 阅读全帖
F****n
发帖数: 3271
2
来自主题: Java版 - 为啥RDBMS只用一个Index?
不久前有个项目要比较Lucene和主要RDBMS的search performance。因为老板想知道如
果把RDBMS当成NoSQL(就是Table Design的时候坚持denormalize) 用效果如何。经过
一段时间研究,
发现在其他条件不变的情况下单个column的search二者差不多,但多个fields/columns
的 query
RDBMS要慢的多 (e.g., select * from users where last_name='xxx' and email='
yyy")
进一步我发现RDBMS对一个Table在一个Query中居然一直只使用一个Index, 即使所有的
Column都有Index! 一开始以为是Query Planner根据selectivity的选择,但后来发现
根本不是这样:
1. 几乎所有的Queries, Query Planner都只会选一个Index,根本没有啥优化可言--像
上面那种简单的例子,即使用第二个Index可以提高几千倍的速度,也不会用。而
Lucene总是使用所有的Index然后sort-and-merge。Pe... 阅读全帖

发帖数: 1
3
来自主题: JobHunting版 - Benchmark: Oracle RDBMS vs Cassandra
大牛们有没有一个matrices在什么量级的data的情况下,Cassandra的performance会超
过Oracle RDBMS??
基本上key value store的数据都可以存在RDBMS, 但是当数据量达到一定程度,RDBMS
的scalability和performance就很难扩展了,所以很多公司把数据从oracle移到了
Cassandra。应该有matrices for the turning point. 例如shopping carts
B*****g
发帖数: 34098
4
Oracle Remains #1 in RDBMS Market Share Worldwide for 2012
In its report, “Market Share: All Software Markets, Worldwide 2012,”
leading information technology research and advisory company Gartner, Inc.
reports that Oracle is #1 in worldwide relational database management
systems (RDBMS), based on total software revenue share.
With 48.3 percent share of revenue, Oracle
Remains #1 in worldwide RDBMS total software revenue share
Holds a larger revenue share than its four closest competitor... 阅读全帖
J****R
发帖数: 373
5
【 以下文字转载自 Database 讨论区 】
发信人: JVMCLR (很久很久以前,我是面试时的分子), 信区: Database
标 题: 有没有open source DB像greenplum那样同时支持RDBMS 和hadoop呢?
发信站: BBS 未名空间站 (Sun Aug 17 16:41:59 2014, 美东)
公司想逐步采用nosql,但是目前的系统都是建立在RDBMS的基础上的。不知道有没有哪
个open source即包含RDBMS也包含nosql? 就像greenplum一样。
J****R
发帖数: 373
6
【 以下文字转载自 Database 讨论区 】
发信人: JVMCLR (很久很久以前,我是面试时的分子), 信区: Database
标 题: 有没有open source DB像greenplum那样同时支持RDBMS 和hadoop呢?
发信站: BBS 未名空间站 (Sun Aug 17 16:41:59 2014, 美东)
公司想逐步采用nosql,但是目前的系统都是建立在RDBMS的基础上的。不知道有没有哪
个open source即包含RDBMS也包含nosql? 就像greenplum一样。

发帖数: 1
7
来自主题: JobHunting版 - Benchmark: Oracle RDBMS vs Cassandra
基本上key value store的数据都可以存在RDBMS, 但是当数据量达到一定程度,RDBMS
的scalability和performance就很难扩展了,所以很多公司把数据从oracle移到了
Cassandra。应该有matrices for the turning point. 例如shopping carts
j**********r
发帖数: 3798
8
来自主题: JobHunting版 - Benchmark: Oracle RDBMS vs Cassandra
我老给你指条明路吧。这板上就没几个真折腾过Scalability的。如果你的写操作会超
过每秒5000次,或者读超过每秒1万次。Oracle很大可能会扛不住,或者能扛得住你撑
不起,Oracle是按CPU算钱的。我老干过几次Oracle -> MySQL的迁徙。每次光license
fee每年就省几个米。
对于可以linear scaleout的use case. Cassandra读写都超过Oracle或者任何RDBMS没
有压力。但是没有transaction support,工具跟方便性远远不如RDMBS。维护也麻烦很
多。如果你不需要那么快的读写,老老实实用RDBMS可以省很多事。
r**e
发帖数: 57
9
来自主题: Database版 - is SAS database a RDBMS?
I know SAS can be linked to RDBMS such like Oracle, Access etc.
Is SAS database itself a RDBMS? Not very familiar with SAS, thanks!
J****R
发帖数: 373
10
公司想逐步采用nosql,但是目前的系统都是建立在RDBMS的基础上的。不知道有没有哪
个open source即包含RDBMS也包含nosql? 就像greenplum一样。
g*****g
发帖数: 34805
11
来自主题: Database版 - 为啥RDBMS只用一个Index? (转载)
Index的东西我不是很懂,但是ES可以先 partition数据,再多结点同时搜索再归并,
性能必然强于RDBMS. 所
有 NoSQL都是以类似的策略来 scaleout的。RDBMS理论上可以使用同样的策略,但为了
保证ASIC,会使得写性能极具下降。

columns
w*r
发帖数: 2421
12
来自主题: Database版 - 为啥RDBMS只用一个Index? (转载)
Most rdbms like oracle db2 SQL server optimizer is designed in the way to
shorten the io path cost to accommodate oltp. oracle index join hint will
bring both index into consideration. Bitmap index provided a faster
operation using and/or operation on the single index, however I doubt it
will benefit index join performance . Bitmap index probably more cost
effective when the distinct values in the index is low.
For low cardinality columns , partition is a better choice comparing to
index in mos... 阅读全帖
z*********n
发帖数: 1451
13
来自主题: JobHunting版 - Benchmark: Oracle RDBMS vs Cassandra
感觉这是个伪命题,两种数据库数据存法都不一样,有的数据适合RDBMS,有的适合
Cassandra,完全取决于你用法。你起码得说明你数据是什么结构的,测哪种操作吧。
h**********c
发帖数: 4120
14
来自主题: JobHunting版 - Benchmark: Oracle RDBMS vs Cassandra
这种大数据系统没有在实际工作操作管理过,这种scalability的定义看起来很模糊,
倒不如说是一种大的索引(我甚至感觉连索引都没有,甚至也做不出来)了的网络文件
系统。
scalability似乎看来是被当成可以随便增加加节点。那么说到了shopping cart,那后
台的inventory是怎么scale up的?
好像很多问没有题基本feasibility分析,就是一句python 比PHP 快, 这个比那个
scale up,然后过去了。浪费了大量的投资。然后满世界找benchmark result,压根没有!
我觉得数据库系统要有两个功能性问题一是备份,而是做报表。第一,存贮再增长也是
有限的,历史性数据总放在哪里最后成了噪音。
做报表的话,一些基本操作,order by, group by, cartesian product, select,
projection 等大数据系统的实现是怎样,比传统数据库的benchmark 在哪里。
最后一个问题是大数据是如何来实现抽象的,比如传统数据库的relational calculus,
relational algebra.... 阅读全帖
c**e
发帖数: 3760
15
来自主题: MusicPlayer版 - Re: Radiohead lyrics in Oracle RDBMS code
【 以下文字转载自 Rock 讨论区 】
发信人: cure (musikaholic), 信区: Rock
标 题: Re: Radiohead lyrics in Oracle RDBMS code
发信站: BBS 未名空间站 (Thu Feb 4 23:45:05 2010, 美东)
wow, it's indeed there. haha. funny
$ strings oracle | grep -i creep
I'm a creep, I'm a winner, what the hell am I doing here.I don't belong here
- radiohead
B*****g
发帖数: 34098
16
ZZ from CINAOUG
Oracle is #1 in the RDBMS Sector for 2011
http://www.oracle.com/us/products/database/number-one-database-
Database Manageability and Productivity Cost Comparison Study
http://www.oracle.com/us/products/enterprise-manager/db-cost-co
Oracle Outpaces DB2 in Database Manageability
http://www.oracle.com/us/products/database/oracle-outpaces-db2-
Oracle Database Beats Microsoft SQL Server in DBA Productivity By 49%
http://www.oracle.com/us/corporate/features/oracle-vs-sql-serve
w*r
发帖数: 2421
17
cost of ownership mainframe > iseries >> luw
performance iseries = mainframe >> luw
stability mainframe > iseries >> luw
complexity for management and development
mainframe = iseries << luw
DB2 mainframe真心是大企业的RDBMs for transaction, iseries也有
LUW... 一个joke... 被骗上luw的公司肠子都悔青了
c*****t
发帖数: 1879
18
来自主题: Database版 - 为啥RDBMS只用一个Index? (转载)

cost
如果你的 database 是 multi-node,或者有上亿条 ,bitmap 本身的 cost 就非常
高。
如果你所说的 RDBMS 无法正确选择 index ,可以考虑改变 predicate 的次序。
比如你原来是 A and B,改成 B and A 。
F****n
发帖数: 3271
19
来自主题: Database版 - 为啥RDBMS只用一个Index? (转载)
我前面已经说了,复合索引适用范围有限
一些主流RDBMS表面上支持Index Join (更正:发现MySQL直接说不支持)
但实际上许多产品的Query Planner令人发指
是不是多年来这方面不是很critical, 所以都糊弄过去算了
B*****g
发帖数: 34098
20
来自主题: Database版 - 为啥RDBMS只用一个Index? (转载)
用rdbms就谈oracle吧,其他都是打酱油的,哈哈
k*******z
发帖数: 2368
21
来自主题: Database版 - 为啥RDBMS只用一个Index? (转载)
Oracle不可能只用第一个索引。如苦逼大师引用的例子的话,只要表的statistics是准
确的话,根本不会不用第二个索引。
况且,RDBMS在设计的时候就应该考虑如何建表来适应系统需求,而不是把表都建好了
然后随心所欲的建索引,希望这个系统又适用于OLTP又可以做数据挖掘。
兄弟不了解Oracle不要随便下结论。
F****n
发帖数: 3271
22
来自主题: Java版 - DATE TIME In RDBMS
IMO, those RDBMS people constantly cannot understand the difference between
a date and a dateformat. Those people always try to legitimate their
implementation by spending several pages talking about Date Format. In fact
for date / time storage you only need a integer / long, and the complexity
of DateFormat can always be encapsulated in the JDBC driver (or other DB
access API).
k****n
发帖数: 52
23
【 以下文字转载自 DotNet 讨论区 】
发信人: ketten (ketten), 信区: DotNet
标 题: Please recommend embedded RDBMS for .Net 2.0
发信站: BBS 未名空间站 (Fri Feb 29 12:14:53 2008)
I am looking at SQLite, Firebird now. Anyone could provide some insights on
this topic?
Thanks in advance!
w*********e
发帖数: 5286
24
那你还不如说有的embedded os很简单就等于linux/windows/unix os kernal也很简单
了。一个极端的例子,linux kernal里面process scheduling最核心的部分也就是100
多行,一个作业量而已,连course project也算不上,按照你的逻辑,os的kernal也挺
简单的,一个course project而已。其他都是你所谓的“外延”么
可以作为stand alone network server 不等于就是一个rdbms了,前面说了,
只有一个很基本的query/data storage功能的东西远远称不上rdbms。
好了多说无益,你可以找本基本的db教科书看看,看看rdbms至少应该包括些什么。当
然了,你可以有自己的rdbms的定义,你也可以认为所谓的kernal rdbms就是2M
bytecode那点东西,前面有网友说了,看问题的角度不一样,我只是觉得你对kernal和
所谓“外延”的定义非常奇怪而已。
w*********e
发帖数: 5286
25
什么行为艺术?? 我前面不是说了rdbms的kernal应该包括什么么
这也是任何一个db教科书应该有的内容,你连这个都不知道还谈什么别的?
这里是技术板块,你也稍微作点rdbms的kernal工作再来论断rdbms的复杂度吧。
没看过也没改过任何rdbms kernal code,那你看看db教科书总可以把。
连书都不愿意看,还高谈阔论什么rdbms kernal呢?
算了,不说了, 和你这样的说话真是够累的。
p*********a
发帖数: 61
26
nosqldb 的市场和 rdbms 重合的不多吧
rdbms 提供了整套的 package,所以很多应用公司,比如 banking, retailer
可以直接拿来用。避免雇佣大量的程序员 coding, testing
最多就是 DBA 了
nosqldb 提供了一些底层的 api
所以 it 公司比较喜欢在上面搭建自己的东西
特别是可以根据自己的具体的需求 tune,保证效率
但是随着系统的完善,
最终他们还是要重新实现 rdbm 里已经有的功能
像 facebook 在一个 talk 里就提到实现
query optimizer, materialized view
一个有意思的问题是,如果把 nosqldb+程序员的成本算进来
会比 rdbms 更划算么 (performance/money)
google, facebook, amazon 当然要 nosqldb,因为他们本来就是 it 公司
数据量大,应用特殊
但是对于绝大多数公司,没这个经历,也没这个财力
v*******a
发帖数: 1193
27
来自主题: JobHunting版 - los angeles的openings
我在的公司的目前的openings,来信请在resume中写清楚要apply的是哪个position,
然后请仔细阅读job description,看适不适合自己,比如说写着要7-10年 experience
的,如果是刚毕业的master没有任何经验的,就明显不适合了。
公司在LA,给办H1B。
简历请发到summerzwang at gmail.com
欢迎大家跳槽来美丽的LA~
Statistician / Data Mining Specialist
Responsibilities:
• Develop statistical models to predict vehicle pricing
• Track and analyze model parameters and estimates over time
• Construct forecasts of key industry metrics
• Create implementable design specifications for p... 阅读全帖
c*****t
发帖数: 1879
28
来自主题: Java版 - 问个问题
OODB is not technologically superior to RDBMS at all.
1. OODB performance is only suitable for certain types of queries.
Even for the queries OODB actually do better, the gain is relatively
small.
2. Behaviors of OODB can be mimiced using ORM tools, and some features
can be added to RDBMS with a bit effort without dramatic changes.
Examples: OID, composite type, type/table inheritance etc.
3. OODB still does not solve the more critical problems of RDBMS,
like schema issues, types
F****n
发帖数: 3271
29
来自主题: Java版 - 问个问题
I found it would be too expensive to discuss all those questions:))
But as to the performance issue, the key thing is, all relational operations can be implemented with same or better performance in OODB with proper storage / indexing strategy. In other words, conceptually RDBMS can be regarded as a special case of OODB. Downgrading an OODB to RDBMS is very easy, but upgrading a RDBMS to OODB would be difficult, requiring ugly patching such as ORM. That's why 10 years ago most people in universi
w*********e
发帖数: 5286
30
as other ppl said, it is just like an embedded OS VS a
full-fledged OS like linux&windows.
you cannot judge complexity of kernal RDBMS by Derby.
If derby is recoginized as a RDBMS everywhere, why shall we
have DB2, ORacle, SQL Server, and even lower-end mysql?
anyway, it is all about how you look at the word "KERNAL".
for me, a "KERNAL" RDBMS shall at least cover from parser,
compiler, code-generation, execution to data layer, with
support of the core set of ANSI SQL.
Even without transaction
g*****g
发帖数: 34805
31
你最好理解一下这段话什么意思再跟我争。tunable consistency的意思就是,颜色不
一顶要黑的,或者白的,也可以是灰色的。一个系统甚至可以黑一块白一块灰一块,但
不会改变任意一块不会同时又黑又白的本质。而一个RDBMS,但凡支持transaction,就
意味着是白的。
如果RDBMS灰了,就不是传统意义上的RDBMS了。

wha
s
locat
provide
a
s***o
发帖数: 6934
32
very much depending on the data you are storing. There are needs for data
store in many layers: application layer serving stores, data warehouse for
your BI, billing/financial data.
* serving stores are usually nosql solutions or mysql/postgresql instances
depending on your need.
- there will be data that you only need key -> value lookup, use stores like
cassandra/riak/memcache/mongo depending on your requirements of access
patterns. cassandra requires thrift, which is painful to some. riak sup... 阅读全帖
r***y
发帖数: 4379
33
来自主题: Programming版 - postgres 值得学吗?
多谢朋友分享.
大牛的推荐是不是说尽量减少 RDBMS 的负载. 仅仅让 RDBMS 干跟 transaction 有关
的.
主要负载都扔给 nosql .
这样 RDBMS 部分基本没太大负担, 就免去 scaling 的折腾.
仅仅对 nosql 部分做 scaling , 而这又是 nosql 的强项.
btw, "一个ca和一个ap系统做配合" 中 ca/ap 是指啥呀?
v*******a
发帖数: 1193
34
来自主题: Statistics版 - los angeles的openings (转载)
【 以下文字转载自 JobHunting 讨论区 】
发信人: vivianxia (redapple), 信区: JobHunting
标 题: los angeles的openings
发信站: BBS 未名空间站 (Thu Apr 7 23:02:27 2011, 美东)
我在的公司的目前的openings,来信请在resume中写清楚要apply的是哪个position,
然后请仔细阅读job description,看适不适合自己,比如说写着要7-10年 experience
的,如果是刚毕业的master没有任何经验的,就明显不适合了。
公司在LA,给办H1B。
简历请发到summerzwang at gmail.com
欢迎大家跳槽来美丽的LA~
Statistician / Data Mining Specialist
Responsibilities:
• Develop statistical models to predict vehicle pricing
• Track and analyze model paramet... 阅读全帖
S********6
发帖数: 8
35
抛下砖:
Vertica的前身是c-store(即column-oriented的RDBMS),由mike stonebraker那帮人搞
出来的。相于传统的其他RDBMS,Vertica从数据存储的机构上发现改变,大大减少了IO
,从而提高了数据读取的效率,它可以支持数据分布到cluster上。其他的优点,有兴
趣的可以去了解相关资料。
Hadoop,即HDFS+MapReduce Framework (2.0版本还有YARN),它是一个适用于大规模数
据处理的平台。现在它和Veritca有互通的接口,但它们不是一回事。
1 hadoop的数据一block的形式存在HDFS上,而Vertica有自己的数据存储结构,把
RDBMS 的数据partition存到一个或多个节点的disk。Hadoop存的一般是unstructured
data,而Vertica存的是structured data.
2 hadoop的execution engine 是MapReduce ,而vertica有自己的query engine,支持
transaction execution.
[在 SQy... 阅读全帖
s***o
发帖数: 6934
36
来自主题: Military版 - Indian Tech 牛还是清华牛?
这位眼界也太低了些。现在是个互联网公司就在去oracle化,serving基本没有直接用
的,需要rdbms的用mysql,不需要的用nosql。oracle在offline data warehouse上会
用到,但大部分计算都上grid了
当然了当你要是必须用很好的rdbms的话oracle还是不二直选,问题很多时候你不需要。
z****e
发帖数: 54598
37
来自主题: Military版 - 天朝现在风起云涌的去ioe运动
谈谈去 IOE 运动
这篇文章算是今年年末的一个技术总结。谈谈技术圈一度的热门话题「去 IOE」这件事。
何谓 IOE ?
所谓 IOE 是个简称。是指以 IBM 、Oracle、EMC 为代表的小型机、集中式数据库和高
端存储的技术架构。其中 I 指 IBM p 系列小型机,操作系统是 AIX,IBM 专有的
Unix 系统;O 指 Oracle 数据库(RDBMS);E 指 EMC 中高端 SAN 存储,曾经一度是
IT 企业很喜欢采用的技术架构。IOE 这个说法怎么来的? 据我所知应是来自阿里技术
团队内部的称谓,然后才在整个业界流传开来。如果你去问国外技术专家什么是 IOE,
对方肯定一头雾水。当然,随着国内案例逐渐被介绍到国外,或许某一天这个术语能输
出价值观也说不定。
在小型机领域,只有 IBM 这一家,独步武林;HP 当初把宝押在安腾上,算是早早退出
这个市场;Sun 日薄西山,SPARC 机器…那就更不必说了。另外,需要说明的是,IBM
也生产存储产品,但 IBM 的存储产品早期其实挺山寨,竞争不过 EMC ,而且有些用户
会忌讳把所有的东西困在一家公司身上,尾大不掉。... 阅读全帖
G*******9
发帖数: 4371
38
【 以下文字转载自 WashingtonDC 讨论区 】
发信人: Great2009 (栀子园主,诚招助手), 信区: WashingtonDC
标 题: DC在招IT工 ActioNet Positions。。。
关键字: IT 招人 ActioNet Positions Openings
发信站: BBS 未名空间站 (Sun May 25 21:23:16 2014, 美东)
我在帮朋友的朋友发帖,你可以发包子给我表示感谢,但是请不要问我更具体的问题。
呵呵。。。
ActioNet supports the Centers for Medicare and Medicaid Services in key
areas of health IT solutions delivery. We are looking for Java Developer (
all levels) and System Analysts (all levels) with experience at CMS, Health
IT, or similar systems development en... 阅读全帖
c*****4
发帖数: 1777
39
限时招聘5名Senior级别软件测试工程师。已报到1人,另已下2个offer(尚不知道是否
报道)。仍有至少两个空缺。
新毕业如工作年限不够但自信符合其余要求也可投简历。只是可能offer是按level 1/2
给。
有意简历请尽量往测试靠,不要太侧重算法等。站内私信联系。
Software Engineer 3, Quality
Primary Job Responsibilities:
This is a challenging, highly technical quality engineering role requiring
analytical, innovative thinkers who can build cutting edge testing
technologies and use next-generation automation techniques to successfully
certify and automate eBay’s core marketplace platform: a global,
distributed component... 阅读全帖
t*******8
发帖数: 13
40
A financial technology firm is currently seeking smart people to join
their high performance, low latency electronic trading platform
development team. The company’s headquarter locates in New York’s
financial district, right next to the NYSE building. Please send your
resume to m**[email protected] if you are interested.
Opening one:
Job Title: Mid Level C/C++ Developer
Essential Experience:
• 2 or 3 years of experience in commercial software development in
C or C++
• A good working... 阅读全帖
B*****g
发帖数: 34098
41
不是group里的请看第二讲的Agenda
Agenda for May 9. Wednesday Oracle ????
9pm-10pm (ET) Technical Discussion
* What is RDBMS
* The Oracle implementation of RDBMS
* The responsibilities of Oracle DBA
* The Oracle technology that increases database availability
-- Backup/Recovery
-- Total Recall and Flash back Database
-- Cluster, RAC One, RAC, Data Guard
-- ASM (Automatic Storage Mangement)
-- Oracle Enterprise Manager
-- Golden Gate and Streams
10pm- 10:30(ET) Career Discussion
* The DBA MM
* Question and A... 阅读全帖
B*****g
发帖数: 34098
42
【 以下文字转载自 Database 讨论区 】
发信人: Beijing (我是猪--听说猪是被祝福的), 信区: Database
标 题: 5/9-中国人北美甲骨文用户组IT新手入门第二讲
发信站: BBS 未名空间站 (Mon May 7 17:51:32 2012, 美东)
第二讲: Oracle 新手入门
时间: 五月九日,星期三,美东时间晚上9点
讲座者:Kevin Zou (Oracle Exadata/Bigdata Appliance Sales Consultant at
Oracle)
参加办法:全部免费,无需报名,讲座当天连接到网址http://www.AnyMeeting.com/cinaoug1 (Linkavailable after 8:50 PM)
Agenda for May 9.Wednesday
9pm-10pm (ET) Technical Discussion
* What is RDBMS
* The Oracle implementation of RDBMS
* The responsibilities of Oracle DBA... 阅读全帖
b******s
发帖数: 25
43
Please contact:
Alex Melaik
Technical Engineering Recruiter
CATAPULT STAFFING, INC.
1820 Preston Park Blvd, Suite 1600, Plano, TX 75093
Office: 972-299-8809
Fax : 469-298-3473
Cell : 972-802-9627
A*********[email protected]
See below information from recruiter Alex. He said there are two very good
positions (senior software engineer) in Sugarland, TX. They are full time
positions in a global company with a salary range from 105-120K. Sugarland
has excellent elementary/middle/high scho... 阅读全帖
G*******9
发帖数: 4371
44
【 以下文字转载自 WashingtonDC 讨论区 】
发信人: Great2009 (栀子园主,诚招助手), 信区: WashingtonDC
标 题: DC在招IT工 ActioNet Positions。。。
关键字: IT 招人 ActioNet Positions Openings
发信站: BBS 未名空间站 (Sun May 25 21:23:16 2014, 美东)
我在帮朋友的朋友发帖,你可以发包子给我表示感谢,但是请不要问我更具体的问题。
呵呵。。。
ActioNet supports the Centers for Medicare and Medicaid Services in key
areas of health IT solutions delivery. We are looking for Java Developer (
all levels) and System Analysts (all levels) with experience at CMS, Health
IT, or similar systems development en... 阅读全帖
c*****4
发帖数: 1777
45
限时招聘5名Senior级别软件测试工程师。已报到1人,另已下2个offer(尚不知道是否
报道)。仍有至少两个空缺。
新毕业如工作年限不够但自信符合其余要求也可投简历。只是可能offer是按level 1/2
给。
有意简历请尽量往测试靠,不要太侧重算法等。站内私信联系。
Software Engineer 3, Quality
Primary Job Responsibilities:
This is a challenging, highly technical quality engineering role requiring
analytical, innovative thinkers who can build cutting edge testing
technologies and use next-generation automation techniques to successfully
certify and automate eBay’s core marketplace platform: a global,
distributed component... 阅读全帖
g*****g
发帖数: 34805
46
So I need to help you interpret what it means now? The database below means
traditional RDBMS. So C in CAP means AC in RDBMS. Can RDMBS support AC on
multiple rows? I am sorry you really disappoint me, I thought I could learn
something from you but all I figure out is you are lacking of basics. You
don't beat CAP but interpreting it differently from what people understand.
And it has a different meaning than the Atomic in ACID, as it subsumes the
database notions of both Atomic and Consistent."... 阅读全帖
a*****s
发帖数: 1121
47
回来查了一下没签NDA,应该没问题了。说是今天给通知,没收到说明是黄了。就是不
知道他家的打车费给不给reimburse,因为不太会用他家软件,给了100刀的coupon,要
求来的终点和回的起点时公司地址,自己设置的是公司地址,可是司机最后不知道怎么
给我稍微改了位置,结果就TMD charge了俺的信用卡。faint。
面的是体系结构engineer
还是老原则,哥没刷完题,就随便写过几道
电面是国人哥们,问的题目不难,属于leetcode的简单题一类的。记不得了。
onsite:
1. 国人哥们,典型的问了问以前以前做的什么,然后上题目,说一个未排序的整数数
组,找出所有的inversion,就是位置大但是value小的情况。例如:
9, 10, 1, 4, 100
那么应该返回4
先给了最白痴的解法,也就是n平方时间复杂度,然后主动提出可以优化,发现可能需
要排序,然后被提示说先试试merge sort,忘记了,想了一会,现自己动手写一个,没
写对,后来被提示说可以用递归,没时间了,把merge的顺序搞颠倒了,应该先二分逐
步递归,想反了。
2. 国人老板问了问behavior... 阅读全帖
s*a
发帖数: 267
48
来自主题: JobHunting版 - 请问最热的nosql是哪个?
nosql也就是能做个log engine,别的没用。只要搞项目一说就上nosql的,完全就是为
了用技术而用技术,不入流。
nosql能干的RDBMS都可以。更何况现在很多RDBMS也扩展了metadata支持json。

发帖数: 1
49
猎头发给我的,貌似薪水很不错, 他的原话是
Compensation is open for the right person with no limit.
The right candidate must have strong enterprise data experience.
但是我已经找到满意的工作了, 不想再面了。
这个猎头感觉挺靠谱, 以前帮我找过挺多不错的大金融公司。
版上有谁感兴趣可以把简历发给我。[email protected]/* */
需要8年左右 java 经验, 但是感觉应该flexible。
需要6个java developer 和 2 个architect
(我三年经验的时候面过require 5年经验的, 给了onsite, 但是自己没发挥好, 就
是他安排的)
下面是Job description,
6 Java Developers:
Engineers at this asset manager are playing a key role in building the
future of financial services,... 阅读全帖
s*********2
发帖数: 37
50
来自主题: JobMarket版 - 投行 IT
java/ C++/ C#
下面试java 的JD。
We are looking for candidates with strong inter-personal skills, application delivery with strong technical skills in Java and RDBMS (5+ yrs for senior position)
ROLE: Java developer(s) for Equity Front Office
REPORTS TO: Equity Front Office Team Leader
LOCATION: Tianjin, China
TERMS: Local
SCOPE OF ROLE:
To perform the role of developer on cash equity front office systems.
KEY RESPONSIBILITIES/CHALLENGES:
• Development of the trading platform using Java
• ... 阅读全帖
1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)