|
May 16 |
awarded | Popular Question |
|
May 12 |
comment |
How to calculate retention month over month using SQL By the way, my solution is much slower compared to one from Erwin, but I am keeping it here for the poor souls who are stuck with lesser databases without LAG() / LEAD(), such as SQL Server 2008 R2. |
|
May 12 |
comment |
How to calculate retention month over month using SQL Nice. After reading your answer, I found a bug in mine when dealing with date arithmetic (31 days != 1 month). I particularly like how you do aggregate and window function in one step. Have never done something like that before. |
|
May 12 |
revised |
How to calculate retention month over month using SQL Update SQL to reflect new understanding of the question |
|
May 11 |
answered | How to calculate retention month over month using SQL |
|
May 4 |
comment |
Table Naming Dilemma: Singular vs. Plural Names @Nestor, after reading your comment, reason 4 now makes sense. I am actually sold :) |
|
May 2 |
revised |
jQuery .trigger() multiple events `trigger()` has a 2nd argument which is an array of extra parameters |
|
May 2 |
suggested | suggested edit on jQuery .trigger() multiple events |
|
Apr 30 |
answered | Javascript: document.url without the anchor (hash) portion |
|
Apr 26 |
answered | sql conditional data display based on multiple tables and columns |
|
Apr 10 |
awarded | Notable Question |
|
Apr 10 |
comment |
Is it possible to establish an ssh tunnel between two windows computers? (without third party web server) After establishing a VPN connection, both of the machines will have an additional IP in the same subnet. Basically you can treat them as two machines in the same LAN, with slightly unstable connection (if your dynamic public IP changes, OpenVPN will automatically reconnect after a few minutes of downtime). |
|
Apr 9 |
comment |
How to read a text from input file only after it is updated using python For now, watchdog is actually a rather poor choice, since it emits the same modified event for IN_MODIFY, IN_CLOSE_WRITE, and IN_ATTRIB. |
|
Apr 8 |
comment |
Is it possible to establish an ssh tunnel between two windows computers? (without third party web server) If you want a tunnel, why not just establish a VPN connection? OpenVPN works fine as both the server and the client on Windows. |
|
Apr 3 |
comment |
How do you create a table with Sqlalchemy within a transaction in Postgres? @DavidK.Hess Please see the updated answer. |
|
Apr 3 |
revised |
How do you create a table with Sqlalchemy within a transaction in Postgres? Put in the correct answer by zzzeek |
|
Apr 3 |
comment |
How do you create a table with Sqlalchemy within a transaction in Postgres? @zzzeek Right. I wrongly thought both sess.execute(CreateTable(table)) and table.create(sess.connection()) do the same thing, and happen to like the former's syntax better. Turn out visit_table does a lot more than just CreateTable. |
|
Apr 2 |
comment |
How do you create a table with Sqlalchemy within a transaction in Postgres? @DavidK.Hess Hmm.. I have no experience with enum. The project I works on has to support different RDBMS, and enum is something that I would like to use but can't. |
|
Apr 2 |
comment |
How do you create a table with Sqlalchemy within a transaction in Postgres? Great :) Comment copied as answer. |
|
Apr 2 |
answered | How do you create a table with Sqlalchemy within a transaction in Postgres? |