I too am biased towards PG. At one of my previous gigs, I had to develop a HTML5 mobile app around a MS SQL database (though eventually we migrated to PostgreSQL). Among the problems we ran into: A) Indexes disappeared without rhyme or reason. (This might have been a "too many cooks in the kitchen" thing, where someone restored from a backup and didn't tell anyone.) B) In the default configuration provided by the php…
PostgreSQL vs. MS SQL
61–70 of 106 posts
Re: PostgreSQL vs. MS SQL
#62Earlier quoted context omitted.
> First, you can import/export csv's. Hell all you need to do to export, is right click the view and hit export, then select .csv. Are you saying there is no programatic interface for exporting csv? You must rely on the administration tool to generate the csv for you???
@sergiosgc Nope. There are several ways of doing this. Using the GUI is the easiest, and the most common method. You can use SSIS, or the bcp command. For example: bcp "SELECT blah... FROM blah" queryout C:\..\blah.csv -c -t, -T –S
Re: PostgreSQL vs. MS SQL
#63Earlier quoted context omitted.
Just curious as to why the article merits this type of vitriol. I'm a .NET/SQL Server guy from the states, so I have no skin in this game, but it just seems to me that this is unwarranted.
Because most of it is circa 1998 Slashdot-esque content which really isn't constructive and only damages what little faith people have in this industry even further. The article itself is vitriol. Not only that, the site is designed to intentionally hide the author obviously because being accountable for an opinion is probably bad for them in this case.
Your comment does not belong on Hacker News.
Re: PostgreSQL vs. MS SQL
#64The author is pretty misinformed about how enterprises work. a) Security is critical. It routinely trumps common sense and evidence. And telling people "not to fall for it" is advice that will get you nowhere. b) Vendor support is critical. And no your local mom+pop consulting shop doesn't count. PostgreSQL could really do with solid, global companies like Microsoft, Datastax, Mongo etc who offer training and proper…
What vendor support do you get exactly from Microsoft? Their EULA typically has a SHOUTY CAPS NO WARRANTY CLAUSE, so what does the SLA cover? Have you successfully resorted to the SLA to handle problems you've had? I'm honestly curious. I just don't know how SLAs work, and whom can you blame if you have problems with MS SQL.
Bringing up the "no warranty" clause is a total straw man argument. Almost every software license (whether proprietary or open source) has a no warranty clause.
Re: PostgreSQL vs. MS SQL
#65Earlier quoted context omitted.
That being said, if your relational database has 1GB records, you really need to reevaluate whether you are using the right tool for the job.
While I kind of agree, what exactly is the "right tool" for storing large blobs? You can use the filesystem but then you have to manage data migration/sync by "hand" which is kind of a bitch for distributed systems. Honestly storing large blobs with meta-data telling you about the blobs is extremely common. I'm yet to hear of how you're meant to do it correctly.
The OP doesn't appear to have hear of SQL Server FileStream or FileTables, which handle this abstraction for you: http://msdn.microsoft.com/en-us/library/ff929144.aspx
Re: PostgreSQL vs. MS SQL
#66 Microsoft® WinFX™ Software Development Kit for Microsoft® Pre-Release Windows Operating System Code-Named "Longhorn", Beta 1 Web SetupRe: PostgreSQL vs. MS SQL
#67Earlier quoted context omitted.
The author spends quite some time explaining that MS SQL Server's CSV is mangled and broken, and what you've said is that it exports CSV. So what does your comment contribute, except to say that you didn't read the article?
QFA "MS SQL Server can neither import nor export CSV"
Re: PostgreSQL vs. MS SQL
#68What about the lack of upsert in PostgreSQL?
http://www.postgresql.org/message-id/CAM3SWZRP0c3g6+aJ=YYDGY...
Re: PostgreSQL vs. MS SQL
#69Earlier quoted context omitted.
QFA "MS SQL Server can neither import nor export CSV"
I took it to mean "can neither import nor export conformant CSV"
Re: PostgreSQL vs. MS SQL
#70Having been through many, many installs of Oracle and MS-SQL in my career, the speed at which you can get a PostgreSQL server up and running with data is simply awesome.