oracle pl/sql format output-凯发app官方网站

凯发app官方网站-凯发k8官网下载客户端中心 | | 凯发app官方网站-凯发k8官网下载客户端中心
  • 博客访问: 3977303
  • 博文数量: 536
  • 博客积分: 10470
  • 博客等级: 上将
  • 技术积分: 4825
  • 用 户 组: 普通用户
  • 注册时间: 2006-05-26 14:08
文章分类

全部博文(536)

文章存档

2024年(3)

2021年(1)

2019年(1)

2017年(1)

2016年(2)

2013年(2)

2012年(10)

2011年(43)

2010年(10)

2009年(17)

2008年(121)

2007年(252)

2006年(73)

相关博文
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·

分类: oracle

2008-07-02 13:54:50

output '\t' in dbms_output package!
use oracle character function to replace the '\t' and other special characters!

declare
  t1 integer;
  t2 integer;
  stmt varchar2(2048);
begin
  for t in (select tname from tab) loop
    stmt := 'select count(*) from ' || t.tname;
    execute immediate stmt into t1;

    stmt := 'select count(*) from system.' || t.tname;
    execute immediate stmt into t2;

    if t1 != t2 then
      stmt := chr(9) || 'different! ';
    else
      stmt := chr(9) || ' ';
    end if;

    dbms_output.put_line(rpad(t.tname, 34, ' ')
        || chr(9) || to_char(t1) || chr(9) || to_char(t2)
        || stmt);
  end loop;
end;

阅读(2758) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~
")); function link(t){ var href= $(t).attr('href'); href ="?url=" encodeuricomponent(location.href); $(t).attr('href',href); //setcookie("returnouturl", location.href, 60, "/"); }
网站地图