Tuesday, June 08. 2010What is new in PostgreSQL 9.0Printer FriendlyComments
Display comments as
(Linear | Threaded)
Always cool to see better window function support! Maybe next we'll see a keep() clause?
I'm still waiting on an efficient general-purpose equivalent to MySQL's "REPLACE INTO" SQL extension, or at least "INSERT IGNORE".
How about the "ignore nulls" feature for things like last_value? I find it very useful for sequencing things in Oracle (ie: union a buncha things together, order by time or something, then do last_value ignore nulls to get previous value from another table, etc.).
Bob,
I feel your pain. Well there is CREATE OR REPLACE VIEW which in PostgreSQL 8.4 allows you to add columns at the end without dropping the view. But yes I am looking for something like what MySQL and SQL server allow to do -- with being able to insert columns in the middle or change datatypes of columns without dropping. Especially when you have views dependent on other views it does get painful.
This is all great, but when will PostgreSQL finally gain synchronous multimaster replication?
Yeah, it's something that seems to keep managers from replacing Oracle with Pg. :-) "It's not cluster."
BTW; If you will implement that one day, stick it on top of RedHat cluster, at least optionally. It's the only "true" cluster out there.
Until tables aren't stored in separate files I just look on. Something like ASM would be cool as well.
Cool that Postgres is getting into OLAP though. MSSQL Server's lack of features is made up in price, Excel integration, and tools. For some enterprise OLAP in the cloud will be important. "create or alter table" and other schema modification enhancements would be cooler for the industry in general. Fast and easier schema management would have more of a positive effect on the RDBMS world than "nice" little things like REPLACE INTO which are fairly easy to work around.
Twiggy -- you mean like a
CREATE TABLE IF NOT EXISTS like what MySQL has. That would be pretty nice I think. Yes these kind of usability features sound like they aren't that hard to implement to me but would vastly improve user-friendliness.
What's wrong with PG's on disk storage that you don't like, Twiggy?
I am not sure, but RANGE window functions are not supported still :( it was removed from core and moved to 9.1
|
Entry's LinksQuicksearchCalendar
Categories
Blog Administration |
Gathering from the number of hits we got from our What's new in PostgreSQL 9.0, and the large number of slashdot responses we got as well as the fair number of reddit responses, I guess a lot of people are really excited about the upcoming PostgreSQL 9
Tracked: Jul 05, 03:21
Tracked: Sep 24, 05:30