如何在 sybase 中删除 proxy_table
How to drop proxy_table in sybase
如何在 sybase 中删除代理 table?
我是这样创建的
CREATE PROXY_TABLE tab1 AT 'server.db.dbo.tab1'
如何删除它?我试过这样
DROP PROXY_TABLE tab1
我不敢像这样应用它,但是否可以在第二个服务器中删除另一个 table?
drop table tab1
为了防止 drop table 命令被中继到您的远程系统,您需要打开跟踪标志 11211
From page 68 of the CIS guide:
Traceflag 11211: Prevents the drop table syntax from being forwarded to remote servers if the table was created using the create table at location syntax.
如何在 sybase 中删除代理 table?
我是这样创建的
CREATE PROXY_TABLE tab1 AT 'server.db.dbo.tab1'
如何删除它?我试过这样
DROP PROXY_TABLE tab1
我不敢像这样应用它,但是否可以在第二个服务器中删除另一个 table?
drop table tab1
为了防止 drop table 命令被中继到您的远程系统,您需要打开跟踪标志 11211
From page 68 of the CIS guide:
Traceflag 11211: Prevents the drop table syntax from being forwarded to remote servers if the table was created using the create table at location syntax.