??xml version="1.0" encoding="utf-8" standalone="yes"?>日韩一区二区三区电影,国产精品视频资源,精品一区二区三区免费毛片爱http://www.aygfsteel.com/fastzch/category/34257.htmlI Love Programming As My Life!zh-cnMon, 03 Sep 2012 21:07:38 GMTMon, 03 Sep 2012 21:07:38 GMT60ORACLE打开archivelog的方法及(qing)错误ORA-00265处理http://www.aygfsteel.com/fastzch/archive/2009/08/06/290009.htmlRobin's Programming WorldRobin's Programming WorldWed, 05 Aug 2009 16:09:00 GMThttp://www.aygfsteel.com/fastzch/archive/2009/08/06/290009.htmlhttp://www.aygfsteel.com/fastzch/comments/290009.htmlhttp://www.aygfsteel.com/fastzch/archive/2009/08/06/290009.html#Feedback0http://www.aygfsteel.com/fastzch/comments/commentRss/290009.htmlhttp://www.aygfsteel.com/fastzch/services/trackbacks/290009.html
啥也不多说了Q看日志Q?br />

SQL> startup mount
ORACLE instance started.

Total System Global Area  608174080 bytes
Fixed Size                  1220820 bytes
Variable Size             176164652 bytes
Database Buffers          423624704 bytes
Redo Buffers                7163904 bytes
Database mounted.
SQL> alter database archivelog;
alter database archivelog
*
ERROR at line 1:
ORA-00265: instance recovery required, cannot set ARCHIVELOG mode


SQL> shutdown immediate;
ORA-01109: database not open


Database dismounted.
ORACLE instance shut down.
SQL> startup;
ORACLE instance started.

Total System Global Area  608174080 bytes
Fixed Size                  1220820 bytes
Variable Size             176164652 bytes
Database Buffers          423624704 bytes
Redo Buffers                7163904 bytes
Database mounted.
Database opened.
SQL> shutdown immediate;
Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> startup mount
ORACLE instance started.

Total System Global Area  608174080 bytes
Fixed Size                  1220820 bytes
Variable Size             176164652 bytes
Database Buffers          423624704 bytes
Redo Buffers                7163904 bytes
Database mounted.
SQL> alter database archivelog;

Database altered.

SQL> archive log list;
Database log mode              Archive Mode
Automatic archival             Enabled
Archive destination            USE_DB_RECOVERY_FILE_DEST
Oldest online log sequence     14103
Next log sequence to archive   14105
Current log sequence           14105
SQL> alter database open;

Database altered.

SQL>



Robin's Programming World 2009-08-06 00:09 发表评论
]]>
利用DB Link两步搞定Oracle两个数据库间的表同步http://www.aygfsteel.com/fastzch/archive/2009/02/17/255175.htmlRobin's Programming WorldRobin's Programming WorldTue, 17 Feb 2009 11:22:00 GMThttp://www.aygfsteel.com/fastzch/archive/2009/02/17/255175.htmlhttp://www.aygfsteel.com/fastzch/comments/255175.htmlhttp://www.aygfsteel.com/fastzch/archive/2009/02/17/255175.html#Feedback10http://www.aygfsteel.com/fastzch/comments/commentRss/255175.htmlhttp://www.aygfsteel.com/fastzch/services/trackbacks/255175.htmlAQ在network/admin/tnsname.ora文g中加入源库的q接信息Q如Q?br />
AAA=
  (DESCRIPTION 
=
    (ADDRESS 
= (PROTOCOL = TCP)(HOST = 10.5.1.3)(PORT = 1521))
    (CONNECT_DATA 
=
      (SERVER 
= DEDICATED)
      (SERVICE_NAME 
= AAA)
    )
  )

BQ在目标Z用sqlplus user/pwdd?br />CQ用如下命o(h)建立DB Link:
create public database link AAA_LINK connect to user identified by pwd using 'AAA';
命o(h)说明Q?br />CREATE PUBLIC DATABASE LINK 数据库链接名 CONNECT TO 用户?IDENTIFIED BY 密码 USING ‘本地配|的数据的实例名?
如果建立成功Q会(x)提示QDatabase link created.

