摘要:
#1 一:net use \\ip\ipc$ " " /user:" " 建立IPC空链接 net use \\ip\ipc$ "密码" /user:"用户名" 建立IPC非空链接 net use h: \\ip\c$ "密码" /user:"用户名" 直接登陆后映射对方C:到本地为H: net use h: \\ip\c$ 登陆后映射对方C:到本地为H: net use \\ip\ipc$ /del 删除IPC链接 net use h: /del 删除映射对方到本地的为H: 阅读全文
摘要:
1.建立类型 create or replace type R_EXP_CAT as object( EXPENDITURE_CATEGORY VARCHAR2(30), LABOR_FLAG NUMBER(1,0), NONLABOR_TYPE NUMBER(1,0));2.建立Collection create or replace type T_EXP_CAT as table of R_EXP_CAT;3.建立函数 create or replace function GET_EXP(ntype in integer) return t_exp_cat pipelined is v r 阅读全文