i faced an message like " Can't set semaphore, another process is writing access file, try again later " when am trying to create accessfile , please feed me back as soon as possible
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
If you're really sure that no other process access the file, go to your database and readout the "workinfo" table. The last entry need to be set to "closed"
very thanx M.maik
i was checked the table "workinfo" and the last entry is closed ,
but how can i be sure the no other process accessing the file ?
again thanxx for reply :)
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
i faced an message like " Can't set semaphore, another process is writing access file, try again later " when am trying to create accessfile , please feed me back as soon as possible
If you're really sure that no other process access the file, go to your database and readout the "workinfo" table. The last entry need to be set to "closed"
| 804039 | 2016-09-22 09:20:02 | createaccessfile | closed | sem |
| 804040 | 2016-09-22 09:20:05 | createauthuserfile | closed | sem |
If not, set it manually or delete the "open" entry.
very thanx M.maik
i was checked the table "workinfo" and the last entry is closed ,
but how can i be sure the no other process accessing the file ?
again thanxx for reply :)
please query the table with
select * from workinfo where status like 'open';
and if you get a result, fix it with
update workinfo set status = 'closed' where status like 'open';
thnx M.maik
everything now is fine :)