Saving a saved table does not allow you to save a safe table?

I am new and I am using IBM RAD based on Eclipse. After installation, I deleted some files that did not seem to be needed in C: \ workspace. Now I get this error: enter image description here "The periodic table of the workspace could not be saved, the file could not be found, the file table could not be saved in C: \ workspace.metadata ..." Could you say what should I do to resolve the error? Thanks

+4
source share
3 answers

Recover deleted files.

If you don’t have a way to do this, create a new workspace ( File > Switch workspace > Other ... ), and then import your projects from the old to the new.

+2
source

If you get this error on a Linux environment, just update the file ownership below and make the owner the same as the owner of the workspace folder:

<workspace>/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources 

This solution works for Eclipse version 4.3

+4
source

This error message occurred to me when I copied old project files and imported (all) files into a new project. I did the following and solved the problem:

  • Created a new workspace and switched the current workspace to this
    one and close eclipse.
  • Created the missing folder, in this case, "org.eclipse.core.resources".
  • In Eclipse, I switched to the previous workspace and started working with Eclipse. After a while, Eclipse created the necessary files and the error message disappeared.
+1
source

Source: https://habr.com/ru/post/1399365/


All Articles