Component Integration Services only Specifies the mapping between a local table and an external storage location.
sp_addobjectdef tablename, objectdef [,"objecttype"]
is the name of the object as it is defined in a local table. The tablename can be in any of the following forms:
dbname.owner.object
dbname..object
owner.object
object
dbname and owner are optional. object is required. If you do not specify an owner, the default (current user name) is used. If you specify a dbname, it must be the current database name, and you must specify owner or mark the owner with a placeholder in the format dbname..object. Enclose any multipart tablename values in quotes.
is a string naming the external storage location of the object. The objecttype at objectdef can be a table, view, or read-only remote procedure call (RPC) result set accessible to a remote server. A table, view, or RPC uses the following format for objectdef:
server_name.dbname.owner.object
server_name and object are required. dbname and owner are optional, but if they are not supplied, a placeholder in the format dbname..object, is required.
See “Server Classes” in the Component Integration Services User’s Guide for more information.
is one of the values that specify the format of the object named by objectdef.. Table 1-2 describes the valid values. Enclose the objecttype value in quotes.
Table 1-3 summarizes how each objecttype is used.
objecttype |
create table |
create existing table |
Write to table |
Read from table |
---|---|---|---|---|
table |
Yes |
Yes |
Yes |
Yes |
view |
No |
Yes |
Yes |
Yes |
rpc |
No |
Yes |
No |
Yes |
Maps the local table accounts in the database finance to the remote object pubs.dbo.accounts in the remote server named SYBASE. The current database must be finance. A subsequent create table creates a table in the pubs database. If pubs.dbo.accounts is an existing table, a create existing table statement populates the table finance.dbo.accounts with information about the remote table:
sp_addobjectdef "finance.dbo.accounts", "SYBASE.pubs.dbo.accounts", "table"
Maps the local table stockcheck to an RPC named stockcheck on remote server NEWYORK in the database wallstreet with owner “kelly”. The result set from RPC stockcheck is seen as a read-only table. Typically, the next operation would be a create existing table statement for the object stockcheck:
sp_addobjectdef stockcheck, "NEWYORK.wallstreet.kelly.stockcheck", "rpc"
sp_addobjectdef specifies the mapping between a local table and an external storage location. It identifies the format of the object at that location.You can use sp_addobjectdef only when Component Integration Services is installed and configured.
sp_addobjectdef replaces the sp_addtabledef command. sp_addobjectdef allows existing scripts to run without modification. Internally, sp_addtabledef invokes sp_addobjectdef.
Only the System Administrator can provide the name of another user as a table owner.
When objecttype is table, view, or rpc, the objectdef parameter takes the following form:
"server_name.database.owner.tablename"
server_name – represents a server that has already been added to sysservers by sp_addserver.
database – may not be required. Some server classes do not support it.
owner – should always be provided, to avoid ambiguity. If you do not specify owner, the remote object referenced may vary, depending on whether or not the external login corresponds to the remote object owner.
tablename – is the name of a remote server table.
Use sp_addobjectdef before issuing any create table or create existing table commands. create table is valid only for the objecttype values table and file. When either create table or create existing table is used, Adaptive Server checks sysattributes to determine whether any table mapping has been specified for the object. Follow the objecttype values view and rpc with create existing table statements.
After the table has been created, all future references to the local table name (by select, insert, delete and update) are mapped to the correct location.
Any user can execute sp_addobjectdef.
Values in event and extrainfo columns from the sysaudits table are:
Event |
Audit option |
Command or access audited |
Information in extrainfo |
---|---|---|---|
38 |
exec_procedure |
Execution of a procedure |
|
Commands create existing table, create table, drop table
System procedures sp_addlogin, sp_addserver, sp_defaultloc, sp_dropobjectdef, sp_helpserver
Copyright © 2005. Sybase Inc. All rights reserved. |