0
votes
1answer
23 views

Creating multiple transactions in a single hibernate session

I have created a Quartz Job which runs in background in my JBoss server and is responsible for updating some statistical data at regular interval (coupled with some database flags) To load and ...
0
votes
1answer
50 views

locking database table while deleting records - understanding “Read Committed” transaction isolation in postgresql

I have a web app that will provide a feature to delete a widget that belong to a user. The logic I have right now to do the delete looks like this: local delete_widget = function(widgetid, user) ...
2
votes
2answers
67 views

Activerecord transaction concurrency race condition issues

I'm currently doing live testing of a game I'm making for Android. The services are written in rails 3.1 and I'm using Postgresql. Some of my more technically savvy testers have been able to ...
2
votes
2answers
38 views

postgres deadlock without explicit locking

I use PostgreSQL 9.2, and I do not use explicit locking anywhere, neither LOCK statement nor SELECT ... FOR UPDATE. However, recently I got ERROR: 40P01: deadlock detected. The query where deadlock ...
3
votes
2answers
50 views

Keep SELECT from retrieving rows commited after the start of the transaction

Given this scenario: TIME TRANSACTION 1 TRANSACTION 2 1sec BEGIN 2sec INSERT RECORDS INTO T1 3sec (doing other things) BEGIN 4sec (doing other things) (doing other ...
1
vote
1answer
54 views

Spring hibernate insert race condition

I am currently having a race issue with Spring Hibernate (transaction by annotation on service and daoImpl classes). Here is what I have encountered: Tables: Device Type: id (serial), name Device: ...
1
vote
1answer
75 views

PostgreSQL - DB user should only be allowed to call functions

Currently I'm using PostgreSQL for my application. Since I am trying to put every SQL that contains a transaction (i.e. insert, update, delete) in a function, I stumbled upon this problem: Is it ...
1
vote
1answer
72 views

Locking Tables with postgres in JDBC

Just a quick question about locking tables in a postgres database using JDBC. I have a table for which I want to add a new record to, however, To do this for the primary key, I use an increasing ...
0
votes
1answer
41 views

NHibernate transaction not working properly on Postgres

I have common dll referenced by desktop application and web application. One of the methods creates 3 objects and inserts them into DB within transaction. However, when I call this method at the ...
0
votes
1answer
167 views

postgres - find out sql query from transaction id

I am running select * from pg_lock; to get transactions with exclusive locks. Once I know the transaction id that has exclusive lock, how can I find out sql query that is associated with that ...
3
votes
3answers
103 views

JDBC Transaction vs Connection Clarification

I am using JDBC to talk to my Postgres database. If my entire app runs off a single connection, ie there is only ever one call to; DriverManager.getConnection("jdbc:postgresql://host:5432/database", ...
1
vote
1answer
112 views

PostgreSQL Transaction fails: “there is no transaction in progress”

I've got a pretty long transaction I'm trying to execute using JDBC for PostgreSQL. In JDBC I can't use COMMIT and ROLLBACK, so I'm trying to implement my desired behaviour in Java code... try { ...
1
vote
1answer
67 views

PosgreSQL and SELECT FOR UPDATE LIMIT

Can you please explain me this strange behaviour: I have this stored procedure which tell me if a row is locked CREATE OR REPLACE FUNCTION tg_availablega_is_unlocked(availablega_id integer) ...
0
votes
2answers
67 views

PostgreSql - access modified rows in prepare command

I have the problem to access modified data (updates and inserts) in a prepared statement before a commit/rollback. For example consider the following block: BEGIN; do some update; do some ...
0
votes
1answer
58 views

Perl and Rose::DB Postgres Transactions

I've been struggling with this problem all day.. thought I would ask here, before I loose all my hair. Description I'm using Perl 5.10.1 with Rose::DB and PostgreSQL 8.4 (on Debian Linux). I need ...
0
votes
1answer
121 views

Nested transaction rollback between two savepoints?

For the three SQL types (MySql, SQLite and PostgreSQL) I want / need to handle save points identically. Now I have my application to change different entries in the database in one big transaction ...
1
vote
2answers
139 views

Rails not rolling back transaction after failed save()

I have this domain model: A user has group of items, and the state of the items can fail a validation. Validation works fine, and I even see exceptions get called when I use save!. In my controller, ...
0
votes
2answers
65 views

Database for long running transactions with huge updates

I build a tool for data extraction and transformation. Typical use case - transactionally processing lots of data. Numbers are - about 10sec - 5min duration, 200-10000 row updated (long duration ...
0
votes
1answer
44 views

How to detect a Prepared Transaction inside a trigger

I have a problem with existing database code (a trigger) that call a function trigger that use the NOTIFY command, which is not supported in the context of a prepared transaction. My question is ...
0
votes
1answer
70 views

How to create record in database only if it doesn't exists?

I have Ruby on Rails app in which user can upload multiple files to folders. Before uploading user can select folder or leave folder field empty. In the later case such folder need to be created ...
1
vote
1answer
209 views

PostgreSQL temporary table cache in memory?

Context: I want to store some temporary results in some temporary tables. These tables may be reused in several queries that may occur close in time, but at some point the evolutionary algorithm I'm ...
4
votes
1answer
509 views

PlayFramework 2 + Ebean - raw Sql Update query - makes no effect on db

I have a play framework 2.0.4 application that wants to modify rows in db. I need to update 'few' messages in db to status "opened" (read messages) I did it like below String sql = " UPDATE ...
1
vote
2answers
85 views

How can I commit all pending queries until an exception occurs in a python connection object

I am using psycopg2 in python, but my question is DBMS agnostic (as long as the DBMS supports transactions): I am writing a python program that inserts records into a database table. The number of ...
1
vote
1answer
468 views

Postgres setting autocommit off globally

How do you set autocommit off in psql 8.4 at a global level? is there a configuration attribute that i can change that will introduce this behaviour for all dbs on a cluster to start db sessions with ...
2
votes
1answer
179 views

rails activerecord transaction blocks don't seem to not commit

I've a rails app that I'm crashing on purpose.. it's local and I'm just hitting ctrl + c and killing it mid way through processing records.. To my mind the records in the block shouldn't have been ...
4
votes
2answers
141 views

“Repeatable read” vs Optimistic [closed]

What is the difference between concurrency control and transaction isolation levels? I understand each of them clearly, however, I am having some problems relating them to each other. Specifically, I ...
1
vote
1answer
208 views

postgresql.conf max_prepared_transactions doesn't work

I opened up my postgresql.conf file in the postgres data folder and changed the value of max_prepared_connections to a non-zero value. However, every time I try using a "PREPARE TRANSACTION ...
1
vote
2answers
105 views

Is it possible to wrap DDL changes in a transaction in PostgreSQL?

I know that in MySQL ddl statements such as alter table/create table/etc cause an implicit transaction commit. As we are moving to PostgreSQL is it possible to wrap multiple DDL statments in a ...
-3
votes
2answers
152 views

SQL transactions run on Postgres 9.0 but one is aborted on SQLServer 2005

Suppose we try to run concurrently the following two transactions: T1: BEGIN UPDATE place SET state_code=5 WHERE state_code=6 AND type='town' COMMIT T2: BEGIN UPDATE place SET ...
0
votes
1answer
149 views

How to get the result of SELECT statement inside a transaction?

I can't get information of that simple question over the PostgreSQL documentation, over the Web or even here on StackOverflow... I must not unsertand something essential here. I am making a simple ...
4
votes
1answer
412 views

Predicate locking in PostgreSQL 9.2.1 with Serializable isolation

I have been reading thoroughly the postgres documentation on transaction isolation suggested in other of my questions but I have not still managed to understand the "predicate locking" stuff. I hope ...
1
vote
1answer
533 views

Isolation level SERIALIZABLE in Spring-JDBC

maybe somebody can help me with a transactional issue in Spring (3.1)/ Postgresql (8.4.11) My transactional service is as follows: @Transactional(isolation = Isolation.SERIALIZABLE, readOnly = ...
0
votes
2answers
68 views

make statements in postgres function behave atomically

I have the following postgres function CREATE OR REPLACE FUNCTION refresh_materialized_view(name) RETURNS integer AS $BODY$ DECLARE _table_name ALIAS FOR $1; _entry materialized_views%ROWTYPE; ...
0
votes
1answer
285 views

are postgres functions transactional?

Is a postgres function such as the following automatically transactional? CREATE OR REPLACE FUNCTION refresh_materialized_view(name) RETURNS integer AS $BODY$ DECLARE _table_name ALIAS FOR ...
0
votes
2answers
605 views

Transaction time out workaround for PostgreSQL

AFAIK, PostgreSQL 8.3 does not support transaction time out. I've read about supporting this feature in the future and there's some discussion about it. However, for specific reasons, I need a ...
2
votes
1answer
147 views

PostgreSQL transaction variables

This question is sort of a follow up to this question, but it's different enough of a topic that I feel like it merits it's own discussion. For a bit of background, you can refer to it. As a part of ...
3
votes
2answers
770 views

Warning while testing specs on postgres: there is no transaction in progress

For each step of test occurs 2 lines: WARNING: there is already a transaction in progress NOTICE: there is no transaction in progress With Spork lines following triples: NOTICE: there is no ...
1
vote
2answers
124 views

Get values from RETURNING * within a transaction

When I have two INSERT SQL statements (see below) within a begin; and commit; transaction then the RETURNING * does not return anything but if I take out the begin; and commit; the RETURNING * does ...
0
votes
2answers
197 views

Do long running transactions bog down databases?

Note: I'm using Postgres 9.x and Django ORM I have some functions in my application which open a transaction, run a few queries, then do a couple full seconds of other things (3rd party API access, ...
1
vote
1answer
101 views

Transactions vs row marking for reliable SELECT + UPDATE

The problem: Given tables table_a and table_b, I need to reliably (and concurrently) perform an operation like this whenever table_a is updated: SELECT some rows from table_a. Compute something in ...
1
vote
1answer
130 views

PostgreSQL: Creating a large number of views

I am witnessing a strange behavior from Postgres. Here's what I am doing: I tried creating 10,000 temporary views as follows psqlStatement.executeUpdate("CREATE OR REPLACE TEMP VIEW " + ...
0
votes
1answer
85 views

PostgreSQL Transaction ID went backwards

In PostgreSQL 9.0, I have a table that keeps tracks of last processed transactions. For some reason, it went backwards (in time)! Here is the table data: seq_id | tx_id 628 | 10112 629 | 10118 ...
6
votes
1answer
355 views

Can multiple threads cause duplicate updates on constrained set?

In postgres if I run the following statement update table set col = 1 where col = 2 In the default READ COMMITTED isolation level, from multiple concurrent sessions, am I guaranteed that: In a ...
1
vote
2answers
190 views

Diagnosing a Sporadic Django/ Postgres “DatabaseError: current transaction is aborted”

I have a "DatabaseError: current transaction is aborted" that comes and goes (to be specific, 11 times out of 841) in a Django 1.3 project using Postgres. The project is a quiz site and the error ...
2
votes
2answers
256 views

Handling transaction conflict with SQLAlchemy

I'm relatively new to databases. I'm sure this is the sort of question that experience would answer. I'm using SQLAlchemy with PostgreSQL. I have a system set up where multiple processes spread ...
1
vote
1answer
114 views

should I blame PostgreSQL — transaction fails with DDL

some backgrounds: I have a workflow app(java ee.) which has nodes chained to be executed. PostgreSQL 9.1.2 is used with Spring TX management. nodes execute in its own transaction (required, read ...
0
votes
1answer
208 views

How to get high performance under a large transaction (postgresql)

I have data with amount of 2 millions needed to insert into postgresql. But it has played an low performance. Can I achieve a high-performance inserter by split the large transaction into smaller ones ...
3
votes
3answers
426 views

Database lock not working as expected with Rails & Postgres

I have the following code in a rails model: foo = Food.find(...) foo.with_lock do if foo.bars.find_by_stuff(stuff) # do something with the Bar else foo.bars.create! # do something ...
0
votes
1answer
83 views

How does ActiveRecord do data definition transactions with postgres?

Are data definition transactions the same as regular transactions? I want to write a migration that changes table A does some custom data migrations changes table B Ideally this would all be ...
4
votes
2answers
265 views

Dynamic data source routing in spring

I've single DB with three identical schema in PostgreSQL. Now I need to select particular schema for DB operation based on locale-key (store in user session). I found somewhere that this thing is ...

1 2 3