application hanging while commit a set of rows in ASA7.0, it doesn't show an error message and doesn't succeed, can anyone know how to resolve this

asked 25 Nov '13, 05:29

kvraman03's gravatar image

kvraman03
32336
accept rate: 0%

edited 26 Nov '13, 08:45

Volker%20Barth's gravatar image

Volker Barth
40.0k361549819

Is the database running with or without a transaction log?

(25 Nov '13, 13:21) Mikel Rychliski

How large was the set of rows? Committing a very large transaction can take time.

permanent link

answered 25 Nov '13, 13:10

John%20Smirnios's gravatar image

John Smirnios
11.9k396164
accept rate: 38%

thanks guys, thank you john, actually it happened because of too many rows(more than 6000),partially i have done commit then it worked.. so the problem was too many rows

(26 Nov '13, 07:41) kvraman03

This is usually because another connection has either the data or structure locked, and your connection is waiting.

Are there other connections? Look in the help file about BLOCKING.

permanent link

answered 25 Nov '13, 06:49

Justin%20Willey's gravatar image

Justin Willey
7.6k137179249
accept rate: 20%

edited 25 Nov '13, 06:49

2

The locks are taken as the rows are modified, not during the commit. The commit should not block.

(25 Nov '13, 13:11) John Smirnios
Replies hidden

That's what comes of not reading the question! I failed to take on board the "commit" bit!

(26 Nov '13, 08:47) Justin Willey
Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "title")
  • image?![alt text](/path/img.jpg "title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Question tags:

×275
×59
×13

question asked: 25 Nov '13, 05:29

question was seen: 1,863 times

last updated: 26 Nov '13, 08:47