Search Results

0
votes

Why are relational set-based queries better than cursors?

The idea behind preferring to do the work in queries is that the database engine can optimize by reformulating it. That's also why you'd want to run EXPLAIN on your query, to see what the db is …
1
vote

cx_Oracle - what is the best way to iterate over a result set?

There's also the way psyco-pg seems to do it... From what I gather, it seems to create dictionary-like row-proxies to map key lookup into the memory block returned by the query. In tha …
0
votes

SQL set-based range

This is basically one of those things that reveal SQL to be less than ideal. I'm thinking maybe the right way to do this is to build a function that creates the range. (Or a generator.) I b …
0
votes

How do you get output parameters from a stored procedure in Python?

You might also look at using SELECT rather than EXECUTE. EXECUTE is (iirc) basically a SELECT that doesn't actually fetch anything (, just makes side-effects happen). …
2
votes

“Pivoting” a Table in SQL (i.e. Cross tabulation / crosstabulation)

Bill Karwin mentions this, but I think this deserves to be pointed out very clearly: SQL doesn't do what you're asking for, so any "solution" you get is going to be a kludge. …
0
votes

SQL stored procedure temporary table memory problem

You probably want to process this piecewise in some way. (I assume queries are a lot more complicated that you showed?) In that case, you'd want try one of these: Write your stored pr …