2Q用如下脚本,卛_同步数据表:(x)
#!/bin/sh
# to sync table A to BBB database from AAA database

sqlplus user/pwd@BBB <<EOF    #q里是BBB上的数据库和密码q有实例名,h照实际情况修?/span>
truncate table A;
insert into A 
select * from b_schema.A@AAA_LINK#q里是指向要同步的来源表,表名必须?lt;表所有?gt;.<表名>@<dblink name>
commit;


PSQ需要DB支持Advanced replication功能Q是否支持,可用如下SQL查看Q?br />
select * from v$option where PARAMETER='Advanced replication';
如果是返回TruepC支持?br />

特别提示Q?br />本Blog所有内容不得随意{载,版权属于作者所有。如需转蝲请与作者联p(fastzch@163.comQ。未l许可的转蝲Q本Z留一切法律权益?br />

Robin's Programming World 2009-02-17 19:22 发表评论
]]>
Oracle10G学习(fn)W记http://www.aygfsteel.com/fastzch/archive/2008/09/01/172933.htmlRobin's Programming WorldRobin's Programming WorldSun, 31 Aug 2008 16:32:00 GMThttp://www.aygfsteel.com/fastzch/archive/2008/09/01/172933.htmlhttp://www.aygfsteel.com/fastzch/comments/172933.htmlhttp://www.aygfsteel.com/fastzch/archive/2008/09/01/172933.html#Feedback0http://www.aygfsteel.com/fastzch/comments/commentRss/172933.htmlhttp://www.aygfsteel.com/fastzch/services/trackbacks/172933.htmlpȝ标识W(SIDQ:(x)Q*Q(没有q个你就不能用DB了)(j)
服务器参数文件名Q?ORACLE_HOME/database/spfilemydb.oraQmydb是我的SIDQ?br />EM的URL默认为:(x)http://localhost:5500/em
如果有装Ultra SearchQ其URL为:(x)http://localhost:5620/ultrasearch
Ultra Search理工具的URL为:(x)http://localhost:5620/ultrasearch/admin
如果有装iSQL*PlusQ其URL为:(x)http://localhost:5560/isqlplus



