on 2012 Aug 22 6:38 AM
I found a table named 'mt' and creator is dba, but in the code seems we didn't create it.
If the table create by db, it should be a sys table, but it showed as created by dba...Does sql anywhere 9.0 create any table as dba automatically? Since I didn't find this table using sqlanaywhere 10.0
Request clarification before answering.
As Breck has implied, SQL Anywhere does not (and has never) created a table named 'mt'. Perhaps it was a typo in syntax at one point...?
Do you have a complete transaction log for the database since it was initialized? You can try translating the transaction log using "dbtran" to a SQL file and look for "CREATE TABLE" statements.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
FWIW, looking for "ALTER TABLE ... RENAME " would also make sense.
If you don't have the according log, you still might be able to use the table_id value of that table (in systable) to find out whether that table was created before/after tables you are aware of, as table_ids are incremented chronologically - that might or might not give a clue...
Even the MobiLink tables start with the letters "ml", not "mt", and in Version 9 they were all owned by dbo.
So, no, mt was probably created after SQL Anywhere 9 was installed. If you show us what the table looks like (schema and data) perhaps someone will recognize what might have created it (if it was created by some other software package).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
47 | |
6 | |
6 | |
5 | |
5 | |
4 | |
4 | |
3 | |
3 | |
3 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.