摘要:
--Sql修改数据名 alter database 旧库名modify name = 新库名; --首先建立链接服务器EXEC sp_addlinkedserver 'instance1', '', 'MSDASQL', NULL, NULL, 'DRIVER={SQL Server};SERVER 阅读全文
摘要:
oracle游标的使用方法: ①、定义游标 cursor②、打开游标 open③、提取游标 fetch④、关闭游标 closedeclare --类型定义 cursor c_job is select empno,ename,job,sal from emp where job='MANAGER'; 阅读全文
摘要:
create or replace function comm.fun_getagebybirthday(adt_birthday date) return varchar2 is s_Result varchar2(50);begin select case when year_num >= 8 阅读全文
摘要:
sqlserver数据库中,查询前10行数据是 top select top 10 * from 表名 在oracle数据库中,查询前10行数据是 rownum select * from 表名 where rownum <=10 在mpp数据库中,查询前10行数据是 limit select * 阅读全文
摘要:
sqlplus / as sysdbasqlplus sys/oracle@orclsqlplus sys/oracle@hisdb1 as sysdb切换用户su -oracle启动监听lsnrctl start关闭监听lsnrctl stop 阅读全文