|
Sharon, you may have had a dozen answers by now as my
posts seem to taking hours, if not days, to get posted back to me at the moment,
but you could try this:
Make a backup of the database first!!!
then...
Highlight and copy the table name including the strange
characters then type at the R:> prompt:
drop table [paste your copied text]
[Return]
If - and it's a big if - R:Base doesn't see that as a
system table them it might drop it for you. You can then reload the database and
a new proper sys_defaults should be created.
Alternatively, backup up the database to a file and then
edit the file with Wordpad or Edit, whatever you use, and correct the name. Then
restore the database.
eg:
out backup.txt; backup all; out screen
[edit backup.txt]
rename database db_old
run backup.txt
If you desperately need to keep the layouts you have you
could backup the data to a file first and then reload them once you have the
table name correct:
out layouts.bup; unload data for sys_layouts; out
screen
[do corrections]
run layouts.bup
Hope this helps,
Regards,
Alastair.
|
- SYS_LAYOUTS table - name error Sharon Lima
- Alastair Burr
