- 浏览: 328409 次
文章分类
- 全部博客 (116)
- Oracle (29)
- MySQL (2)
- Java (20)
- .NET (2)
- Javascript (4)
- Spring (6)
- Struts (6)
- Hibernate (16)
- JSP (6)
- Tomcat (1)
- Quartz (2)
- RCS (1)
- Translate (12)
- PL/SQL (5)
- Sqlplus (1)
- System (6)
- Linux (11)
- Ubuntu (9)
- Windows (10)
- Mac (2)
- Tools (8)
- Mercurial (1)
- Google Code (1)
- Subversion (1)
- Debian (2)
- Freemarker (6)
- Web (2)
- PHP (1)
- Nginx (1)
最新评论
-
sunday1207:
private Class getParameterizedT ...
java 中 BaseDao 在Hibernate中的用法 -
SkimSkim:
你这里的解压是把文件夹11下面的所有文件都放在ins这个文件夹 ...
ubuntu 在终端使用 sqlplus 连接远程数据库 -
as619864232:
漫步邃思 写道其实常用的就那么几个命令,大部分都用不到的是啊, ...
windows cmd 命令 -
漫步邃思:
其实常用的就那么几个命令,大部分都用不到的
windows cmd 命令
数据导出:
1 将数据库TEST完全导出,用户名system 密码manager 导出到D:\daochu.dmp中
exp system/manager@TEST file=d:\daochu.dmp full=y
2 将数据库中system用户与sys用户的表导出
exp system/manager@TEST file=d:\daochu.dmp owner=(system,sys)
3 将数据库中的表inner_notify、notify_staff_relat导出
exp aichannel/aichannel@TESTDB2 file= d:\datanewsmgnt.dmp tables=(inner_notify,notify_staff_relat)
4 将数据库中的表table1中的字段filed1以"00"打头的数据导出
exp system/manager@TEST file=d:\daochu.dmp tables=(table1) query=" where filed1 like '00%'"
上面是常用的导出,对于压缩,既用winzip把dmp文件可以很好的压缩。
也可以在上面命令后面 加上 compress=y 来实现。
数据的导入
1 将D:\daochu.dmp 中的数据导入 TEST数据库中。
imp system/manager@TEST file=d:\daochu.dmp
imp aichannel/aichannel@TEST full=y file=d:\datanewsmgnt.dmp ignore=y
上面可能有点问题,因为有的表已经存在,然后它就报错,对该表就不进行导入。
在后面加上 ignore=y 就可以了。
2 将d:daochu.dmp中的表table1 导入
imp system/manager@TEST file=d:\daochu.dmp tables=(table1)
IMP:
silent silent: display banner information, default is N trace trace option: enable sql_trace and timed_stat, default is N resumable resumable option: enable resumable session, default is N resumable_timeout resumable_timeout option: wait time for resumable resumable_name resumable_name option: SQL statements to be resumable userid user/password to connect to oracle: no default recordlength record length of file: optional, default is system dependent file import file names: format is (file1, file2...) default is EXPDAT.DMP show list contents of import file only: default is N ignore ignore create error due to object existence: default is N grants import grants option: default is T rows import rows option: default is Y full import entire database: default is N fromuser users to import: format is '(user1,user2,..,userN)' touser import into: format is '(user1,user2,..,userN)' tables tables to import: format is '(table1, table2,...,tableN)' buffer buffer size: default is system dependent (IMPDBFS) parfile Parameter file: name of file that contains parameter specifications indexes import indexes option: default is Y constraints import constraints option: enable constraints, default is Y inctype incremental import option: system or restore commit commit option: whether to commit after each array insert, default is N help help: display descriptions on import parameters, default is N indexfile write table/index information to specified filename log log import messages to specified file destroy destroy (reuse) tablespace datafiles, default is N charset character set of export file (if not exact) feedback feedback in rows default is IMPFDB point_in_time_recover Point-in-time-Recover option: default is N analyze execute ANALYZE statements in dump file: default is Y skip_unusable_indexes skip maintenance of unusable indexes: default is N filesize file size: the size of export dump files toid_novalidate types not to validate: format is '(type1, type2,...typeN)' recalculate_statistics recalculate statistics: (yes, no) statistics statistics: (always, safe, none, recalculate) transport_tablespace Transport Tablespace Mode: default in N tts_owners transport validation: format is (owner1, owner2...) datafiles transport datafile destination names: format is (file1, file2...) tablespaces transport validation: format is (tsn1, tsn2...) compile compile packages, procedures, and functions: enable compile, default is Y icache icache import modes: users or dependencies streams_configuration Enable STREAMS_CONFIGURATION, default is Y streams_instantiation Enable STREAMS_INSTANTIATION, default is N metrics metrics: display performance metrics, default is N data_only import data only: default is N Import: Release 11.2.0.1.0 - Production on 星期一 9月 17 19:15:10 2012 Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved.
EXP:
template IAS Template to be used silent silent: display banner information, default is N metrics metrics: display performance information, default is N userid user/password to connect to oracle: no default recordlength record length of file: optional, default is system dependent buffer array fetch buffer size: default is EXUAFCH (4096) file export file names: format is (file1, file2...) default is EXPDAT.DMP full export entire database: default is N grants export grants option: default is Y rows export rows option: default is Y compress compact extents option: default is Y trace trace option: enable sql_trace and timed_stat, default is N resumable enable resumable session : default is N resumable_timeout resumable_timeout: wait time for resumable resumable_name resumable string: SQL statements to be resumable owner users to export: format is '(user1, user2, .., userN)' tables tables to export: format is '(table1, table2, ..., tableN)' parfile parameter file: name of file that contains parameter specifications indexes export indexes option: default is Y inctype incremental export option: (incremental, cumulative or complete) record option to record incremental/cumulative export: default is Y constraints export table constraints option: default is Y consistent provide read-consistency for the entire export: default is N help help: display descriptions on export parameters, default is N log log export messages to specified file statistics analyze option: (estimate, cumulative, none) feedback feedback in rows default is EXUFDB direct direct path option: default is N point_in_time_recover point-in-time recover option: default is N tts_full_check TTS perform strict test for objects in recovery set: default is N tablespaces tablespaces to transport or recover: format is '(ts1, ts2, ..., tsN)' query query used to select a subset of rows for a table filesize file size: the size of export dump files transport_tablespace transportable tablespace option: default is N triggers export triggers option: default is Y impparfile file to create as paramfile for IMP for transportable tablespaces file_format format of export file names flashback_time database time to be used for flashback export: no default flashback_scn system change number to be used for flashback export: no default object_consistent Provides consistency for registered objects during execution of procedureal callback: default is N Export: Release 11.2.0.1.0 - Production on 星期一 9月 17 19:17:01 2012 Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved.
发表评论
-
装完 Debian 时 vim 没颜色高亮
2012-11-18 20:40 1130vim /etc/vim/vimrc 去掉 syntax ... -
Mysql 与 Oracle 的一些区别
2012-10-01 13:17 1503周五去一家公司去面试,那公司经理问了关于Mysql与Oracl ... -
IDM 激活
2012-09-13 19:44 2082打开 C:\WINDOWS\system32\drivers\ ... -
ubuntu 在终端使用 sqlplus 连接远程数据库
2012-08-27 14:54 4019在 http://www.oracle.com/technet ... -
在 KDE 下不能正常使用 fcitx 以及翻页问题
2012-08-22 21:18 5545在 kde 下使用 fcitx 的时候,不能在某些地方使 ... -
Oracle 批量操作
2012-08-13 12:44 955简单的写一个批量赋予权限的语句备用,其他类似: sel ... -
windows 使用 Chrome | Firefox + IDM 实现多人同时下载
2012-08-02 20:19 3860开头: Chrome 中安装插件:Tampermonke ... -
MVC
2012-07-19 19:10 1319MVC模式(三层架构模 ... -
aria2 的使用
2012-07-14 23:38 8574Usage Sample This p ... -
GoldenDict 在 Ubuntu 中的安装
2012-07-13 18:36 2163apt-get install goldendict ... -
Oracle 中的 FORALL 语句
2012-04-13 11:52 15040当要在 Oracle 中之心批量 INSERT、UPDATE ... -
Oracle 中的游标用法
2012-04-10 16:38 1530循环将游标中的数据提取出来并放置2个变量中输出 SQL ... -
PL/SQL 记录
2012-04-09 16:36 1045PL/SQL 中可以使用 %ROWTYPE 作为一张表的行作为 ... -
PL/SQL 索引表、嵌套表、变长数组的区别
2012-04-08 13:38 1134索引表 嵌套表 变长数组 ... -
oracle 中的循环
2012-04-06 09:36 1415一、LOOP 循环是最简单的循环,也是无限循环,只能用 EXI ... -
oracle 中的动态 SQL
2012-04-06 09:36 1083在 PL/SQL 块中,可以使用 DDL 语句和事物控制语句, ... -
oracle 中的 CASE
2012-04-05 15:42 1204oracle 中的 CASE 可以作为一个选择控制语句,可以根 ... -
oracle 中的属性数据类型
2012-04-05 15:17 1652当需要数据库表中的某行作为一个数就类型时,就需要 %ROWTY ... -
oracle 中的 SELECT...INTO 语句
2012-04-05 15:03 2669SELECT...INTO 语句可以给多个值同时赋值,届时两边 ... -
oracle 中的表分区
2012-04-05 14:47 1075当数据库的数据不断扩大时,这时可以考虑是用表分区,查询时可以根 ...
相关推荐
基于S7-300PLC与MCGS6.2的饮料罐装生产线自动化控制系统设计,包含仿真、程序、IO表与电气原理,实现自动操作、灌装报警及瓶数记录功能。,基于PLC的饮料罐装生产线控制系统设计。 S7-300PLC MCGS6.2仿真 仿真,程序,IO表,电气原理图,6500字说明。 实现功能有: (1)系统通过开关设定为自动操作模式,一旦启动,则传送带的驱动电机启动并一直保持到停止开关动作或罐装设备下的传感器检测到一个瓶子时停止;瓶子装满饮料后,传送带驱动电机必须自动启动,并保持到又检测到一个瓶子或停止开关动作。 (2)当瓶子定位在灌装设备下时,停顿1秒,罐装设备开始工作,灌装过程为5秒钟,罐装过程应有报警显示,5秒后停止并不再显示报警。 (2)用两个传感器和若干个加法器检测并记录空瓶数和满瓶数,一旦系统启动,必须记录空瓶和满瓶数,设最多不超过99999999瓶。 (4)可以手动对计数器清零(复位)。 ,关键词:S7-300PLC; MCGS6.2仿真; 传送带驱动电机; 传感器检测; 瓶装; 空瓶数; 满瓶数; 报警显示; 自动操作模式; 灌装设备。,基于S7-300PLC的饮料罐装
python加密货币时间序列预测源码+数据集-最新出炉 加密货币分析: 对各种加密货币的数据进行分析和研究。可能会使用到从各种来源收集的数据,包括但不限于加密货币的价格、市值、交易量、交易时间等信息。 探索加密货币市场的趋势和模式,例如价格的波动情况、不同加密货币之间的相关性等。 数据处理与操作: 可能使用 Python 语言(Kaggle 上常用的数据分析语言),并运用一些数据处理和分析的库,如 pandas 用于数据的读取、清洗、整理和转换操作,将原始的加密货币数据转换为更易于分析的格式。 可视化展示: 通过可视化工具,如 matplotlib 或 seaborn 库,将加密货币的信息以图表的形式展示出来,以帮助直观地理解数据中的关系和趋势。 统计分析或预测: 可能会进行一些基本的统计分析,如计算加密货币价格的均值、中位数、标准差等统计量,以描述数据的特征。 或者使用机器学习或时间序列分析的方法对加密货币的价格进行预测,根据历史数据预测未来价格走势。 例如,使用 scikit-learn 进行简单的回归分析: 数据挖掘与特征提取: 挖掘加密货币数据中的特征,如找出影响价格的关键因素,对数据中的特征进行筛选和提取,以帮助更好地理解加密货币的市场行为。
类和对象、继承、封装、多态、接口、异常
gee python相关教程
夜间灯光强度(平均灯光强度)的高低反映了一个地区城市化发展的水平,平均灯光强度越高,说明该地区城市群越多,城市化程度越高。夜间灯光数据现在越来越广泛地应用于经济增长分析、经济地理、城市经济学、数字经济等众多领域。 本数据包括三套: [1]中国类DMSP-OLS灯光数据1992-202 [2]中国超长序列灯光数据1984-2020 [3]全球类NPP-VIIRS夜间灯光数据2000-2022 包括:全国各省、市、县夜间灯光数据 矫正后夜间灯光数据 细分:标准差、平均值、总值、最大值和最小值
工程项目总监绩效考核表
首先解释一下什么叫转移支付。其实,这和养老金的中央调剂是一样的。 每年,地方都要向中央缴纳财政。而中央又要根据各地方的财政实力,给予转移支付。比如一些经济弱省,本身财政收入就不够支出的,还得上交一部分给中央,怎么维持财政运转?由于各省市直接的财政收入能力存在差异,中央为实现各个地方的公共服务水平平等,于是便有了财政转移支付制度。 简单理解就是富省养穷省。 2022年全国一般预算内财政收入203703亿元,给地方转移支付了97144.75亿元,转移支付数额创下新高。
基于门控卷积和堆叠自注意力的离线手写汉字识别算法研究.pdf
【数据介绍】 作为第二大人类部门用水,高质量的工业用水格网数据对于水资源研究和管理至关重要。中国工业用水格网数据(China Industrial Water Withdrawal dataset, CIWW)基于超过 40 万家企业数据、月度工业产品产量数据和连续工业用水统计数据制作得到的一套1965-2020年逐月中国工业用水数据集,其空间分辨率为 0.1°和 0.25°。数据集包括工业用水、企业数量和企业生产总值(辅助数据)等变量,可被用于水文、地理学、环境、可持续发展等方面科学研究。 【数据来源】 数据来源为《中国经济普查年鉴》(省级工业取水量、工业产出)、《中国工业企业数据库》(企业地理位置、产值)、《中国工业产品产量数据库》(工业产品月生产量),以及《中国水资源公报》和(Zhou et al, 2020, PNAS)的工业用水量数据。 【数据处理】 首先通过2008年企业分布数据、经济普查年鉴中分省分部门的工业用水量和工业产值计算得到分省分部门工业用水效率和工业产品产量数据,得到了2008年逐月工业用水数据。然后结合中国水资源公报和相关文献中省级工业用水数据,以2008年工业用水的时空格局作为基础分配工业用水数据,最终得到1965-2020年逐月工业用水的格网数据。详细方法见High-resolution mapping of monthly industrial water withdrawal in China from 1965 to 2020 (Hou et al, 2024, ESSD). 将数据集与统计数据记录和其他数据集进行了验证,结果表示在时间尺度和空间尺度上都与统计数据具有一致性,相比已有工业用水数据有更好的精度。
65 -质量管理部经理绩效考核表1
11 -电脑部经理绩效考核表1
内容概要:本文提供了针对大学生英语竞赛写作准备的重要资源——一系列通用的英文句子模板。这些模板涵盖了现代经济社会的各种话题,从科技进步到环境保护,以及个人品质和社会责任等,并且适用于论述类文章、观点对比和个人见解的表达。文章通过对每一句话的应用环境解释和语法提示,确保使用者可以在实际写作中正确且有效地应用这些表达方式。 适合人群:正在准备参加大学生英语竞赛的学生及其他希望提高书面表达能力的学习者。 使用场景及目标:考生能够在竞赛时间内迅速构建思路完整的文章,增强语言表达的流利性和规范性;帮助学习者积累高级词汇,提升英语写作水平并培养良好的思维逻辑。 阅读建议:结合历年优秀范文进行深入学习,熟悉不同类型话题下的表述方法;练习将提供的句子融入自身创作的文章中,通过不断修订和完善来巩固记忆。同时也可以用于日常的英语写作训练当中。
法律事务专员绩效考核表
1、文件内容:apache-commons-digester-javadoc-1.8.1-19.el7.rpm以及相关依赖 2、文件形式:tar.gz压缩包 3、安装指令: #Step1、解压 tar -zxvf /mnt/data/output/apache-commons-digester-javadoc-1.8.1-19.el7.tar.gz #Step2、进入解压后的目录,执行安装 sudo rpm -ivh *.rpm 4、安装指导:私信博主,全程指导安装
永磁同步电机磁场定向控制(矢量控制)Simulink仿真模型波形展现与解析,永磁同步电机的磁场定向控制(矢量控制)simulink仿真模型,波形完美 ,核心关键词:永磁同步电机; 磁场定向控制(矢量控制); Simulink仿真模型; 波形完美;,永磁同步电机矢量控制仿真模型:磁场完美调控,波形精确无误
07 -储运部经理绩效考核表1
OQC检验员(成品出货检验员)绩效考核表
基于Matlab2020b的电机控制算法:无传感FOC算法Simulink仿真模型及实践指导,定位+电流闭环强拖+ 角度渐变切+ 速度电流双闭环+ 无传感器角度估算SMO+ PLL 控制方式 Simulink 仿真模型 (Matlab2020b版本)以及教授模型搭建 这是一种常用的无传感FOC电机控制算法,掌握这种算法的基本原理,并有仿真模型在手,就可以用它来指导实践中的程序调试,做到实际项目不盲目调试。 模型特点: 1. 所有模块都做到了模块化,各个模块分区清楚,结构清晰。 2. 所有电机和控制参数均在m文件中体现,变量注释清楚,随用随改。 3. 速度环和电流环PI参数均实现自动整定。 4. 模型采用标幺值系统。 5. 各状态切使用stateflow,模型结构清晰。 6.通用表贴和内嵌式电机。 ,定位;电流闭环强拖;角度渐变切换;速度电流双闭环;无传感器角度估算SMO;PLL控制方式;Simulink仿真模型;Matlab2020b版本建模;教授模型搭建;模块化设计;参数自动整定;标幺值系统;Stateflow应用;通用表贴和内嵌式电机。,基于Matlab 2020b的FOC电机