oracle数据库备份命令exp 用户名/密码@orcl file=d:\xxxxxx.dmp owner=用户名 oracle数据库还原命令sqlplus conn / as sysdba drop user 用户名 cascade; create user 用户名 identified by 密码 account unlock; grant connect,dba,imp_full_database to 用户名; imp 用户名/密码@orcl full=yes file=d:\bak\x
--获取所有数据库的名称 select [name] from master.dbo.sysdatabases where [name]='master' --判断数据库是否存在 if exists(select [name] from master.dbo.sysdatabases where [name]='master') begin ; end else begin ; end --分离数据库-----要先获取所有的数据库 if exists(select [name] from mas
DHCP服务器如果要更换,最简单的方法就是命令导入导出 导出netsh dhcp server export e:\dhcp.txt all 导入netsh dhcp server import c:\dhcp.txt all 参考文档 http://www.searchsv.com.cn/showcontent_87373.htm DHCP服务器数据库迁移:从Windows Server 2003到2012 R2
http://www.mamicode.com/info-detail-2481866.html sql语句 system用户登陆 查看表空间和存放位置 select t1.name,t2.name from v$tablespace t1,v$datafile t2 where t1.ts# = t2.ts#; 查看所有表空间的大小 select tablespace_name,sum(bytes)/1024/1024 from dba_data_files group by tablespa