📄 replicasqlserver.sql
字号:
-- ----------------------------------------------------------------------------
-- Written by Michele Laghi (michele.laghi@avitech-ag.com) 2005-08-09
-- THIS FILE IS THE INPUT FILE TO CONFIGURE THE NDB (TEST) FOR POSTGRES
-- to invoke use:
-- osql -E -i replicaSQLServer.sql
-- ----------------------------------------------------------------------------
-- create the test tables to be replicated (here two equal tables are created)
-- ----------------------------------------------------------------------------
use xmlBlaster
go
CREATE TABLE repltestrepl (uniqueId integer, name VARCHAR(50), surname text, email text,
photo image, PRIMARY KEY (name, uniqueId));
CREATE TABLE repltest2repl (uniqueId integer, name VARCHAR(50), surname text, email text,
photo image, PRIMARY KEY (name, uniqueId));
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -