- 浏览: 128002 次
- 性别:
- 来自: 深圳
最新评论
文章列表
--查出所有从表
select
/*+ INDEX(sys.con$,I_CON1) */
OWNER
,CONSTRAINT_NAME
,CONSTRAINT_TYPE
,TABLE_NAME
,R_OWNER
,R_CONSTRAINT_NAME
from ALL_CONSTRAINTS T
where T.OWNER = SYS.LOGIN_USER
and T.CONSTRAINT_TYPE = 'R'
and T.R_CONSTRAINT_NAME in
(select CONSTRAINT_NAME
from ALL_CONSTR ...
--数据库版本
select * from V$INSTANCE;
--所有对象
select T.* from SYS.ALL_OBJECTS T where T.OBJECT_NAME like 'EXAM';
--表名称
select T.*
from USER_TAB_COMMENTS T
where T.table_name like '%APPLY%'
order by T.COMMENTS;
--表注释
select T.*
from USER_TAB_COMMENTS T
where T.COMMENTS like '%公布%'
order by T.C ...
declare
--所有外键约束
cursor c1 is
select t.table_name
,t.constraint_name
from user_constraints t
where t.owner = 'IVM'
AND T.constraint_type = 'R';
--所有业务表
cursor c2 is
select table_name
from user_tables t
where t.TABLE_NAME not in
...
/** * jquery 将表格table内容转换为json格式
* * @returns {Array} * @deprecated */function getRseData() {
var aJsonObj = [];
$(tbl_rse.rows).each(function(i, row) { if (i < $(tbl_rse.rows).size() - 1) { var jsonStr = "{";// json格式开始 $(row.cells).each(function(j, cell) { $(cell).chil ...
解决
1:受svn版本管理。.settings目录下文件冲突。取消冲突即可。
查找用户下所有空表并分配空间_解决不能导入exp空表
declare cursor c1 is select 'alter table ' || table_name || ' allocate extent' as xxx from user_tables where num_rows = 0; stmt varchar2(4000);begin for cc in c1 loop BEGIN stmt := cc.xxx; dbms_output.put_line(stmt); execute immediate ...
PowerDesigner 把Comment写到name中 和把name写到Comment中 pd7以后版本可用
在使用PowerDesigner对数据库进行概念模型和物理模型设计时,一般在NAME或Comment中写中文,在Code中写英文。Name用来显 示,Code在代码中使用,但Comment中的文字会保存到数据库Table或Column的Comment中,当Name已经存在的时候,再写一次 Comment很麻烦,可以使用以下代码来解决这个问题:
代码一:将Name中的字符COPY至Comment中Option Explicit ValidationMode = Tr ...
stripTrailingZeros
public BigDecimal stripTrailingZeros()
返回数值上等于此小数,但从该表示形式移除所有尾部零的 BigDecimal。例如,从 BigDecimal 值 600.0 中移除尾部零,该值具有的 [BigInteger, scale] 组件等于 [6000, 1],使用 [BigInteger, scale] 组件生成的 6E2 等于 [6, -2]
返回:
数值上等于移除所有尾部零的 BigDecimal。
从以下版本开始:
1.5
toPlainString
public String to ...
增加spring data jpa的支持
-Drebel.spring_plugin=true
-Drebel.spring_data_plugin=true
-Dcatalina.base="D:\Program Files\apache-tomcat-6.0.36"
-Dcatalina.home="D:\Program Files\apache-tomcat-6.0.36"
-Dwtp.deploy="D:\Program Files\apache-tomcat-6.0.36\wtpwebapps" ...
--拷贝文件夹下某个文件到指定目录
cp -rvf /xxx/yyy/a.log /yyy/zzz/
--拷贝文件夹下所有文件到指定目录
cp -rvf /xxx/yyy/* /yyy/zzz/
--移动文件夹下所有文件到指定目录
mv -i /xxx/yyy/* /yyy/zzz/
-- 查看当前目录下的各个文件夹及文件的大小
du -sh *
-- 查看磁盘容量使用信息
df -H
--复制当前文件夹下所有内容到新文件夹
[root@localhost test_chenwei]# cp -rvf ../test_chenwei/ .. ...
exp usr1/pwd1@127.0.0.1/orcl file=d:/table_data.dmp log=d:/table_data.log owner=(usr1)
imp usr2/pwd2@127.0.0.1/orcl file=d:/table_data.dmp log=d:/table_data.log fromuser=usr1 touser=usr2 ignore=n
注:
rows:表示导出数据行
full:全库导出,导出除ORDSYS,MDSYS,CTXSYS,ORDPLUGINS,LBACSYS 这些系统用户之外的所有用户的数据.
ignore=y: 表示 ...
==导出一个完整数据库[结构+数据]========
exp system/password file=/u01/20101115.dmp log=/u01/20101115.log full=y
==只导出数据库的结构而不导出里面的数据=====
exp system/password file=/u01/20101115.dmp log=/u01/20101115.log full=y rows=n
==导出用户admin的所有数据=========
exp system/password file=/u01/20101115.dmp log=/u01/20101115.log o ...
==导出一个完整数据库[结构+数据]========
exp system/password file=/u01/20101115.dmp log=/u01/20101115.log full=y
==只导出数据库的结构而不导出里面的数据=====
exp system/password file=/u01/20101115.dmp log=/u01/20101115.log full=y rows=n
==导出用户admin的所有数据=========
exp system/password file=/u01/20101115.dmp log=/u01/20101115.log ...