Robin's Programming World 2008-09-01 00:32 发表评论
]]>
RedHat下安装MySQL5.0(RPM?手记http://www.aygfsteel.com/fastzch/archive/2008/08/27/225017.htmlRobin's Programming WorldRobin's Programming WorldWed, 27 Aug 2008 05:28:00 GMThttp://www.aygfsteel.com/fastzch/archive/2008/08/27/225017.htmlhttp://www.aygfsteel.com/fastzch/comments/225017.htmlhttp://www.aygfsteel.com/fastzch/archive/2008/08/27/225017.html#Feedback0http://www.aygfsteel.com/fastzch/comments/commentRss/225017.htmlhttp://www.aygfsteel.com/fastzch/services/trackbacks/225017.html 本Blog所有内容不得随意{载,版权属于作者所有。如需转蝲请与作者联p( fastzch@163.com Q?br />未经许可的{载,本h保留一切法律权益?br />一直以来,发现有某些h完全不尊重我的劳动成果,随意转蝲Q提醒一下那些h心哪天惹上官司?br />
|上安装MySQL的文章大都是用二q制源码安装的,其步骤比较复杂,所以我用RPM包安装的q程记录下来Q分享给大家?br />
1Q先看看pȝ中是否自带其它版本的MySQLQ命令如下:(x)
#rpm -qa|grep MySQL
?br />#rpm -qa|grep mysql
如果带有此YӞ请先用rpm -e这些Y件干掉,命o(h)如下Q?br />#rpm -e mysql*****(此处Z的包名,即上面查询出来的名字)
如果在删除的q程中提C因Z些依赖关pL法删除,L(fng)如下命o(h)Q?br />#rpm -e --nodeps mysql*****

2Q去MySQL的官方网站上下蝲RPM包,Ҏ(gu)你的服务器的CPU型号和Redhat版本选择不同的RPM?包括服务端和客户端的?Q地址如下Q?br />http://dev.mysql.com/downloads/mysql/5.0.html

3Q在Redhat中新增用户和用户l,命o(h)如下Q?br />#groupadd mysql
#useradd -g mysql mysql

4Q将下蝲的放到Redhat的某一目录下,分别执行命o(h)安装服务端和客户端的RPM包,命o(h)如下Q?br />#rpm -ivh MySQL-server-community-5.0.67-0.rhel4.i386.rpm
#rpm -ivh MySQL-client-community-5.0.67-0.rhel4.i386.rpm

5Q修改root用户的密码:(x)
# killall mysqld
# mysqld_safe --user=mysql --skip-grant-tables --skip-networking &
# mysql -u root mysql
mysql> UPDATE user SET Password=PASSWORD('newpassword') where USER='root';
mysql> FLUSH PRIVILEGES;
mysql> quit

6Q修改root用户q程讉K的权限:(x)
# killall mysqld
# mysqld_safe --user=mysql &
# mysql -u root -p mysql
Enter password: (输入W?步中修改后的新密?
mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'root' WITH GRANT OPTION;
mysql> FLUSH PRIVILEGES;
mysql> quit



Robin's Programming World 2008-08-27 13:28 发表评论
]]>
DB中如何查询Table占用I间的大?/title><link>http://www.aygfsteel.com/fastzch/archive/2007/12/06/165884.html</link><dc:creator>Robin's Programming World</dc:creator><author>Robin's Programming World</author><pubDate>Thu, 06 Dec 2007 12:37:00 GMT</pubDate><guid>http://www.aygfsteel.com/fastzch/archive/2007/12/06/165884.html</guid><wfw:comment>http://www.aygfsteel.com/fastzch/comments/165884.html</wfw:comment><comments>http://www.aygfsteel.com/fastzch/archive/2007/12/06/165884.html#Feedback</comments><slash:comments>1</slash:comments><wfw:commentRss>http://www.aygfsteel.com/fastzch/comments/commentRss/165884.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/fastzch/services/trackbacks/165884.html</trackback:ping><description><![CDATA[ <p>Oracle和DB2都支持分Q但是我们得知道什么样的表适合使用分区表技术,Oracle的官方徏议是过2G的Tablep使用分区表?br />下面来ȝ一下,各DB中如何获得这些大信息:(x)<br /><br />Oracle 10G中:(x)<br />查询出当前用L(fng)表所占用的空间大,q按大小q行降序排列Q?br />Select Segment_Name,Sum(bytes)/1024/1024  From User_Extents Group By Segment_Name order by Sum(bytes)/1024/1024 desc</p> <p>查询出系l表I间的大,q按大小q行降序排列(需要SYSDBA的权?Q?br />Select Tablespace_Name,Sum(bytes)/1024/1024 From Dba_Segments Group By Tablespace_Name order by Sum(bytes)/1024/1024 desc<br />q个在OEMC中也可以看,但是如果没有装的话,SQL语句q是比较方便的?br /><br /><br />DB2中:(x)<br />查看某个Table的大可以在控制中心中用囑Ş界面查看?br />对应的SQL语句是什么?谁能告诉我一下?<br /><br /><br />SQL Server中:(x)<br />执行l计q查看指定表名的表大:(x)<br />exec sp_spaceused '表名', true;<br /><br /></p> <img src ="http://www.aygfsteel.com/fastzch/aggbug/165884.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/fastzch/" target="_blank">Robin's Programming World</a> 2007-12-06 20:37 <a href="http://www.aygfsteel.com/fastzch/archive/2007/12/06/165884.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Oracle 10G中清I“回收站?/title><link>http://www.aygfsteel.com/fastzch/archive/2007/11/28/163763.html</link><dc:creator>Robin's Programming World</dc:creator><author>Robin's Programming World</author><pubDate>Wed, 28 Nov 2007 10:11:00 GMT</pubDate><guid>http://www.aygfsteel.com/fastzch/archive/2007/11/28/163763.html</guid><wfw:comment>http://www.aygfsteel.com/fastzch/comments/163763.html</wfw:comment><comments>http://www.aygfsteel.com/fastzch/archive/2007/11/28/163763.html#Feedback</comments><slash:comments>2</slash:comments><wfw:commentRss>http://www.aygfsteel.com/fastzch/comments/commentRss/163763.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/fastzch/services/trackbacks/163763.html</trackback:ping><description><![CDATA[Oracle 10G中有一个好功能Q就是RecycleQ这个东西可以帮助我们找回删除掉的TableQ就像Windows的回收站一P而且比Windows的回收站更高U,是当表I间不够ӞOracle ?x)自动去清理回收站?br /><br />|上有一文章讲q个东西Q大家可以参考:(x)<br /><a >http://hi.baidu.com/moses/blog/item/0d9a4b3659bd3edca3cc2bc3.html</a><a ></a><br />q篇文章写得q不错,不过其中有些内容有误Q比如清除回收站内的TableQ应该用table的原名,而不是现在的名字。大家仔l看可以发现?br /><br />其实早先我们头就问过我,Z么PLSQL中看到Object中有一堆bin打头的ObjectQ当时不知道是ؓ(f)什么,现在xQ真是够W的Q用了Oracleq久Q居焉不知道这个东东(dQ好像很多同事都q不知道q个东东Q?br /><br />清除的方法如下:(x)<br />purge table origenal_tableName;<br />purge index origenal_indexName;<br /><br />查询垃圾信息Q可以用如下SQL语句Q?br />SELECT t.object_name,t.type ,t.original_name FROM user_recyclebin t;<br /><br /><strike>我写了个语句Q可以帮你生清除多个垃圑֯象的SQLQ简单得很,不想用PLSQL~程。如下:(x)<br />SELECT 'purge ',t.type ,t.original_name,';' FROM user_recyclebin t;<br />然后把记录脓(chung)到PLSQL的SQLH口中就可以清除了,呵呵。。?/strike><br /><br /><br />现在发现Q原来还有这个命令:(x)<br />PURGE recyclebin;<br />Ҏ(gu)用不了上面那么复杂。呵c(din)。?br /><br />另,删除Table不进入Recycle的方法:(x)<br />drop table tableName purge;<br />不过Q我想一般的人都不愿意用q个?img src ="http://www.aygfsteel.com/fastzch/aggbug/163763.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/fastzch/" target="_blank">Robin's Programming World</a> 2007-11-28 18:11 <a href="http://www.aygfsteel.com/fastzch/archive/2007/11/28/163763.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>WebSphere中配|MS SQL SERVER XA數據?/title><link>http://www.aygfsteel.com/fastzch/archive/2007/07/10/129421.html</link><dc:creator>Robin's Programming World</dc:creator><author>Robin's Programming World</author><pubDate>Tue, 10 Jul 2007 12:43:00 GMT</pubDate><guid>http://www.aygfsteel.com/fastzch/archive/2007/07/10/129421.html</guid><wfw:comment>http://www.aygfsteel.com/fastzch/comments/129421.html</wfw:comment><comments>http://www.aygfsteel.com/fastzch/archive/2007/07/10/129421.html#Feedback</comments><slash:comments>1</slash:comments><wfw:commentRss>http://www.aygfsteel.com/fastzch/comments/commentRss/129421.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/fastzch/services/trackbacks/129421.html</trackback:ping><description><![CDATA[1、JDBC提供?br />WAS內置了MS SQL SERVER的驅?所以JDBC的提供者你可以選擇WAS內置的JDBC驅動.<br />配置參數如下:<br />提供者名E?<br />MS SQL SERVERQQ)(j) Q可以自己隨便取Q?br />別路徑:<br />${WAS_LIBS_DIR}/sqlserver.jar<br />${WAS_LIBS_DIR}/base.jar<br />${WAS_LIBS_DIR}/util.jar<br />${WAS_LIBS_DIR}/spy.jar<br />實作別名稱:<br />com.ibm.websphere.jdbcx.sqlserver.SQLServerDataSource<br /><br />2、數據源的配|方法與其它DB的數據源配置Ҏ(gu)無異?br />可參考:(x)<a href="/fastzch/archive/2006/12/03/85176.html">http://www.aygfsteel.com/fastzch/archive/2006/12/03/85176.html</a><br /><br />3、關鍵部分,配置你的SQL SERVER DBQ其支持XA方式?br />Q?Q到下面這個地址下載(j)SQL SERVER支援XA的驅動:(x)<br />      <a href="ftp://ftp.software.ibm.com/software/websphere/info/tools/DataDirect/datadirect.htm">ftp://ftp.software.ibm.com/software/websphere/info/tools/DataDirect/datadirect.htm</a><br />      也可以到MS的官方網站下?j)對應的驅動?br />Q?Q下?j)後會有一個RAR包,其解壓Q根據你的OS?2位還?4位來決定你要選用哪個sqljdbc.dll<br />      此文g攑օSQL SERVER安裝目錄的BINN目錄下?br />Q?Q重啟SQL SERVER DB?br />Q?Q在Master資料庫上運行RAR包中的instjdbc.sql這個SQL<br />          <div style="BORDER-RIGHT: #cccccc 1px solid; PADDING-RIGHT: 5px; BORDER-TOP: #cccccc 1px solid; PADDING-LEFT: 4px; FONT-SIZE: 13px; PADDING-BOTTOM: 4px; BORDER-LEFT: #cccccc 1px solid; WIDTH: 98%; WORD-BREAK: break-all; PADDING-TOP: 4px; BORDER-BOTTOM: #cccccc 1px solid; BACKGROUND-COLOR: #eeeeee"><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /><span style="COLOR: #000000"><br /><img id="Codehighlighter1_1_79_Open_Image" onclick="this.style.display='none'; Codehighlighter1_1_79_Open_Text.style.display='none'; Codehighlighter1_1_79_Closed_Image.style.display='inline'; Codehighlighter1_1_79_Closed_Text.style.display='inline';" src="http://www.aygfsteel.com/images/OutliningIndicators/ExpandedBlockStart.gif" align="top" /><img id="Codehighlighter1_1_79_Closed_Image" style="DISPLAY: none" onclick="this.style.display='none'; Codehighlighter1_1_79_Closed_Text.style.display='none'; Codehighlighter1_1_79_Open_Image.style.display='inline'; Codehighlighter1_1_79_Open_Text.style.display='inline';" src="http://www.aygfsteel.com/images/OutliningIndicators/ContractedBlock.gif" align="top" /></span><span id="Codehighlighter1_1_79_Closed_Text" style="BORDER-RIGHT: #808080 1px solid; BORDER-TOP: #808080 1px solid; DISPLAY: none; BORDER-LEFT: #808080 1px solid; BORDER-BOTTOM: #808080 1px solid; BACKGROUND-COLOR: #ffffff">/**/</span><span id="Codehighlighter1_1_79_Open_Text"><span style="COLOR: #008000">/*</span><span style="COLOR: #008000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/InBlock.gif" align="top" />**    INSTJDBC.SQL<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/InBlock.gif" align="top" />**    Installs XA stored procedures used by the JDBC driver <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/ExpandedBlockEnd.gif" align="top" /></span><span style="COLOR: #008000">*/</span></span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />use master<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />dump tran master with no_log<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /><br /><img id="Codehighlighter1_134_192_Open_Image" onclick="this.style.display='none'; Codehighlighter1_134_192_Open_Text.style.display='none'; Codehighlighter1_134_192_Closed_Image.style.display='inline'; Codehighlighter1_134_192_Closed_Text.style.display='inline';" src="http://www.aygfsteel.com/images/OutliningIndicators/ExpandedBlockStart.gif" align="top" /><img id="Codehighlighter1_134_192_Closed_Image" style="DISPLAY: none" onclick="this.style.display='none'; Codehighlighter1_134_192_Closed_Text.style.display='none'; Codehighlighter1_134_192_Open_Image.style.display='inline'; Codehighlighter1_134_192_Open_Text.style.display='inline';" src="http://www.aygfsteel.com/images/OutliningIndicators/ContractedBlock.gif" align="top" /></span><span id="Codehighlighter1_134_192_Closed_Text" style="BORDER-RIGHT: #808080 1px solid; BORDER-TOP: #808080 1px solid; DISPLAY: none; BORDER-LEFT: #808080 1px solid; BORDER-BOTTOM: #808080 1px solid; BACKGROUND-COLOR: #ffffff">/**/</span><span id="Codehighlighter1_134_192_Open_Text"><span style="COLOR: #008000">/*</span><span style="COLOR: #008000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/InBlock.gif" align="top" />** drop procedures if they're already in the database<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/ExpandedBlockEnd.gif" align="top" /></span><span style="COLOR: #008000">*/</span></span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />sp_dropextendedproc </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">xp_jdbc_open</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000"> <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />sp_dropextendedproc </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">xp_jdbc_open2</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000"> <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />sp_dropextendedproc </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">xp_jdbc_close</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />sp_dropextendedproc </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">xp_jdbc_close2</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />sp_dropextendedproc </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">xp_jdbc_start</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />sp_dropextendedproc </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">xp_jdbc_start2</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />sp_dropextendedproc </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">xp_jdbc_end</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />sp_dropextendedproc </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">xp_jdbc_end2</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />sp_dropextendedproc </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">xp_jdbc_prepare</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />sp_dropextendedproc </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">xp_jdbc_prepare2</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />sp_dropextendedproc </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">xp_jdbc_commit</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />sp_dropextendedproc </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">xp_jdbc_commit2</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />sp_dropextendedproc </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">xp_jdbc_rollback</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />sp_dropextendedproc </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">xp_jdbc_rollback2</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />sp_dropextendedproc </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">xp_jdbc_forget</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />sp_dropextendedproc </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">xp_jdbc_forget2</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />sp_dropextendedproc </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">xp_jdbc_recover</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />sp_dropextendedproc </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">xp_jdbc_recover2</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />dump tran master with no_log<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /><br /><img id="Codehighlighter1_955_1004_Open_Image" onclick="this.style.display='none'; Codehighlighter1_955_1004_Open_Text.style.display='none'; Codehighlighter1_955_1004_Closed_Image.style.display='inline'; Codehighlighter1_955_1004_Closed_Text.style.display='inline';" src="http://www.aygfsteel.com/images/OutliningIndicators/ExpandedBlockStart.gif" align="top" /><img id="Codehighlighter1_955_1004_Closed_Image" style="DISPLAY: none" onclick="this.style.display='none'; Codehighlighter1_955_1004_Closed_Text.style.display='none'; Codehighlighter1_955_1004_Open_Image.style.display='inline'; Codehighlighter1_955_1004_Open_Text.style.display='inline';" src="http://www.aygfsteel.com/images/OutliningIndicators/ContractedBlock.gif" align="top" /></span><span id="Codehighlighter1_955_1004_Closed_Text" style="BORDER-RIGHT: #808080 1px solid; BORDER-TOP: #808080 1px solid; DISPLAY: none; BORDER-LEFT: #808080 1px solid; BORDER-BOTTOM: #808080 1px solid; BACKGROUND-COLOR: #ffffff">/**/</span><span id="Codehighlighter1_955_1004_Open_Text"><span style="COLOR: #008000">/*</span><span style="COLOR: #008000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/InBlock.gif" align="top" />**  add references for the stored procedures<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/ExpandedBlockEnd.gif" align="top" /></span><span style="COLOR: #008000">*/</span></span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />print </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">creating JDBC XA procedures</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />sp_addextendedproc </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">xp_jdbc_open</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">, </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">sqljdbc.dll</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />sp_addextendedproc </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">xp_jdbc_open2</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">, </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">sqljdbc.dll</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />sp_addextendedproc </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">xp_jdbc_close</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">, </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">sqljdbc.dll</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />sp_addextendedproc </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">xp_jdbc_close2</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">, </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">sqljdbc.dll</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />sp_addextendedproc </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">xp_jdbc_start</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">, </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">sqljdbc.dll</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />sp_addextendedproc </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">xp_jdbc_start2</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">, </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">sqljdbc.dll</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />sp_addextendedproc </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">xp_jdbc_end</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">, </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">sqljdbc.dll</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />sp_addextendedproc </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">xp_jdbc_end2</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">, </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">sqljdbc.dll</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />sp_addextendedproc </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">xp_jdbc_prepare</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">, </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">sqljdbc.dll</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />sp_addextendedproc </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">xp_jdbc_prepare2</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">, </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">sqljdbc.dll</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />sp_addextendedproc </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">xp_jdbc_commit</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">, </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">sqljdbc.dll</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />sp_addextendedproc </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">xp_jdbc_commit2</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">, </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">sqljdbc.dll</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />sp_addextendedproc </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">xp_jdbc_rollback</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">, </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">sqljdbc.dll</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />sp_addextendedproc </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">xp_jdbc_rollback2</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">, </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">sqljdbc.dll</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />sp_addextendedproc </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">xp_jdbc_forget</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">, </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">sqljdbc.dll</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />sp_addextendedproc </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">xp_jdbc_forget2</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">, </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">sqljdbc.dll</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />sp_addextendedproc </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">xp_jdbc_recover</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">, </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">sqljdbc.dll</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />sp_addextendedproc </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">xp_jdbc_recover2</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">, </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">sqljdbc.dll</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /><br /><img id="Codehighlighter1_2024_2097_Open_Image" onclick="this.style.display='none'; Codehighlighter1_2024_2097_Open_Text.style.display='none'; Codehighlighter1_2024_2097_Closed_Image.style.display='inline'; Codehighlighter1_2024_2097_Closed_Text.style.display='inline';" src="http://www.aygfsteel.com/images/OutliningIndicators/ExpandedBlockStart.gif" align="top" /><img id="Codehighlighter1_2024_2097_Closed_Image" style="DISPLAY: none" onclick="this.style.display='none'; Codehighlighter1_2024_2097_Closed_Text.style.display='none'; Codehighlighter1_2024_2097_Open_Image.style.display='inline'; Codehighlighter1_2024_2097_Open_Text.style.display='inline';" src="http://www.aygfsteel.com/images/OutliningIndicators/ContractedBlock.gif" align="top" /></span><span id="Codehighlighter1_2024_2097_Closed_Text" style="BORDER-RIGHT: #808080 1px solid; BORDER-TOP: #808080 1px solid; DISPLAY: none; BORDER-LEFT: #808080 1px solid; BORDER-BOTTOM: #808080 1px solid; BACKGROUND-COLOR: #ffffff">/**/</span><span id="Codehighlighter1_2024_2097_Open_Text"><span style="COLOR: #008000">/*</span><span style="COLOR: #008000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/InBlock.gif" align="top" />**  grant privileges so that all users can enlist in XA transactions<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/ExpandedBlockEnd.gif" align="top" /></span><span style="COLOR: #008000">*/</span></span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />grant execute on xp_jdbc_open to </span><span style="COLOR: #0000ff">public</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />grant execute on xp_jdbc_open2 to </span><span style="COLOR: #0000ff">public</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />grant execute on xp_jdbc_close to </span><span style="COLOR: #0000ff">public</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />grant execute on xp_jdbc_close2 to </span><span style="COLOR: #0000ff">public</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />grant execute on xp_jdbc_start to </span><span style="COLOR: #0000ff">public</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />grant execute on xp_jdbc_start2 to </span><span style="COLOR: #0000ff">public</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />grant execute on xp_jdbc_end to </span><span style="COLOR: #0000ff">public</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />grant execute on xp_jdbc_end2 to </span><span style="COLOR: #0000ff">public</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />grant execute on xp_jdbc_prepare to </span><span style="COLOR: #0000ff">public</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />grant execute on xp_jdbc_prepare2 to </span><span style="COLOR: #0000ff">public</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />grant execute on xp_jdbc_commit to </span><span style="COLOR: #0000ff">public</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />grant execute on xp_jdbc_commit2 to </span><span style="COLOR: #0000ff">public</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />grant execute on xp_jdbc_rollback to </span><span style="COLOR: #0000ff">public</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />grant execute on xp_jdbc_rollback2 to </span><span style="COLOR: #0000ff">public</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />grant execute on xp_jdbc_forget to </span><span style="COLOR: #0000ff">public</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />grant execute on xp_jdbc_forget2 to </span><span style="COLOR: #0000ff">public</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />grant execute on xp_jdbc_recover to </span><span style="COLOR: #0000ff">public</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />grant execute on xp_jdbc_recover2 to </span><span style="COLOR: #0000ff">public</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />print </span><span style="COLOR: #000000">''</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />print </span><span style="COLOR: #000000">'</span><span style="COLOR: #000000">instxa.sql completed successfully.</span><span style="COLOR: #000000">'</span><span style="COLOR: #000000"><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />dump tran master with no_log<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />checkpoint<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />go<br /><img id="Codehighlighter1_3015_3020_Open_Image" onclick="this.style.display='none'; Codehighlighter1_3015_3020_Open_Text.style.display='none'; Codehighlighter1_3015_3020_Closed_Image.style.display='inline'; Codehighlighter1_3015_3020_Closed_Text.style.display='inline';" src="http://www.aygfsteel.com/images/OutliningIndicators/ExpandedBlockStart.gif" align="top" /><img id="Codehighlighter1_3015_3020_Closed_Image" style="DISPLAY: none" onclick="this.style.display='none'; Codehighlighter1_3015_3020_Closed_Text.style.display='none'; Codehighlighter1_3015_3020_Open_Image.style.display='inline'; Codehighlighter1_3015_3020_Open_Text.style.display='inline';" src="http://www.aygfsteel.com/images/OutliningIndicators/ContractedBlock.gif" align="top" /></span><span id="Codehighlighter1_3015_3020_Closed_Text" style="BORDER-RIGHT: #808080 1px solid; BORDER-TOP: #808080 1px solid; DISPLAY: none; BORDER-LEFT: #808080 1px solid; BORDER-BOTTOM: #808080 1px solid; BACKGROUND-COLOR: #ffffff">/** */</span><span id="Codehighlighter1_3015_3020_Open_Text"><span style="COLOR: #008000">/**</span><span style="COLOR: #008000">/<br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/InBlock.gif" align="top" /></span></span></div><br /><br />4、在控制面板的服務中Q啟動“Distributed Transaction Coordinator”服務?br />      此服務的作用如下Q協調跨多個資源管理員的交易,比如資料庫、訊息佇列及(qing)檔案pȝ(dng)。如果此服務被停止,這些交易不會發生。如果服務被停用QQ何明依存它的服務將無法啟動?br /><br />5、測試數據源Q?br />完成Q?img src ="http://www.aygfsteel.com/fastzch/aggbug/129421.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/fastzch/" target="_blank">Robin's Programming World</a> 2007-07-10 20:43 <a href="http://www.aygfsteel.com/fastzch/archive/2007/07/10/129421.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Oracle使用经验集?2008.11.14更新)http://www.aygfsteel.com/fastzch/archive/2006/08/18/64349.htmlRobin's Programming WorldRobin's Programming WorldFri, 18 Aug 2006 07:02:00 GMThttp://www.aygfsteel.com/fastzch/archive/2006/08/18/64349.htmlhttp://www.aygfsteel.com/fastzch/comments/64349.htmlhttp://www.aygfsteel.com/fastzch/archive/2006/08/18/64349.html#Feedback0http://www.aygfsteel.com/fastzch/comments/commentRss/64349.htmlhttp://www.aygfsteel.com/fastzch/services/trackbacks/64349.html select * from table where lower(name) like lower('%a%');

2、去除某一列的NI格
update table_name set column_name=trim(column_name);

3、查看某个表的字D|否ؓ(f)I的语句Q?br /> select column_name,nullable from cols  t where t.table_name like '%GROUP_INFO';

Robin's Programming World 2006-08-18 15:02 发表评论
]]>
վ֩ģ壺 ɽ| ѧ| | ϳ| ƽ| ƽ| ʲ| ν| | Ӧ| Ϫ| | ̫| ɽ| Т| | | ľ| | | | | ʯ| | ƽ| | | | ѷ| | | ɳ| ֣| | ˮ| | | ̨| | ƽ˳| ͻȪ|