3

当我使用@export 导出结果集时,它给了我'INSERT INTO abc.employee .......' 我需要从这里删除模式名称.....

我怎样才能得到像'INSERT INTO employee ......'这样的声明?

我正在使用以下方法

导出.sql:

@导出;

@export set filename="C:\exports\${dbvis-object}$_new.sql" format="sql" BinaryFormat="Base64";

从 abc.employee 中选择 *;

@export 关闭;

出口.bat:

调用 dbviscmd.bat -connection "xyz" -sql "@run export.sql;"

4

1 回答 1

3

SqlQualifyTableName在 DbVisualizer 9.2中重命名为SqlQualifyObjectName 。

于 2016-04-01T07:08:47.013 回答