Questions tagged [locked]
244 questions
2
votes
1 answer
Where does Magento store the users locked information?
Where in the Magento database can I find the information about whether a user is locked or not? I checked all the customer_* tables but could not find something.
Thanks!

user1856596
- 7,027
- 10
- 41
- 63
2
votes
0 answers
Passing database object to remote Service ( on different process ) from my Activity
I have remote service running and collecting traffic which writes to my database. In my application i also use that database to read and write data. Sometimes i get "database locked" exception. I am using singleton pattern for my database object,…

BlastFire
- 317
- 1
- 5
- 15
2
votes
1 answer
PL/SQL Execute immediate exception handling inside for loop
In the below PL/SQL code, TABLE_ONE holds table name tname , column name cname and rowid rid. The For loop fetches records from TABLE_ONE and updates column cname in table tname for the record with row id rid. But if the record to be updated in…

user194210
- 33
- 1
- 1
- 5
2
votes
1 answer
DB4o database DatabaseFileLockedException
I would like to access the same db file from different programs in parallel. All programs are running on the same VM. Here is the code I use:
private ObjectContainer db;
public DatabaseManager(String dbName) {
ObjectServer server =…

ilija
- 543
- 1
- 11
- 19
1
vote
2 answers
Android onUpgrade() fails because database is locked, what should I do differently?
I have a project with a set of classes that are responsible for their respective database tables.
Each table managing class contains CRUD methods that follow the pattern of get connection, run crud operation, close connection:
public class…

Shellum
- 3,159
- 2
- 21
- 26
1
vote
2 answers
Keep application from crashing when phone sleep/locked
Hi guys as the title says I am trying to keep my application alive so to speak when the phone locks.
In detail my app would be open and running fine if I leave my phone alone for a while and unlock it my application is frozen and can't do anything.…

Phil Kearney
- 157
- 3
- 17
1
vote
4 answers
SQlite: Database is locked error
I am using SOA architecture for my android application. I am running a service continuously in background (after every 1 minute) that fetches the data from my MYSQL database and synchronizes it with my SQLite database (if there is any change in 2…

Neha
- 681
- 2
- 9
- 15
1
vote
2 answers
MySQL 'locked' processes when copying tmp table
I have a query which takes a very long time to run but produces a new table in the end. The actual joins are not all that slow but it spends almost all of its time in 'copying to tmp table' and during this time the status of all other queries…

hackartist
- 5,172
- 4
- 33
- 48
1
vote
1 answer
Eclipse Android project SVN checkout: folder locked
Trying to check out my Android project from an SVN repository, I got the following error:
0x0000000f: The folder 'E:\workspace\mc-01-02\project.properties' is locked by some external process. Please unlock the folder and try to check out the project…

Droppy
- 51
- 1
- 3
1
vote
1 answer
Error: The process cannot access the file
I use C# and try to merge some CSV files to one single CSV.
This works, but only once.
When I try it a second time I get
"The process cannot access the file "c:\test\CSV_merged.csv because it is being used by another process"
ProcessEplorer tells…

Spacewalker
- 451
- 1
- 8
- 29
1
vote
0 answers
Liquibase with Kubernetes, how to prevent DB being left in a locked state
Firstly, yes I have read this https://www.liquibase.com/blog/using-liquibase-in-kubernetes
and I also read many SO threads where people are answering "I solved the issue by using init-container"
I understand that for most people this might have…

Alexis
- 1,825
- 4
- 23
- 28
1
vote
0 answers
Are there any disadvantages of unlocking an account that is a role in MySQL
By default we have role as locked accounts
Here we create a demo role account -
CREATE ROLE role1;
GRANT SELECT ON *.* TO role1;
FLUSH PRIVILEGES;
Now, all role accounts by default are locked accounts. But we can unlock a role account.
SELECT…

Payel Senapati
- 1,134
- 1
- 11
- 27
1
vote
0 answers
Can I display the number of attemps by each locked account to connect in MySQL
To display the number of attempts by the locked accounts to connect we have the command -
SHOW GLOBAL STATUS LIKE "Locked_connects";
For example, I create two locked accounts - user1 and user2.
CREATE USER user1 IDENTIFIED BY "********" ACCOUNT…

Payel Senapati
- 1,134
- 1
- 11
- 27
1
vote
1 answer
Oracle for Update SKIP LOCKED and Left Join
In the moment I'm working on a DB migration and I need to migrate the query below from Sybase to Oracle, but I really don't know how to "translate" the 3 READPAST.
Could anyone help me pls?
SELECT CC.COURS_CLIENT_ID
, CC.TYPE_CLIENT
,…

Goncalo Bernardo
- 11
- 1
1
vote
1 answer
Current manipulator and active objects have no keyable attributes Error in Autodesk Maya
I am using Dana rig from Gabriel Salas. A controller named FKRoot_M cannot set a keyframe. I get the error // Warning: file: /Applications/Autodesk/maya2020/Maya.app/Contents/scripts/others/doSetKeyframeArgList.mel line 633: Current manipulator and…

SteFan89
- 11
- 1
- 4