My current "project" from which this question comes is mentioned in the following thread:
thread1177-1635292
This may be a dumb question, but at this point, I figure why not ask it anyway.
Currently, where I work, if I want to select data from a table from a system of ours, it shows in Access (imported/linked tables) as SystemName_TableName where SystemName represents the system using the table... so perhaps that's the shema or owner?
Anyway, so that brings me to this question:
If I create a table, such as this:
Then from Access, would I reference it as just MyTable?
Or would I need to reference it somehow by User.TableName or User_TableName?
It seems that the SystemName_TableName is how it shows in the Access ODBC connection, but within the SQL Plus application accessing the Oracle server, it shows as SystemName.TableName.
Thanks for any thoughts, references, suggestions.
thread1177-1635292
This may be a dumb question, but at this point, I figure why not ask it anyway.
Currently, where I work, if I want to select data from a table from a system of ours, it shows in Access (imported/linked tables) as SystemName_TableName where SystemName represents the system using the table... so perhaps that's the shema or owner?
Anyway, so that brings me to this question:
If I create a table, such as this:
Code:
CREATE TABLE MyTable (FruitID number, Fruit varchar(15));
Then from Access, would I reference it as just MyTable?
Or would I need to reference it somehow by User.TableName or User_TableName?
It seems that the SystemName_TableName is how it shows in the Access ODBC connection, but within the SQL Plus application accessing the Oracle server, it shows as SystemName.TableName.
Thanks for any thoughts, references, suggestions.