查询DBlink连接

select sysdate from dual@HN_HMP;

获取DBlink连接的库的时间。

select * from phip_qa_object_base_info@DBHNHMP;

各省质控编码,

select * from dw_dim_area;

select * from dw_dim_county t where t.dim_area ='419900000000';


-- Create table

create table PHIP_GOV_STAFF_INFO

(

id                        VARCHAR2(36) not null,

name                      NVARCHAR2(128) not null,

login_name                VARCHAR2(36) not null,

gender_code               VARCHAR2(2),

birth_time                DATE,

birthplace_addr           NVARCHAR2(512),

id_no                     VARCHAR2(18),

technical_code            NVARCHAR2(128),

employer_addr             NVARCHAR2(512),

employer_tel_no           VARCHAR2(36),

effective_time_low        DATE,

effective_time_high       DATE,

affiliated_org_admin_code VARCHAR2(128),

status_code               NVARCHAR2(36),

is_permanent              NUMBER(1),

title_code                VARCHAR2(36),

title_date                DATE,

attend_work_date          DATE,

nation_code               VARCHAR2(36),

education_level_code      VARCHAR2(36),

create_at                 DATE,

create_by                 VARCHAR2(36),

modify_by                 VARCHAR2(36),

modify_at                 DATE,

state                     NUMBER(1)

)

tablespace TBL_PHIP

pctfree 10

initrans 1

maxtrans 255

storage

(

initial 64

next 1

minextents 1

maxextents unlimited

);

-- Add comments to the table

comment on table PHIP_GOV_STAFF_INFO

is '行政人员信息表';

-- Add comments to the columns

comment on column PHIP_GOV_STAFF_

INFO.id

is 'ID';

comment on column PHIP_GOV_STAFF_

INFO.name

is '姓名';

comment on column PHIP_GOV_STAFF_INFO.login_name

is '登录名称';

comment on column PHIP_GOV_STAFF_INFO.gender_code

is '性别';

comment on column PHIP_GOV_STAFF_INFO.birth_time

is '出生日期';

comment on column PHIP_GOV_STAFF_INFO.birthplace_addr

is '出生地址';

comment on column PHIP_GOV_STAFF_INFO.id_no

is '身份证号';

comment on column PHIP_GOV_STAFF_INFO.technical_code

is '职务';

comment on column PHIP_GOV_STAFF_INFO.employer_addr

is '工作地址';

comment on column PHIP_GOV_STAFF_INFO.employer_tel_no

is '联系电话';

comment on column PHIP_GOV_STAFF_INFO.effective_time_low

is '有效期开始';

comment on column PHIP_GOV_STAFF_INFO.effective_time_high

is '有效期结束';

comment on column PHIP_GOV_STAFF_INFO.affiliated_org_admin_code

is '所属行政机构编码';

comment on column PHIP_GOV_STAFF_INFO.status_code

is '账号状态';

comment on column PHIP_GOV_STAFF_INFO.is_permanent

is '是否是在编人员';

comment on column PHIP_GOV_STAFF_INFO.title_code

is '职称';

comment on column PHIP_GOV_STAFF_INFO.title_date

is '职称取得时间';

comment on column PHIP_GOV_STAFF_INFO.attend_work_date

is '参加工作时间';

comment on column PHIP_GOV_STAFF_INFO.nation_code

is '民族';

comment on column PHIP_GOV_STAFF_INFO.education_level_code

is '教育程度';

comment on column PHIP_GOV_STAFF_INFO.state

is '状态';

你可能感兴趣的:(查询DBlink连接)