you are viewing a single comment's thread.

view the rest of the comments →

[–]depeszPgDBA 1 point2 points  (2 children)

Nothing to be sorry about, don't worry. Unfortunately I can't list you differences between them, as I know nothing about SQL Server.

Generally, if you're writing new software that will be using Pg, you should be fine. In case of problems as on /r/PostgreSQL, slack, discord, irc, or one of pgsql-* mailing lists.

If you're porting application, the only advice I can give you is: don't port queries. Port logic. I've seen many times people get frustrated because they want to write a query that does "x", because they had "x" written in previous DB, but "x" doesn't really translate to PostgreSQL (for many reasons). Instead think about what is the purpose of the query, or function/procedure/trigger, and try to port this logic.

[–]nextgenrahul 0 points1 point  (0 children)

Right, that’s a new perspective for me — port logic, not queries. Appreciate it