You have to specifically enable the capability on Firefox:
Go to "Tools->Options...", then the "Content" panel, and click the "Advanced" button near the "Enable JavaScript" checkbox.
On the resulting "Advanced Javascript
Settings" window, check "Change status bar text". Then "OK", "OK".
Javascript will now be able to write to the status bar.
Commands fail with message: Lockit can't create lockfile after [10] tries
Sablime commands that update the database use a lockfile mechanism so that two commands can't update the same file at the same time.
These lockfiles exist for a very short period of time, usually. Sablime creates them, and then removes them when it is done. An extraordinary event such as a system or network failure, or sometimes even a command interruption, can prevent Sablime from removing the lock file, causing other commands that try to update that particular database file to fail, and report an error message:
*SYS_ERR* Message Number [999] From: LockIt.c [Version 19.1.1.1].
Lockit can't create lockfile after [10] tries.
Please Notify Your Sablime System Administrator Immediately.
Resolution:
Look in the DBA Warning file at $sabGDB/tmp/product_dbawarn.
The "can't create lockfile" error message will also be recorded in this file, and it will mention the specific file that caused the problem, for example:
04/26/05 17:36:02 [pmr] approve @(#) LockIt.c [Version 19.1.1.1] - dba_msg: Loc
kit can't create lockfile [/home/sabprod/databases/adb/sab/DBLOCK/MD/mg] after [
10] tries.
Locate that lockfile (in the above example, it is /home/sabprod/databases/adb/sab/DBLOCK/MD/mg). If the file is more than a few minutes old, it is extremely unlikely to be associated with a currently running command. Remove the file ("mg" in the above example).
|
Edget fails with message: You are not a owner of file
In this case, apparently, the file has an owner, and it is not you.
Normally, files do not have owners, but if someone needs to have tighter control over changes to a file, they can declare an owner. Only the owner of a file
may change it.
Resolution:
You can see who the owner is by typing:
$ ssql sfile dir owner from GS where sfile.eq.filename and g.eq.generic
This will display the name, directory, and owner of each file that has that filename.
To remove or change the owner of a file, use the "source" command on the host.
See the "File Ownership" page of the Usage Guide (Sablime Documentation) for more information.
|
Eclipse displays empty "Directory on Server" Box
After selecting "File->Import..."; and then "Sablime Project"; then entering the URL, User Name, and Password; entering a proper Product Name, Generic, and MR number; and selecting "Get Files From: Directory in Sablime"; the next page shows a "Directory on Server" box that's empty.
Checking on the regular Web Sablime interface, using the "Browse Files" function and selecting that same server, product, and generic, it is apparent that there are directories defined for that generic.
(The same problem is seen when approaching this page starting at "Team->Share Project")
Resolution:
The problem here is that there is one or more blank lines in the "Directory Structure" file on the Sablime server.
Edit the file on your server (at $sabGDB/DIR/<generic_name>) and remove the blank line(s).
|
Query returns empty or bad results - even though DB is known to be correct.
A customer reports that the command "query relation=MG mrgstat=nochange prompt=n" returns no MRs, even though there are MRs known to be in the nochange state.
Resolution:
The problem was that the customer had a group named "nochange" in his database. The query command expanded the contents of that group as the argument for the "mrgstat=" option.
Renaming the group to some non-keyword name resolved the problem.
|
Web getversion creates @LongLink files on the web client.
Web getversion on the host uses either the "jar" or the "tar" program to package the set of files it sends to the web client. It prefers the more efficient "jar" but will use "tar" if it cannot find "jar".
Some implementations of "tar" create these "@LongLink" files when the actual file name is too long for it to handle (> 100 chars). The "@LongLink" file contains the real file name. This method requires that the version of "tar" runningon the receiving machine understand how to handle these as well, otherwise the "@LongLink" files remain.
Workaround:
Ensure that Sablime's getversion finds a "jar" command to use, by creating a symbolic link in host Sablime bin to the location of "jar":
$ cd $sabLCB
$ ln -s /usr/bin/jar
|