1、查找表的所有索引(包括索引名,类型,构成列):select t.*,i.index_type from user_ind_columns t,user_indexes i where t.index_name = i.index_name and t.table_name = i.table_n... Read More
posted @ 2015-10-01 11:21 刘礼 Views(5143) Comments(0) Diggs(1)
select TABLE_NAME , num_rows * avg_row_len /1024/1024 AS KJfrom ALL_tables WHERE TABLE_NAME IN (select TABLE_NAME from all_tables where owner='PRODDTA... Read More
posted @ 2015-09-18 10:57 刘礼 Views(342) Comments(0) Diggs(0)
此问题属于归档日志满了。SQL> select * from V$FLASH_RECOVERY_AREA_USAGE;FILE_TYPE PERCENT_SPACE_USED PERCENT_SPACE_RECLAIMABLE NUMBER_OF_FILES------------ -------... Read More
posted @ 2015-02-09 13:34 刘礼 Views(174) Comments(0) Diggs(0)
select a.*,b.DTDL01 FROM crpctl.f0004 a,crpctl.f0004d b where a.dtsy =b.dtsy(+) and a.dtrt =b.dtrt(+) order by a.dtsy,a.dtrtselect a.*,b.drdl01 from c... Read More
posted @ 2014-11-28 15:10 刘礼 Views(319) Comments(0) Diggs(0)
操作必须在服务器上进行(在192.168.12.71上执行)0、按需要恢复的日期,把距恢复日期最近的全部备份和全部备份日期后的日志备份一同拷贝到需要恢复的机器上;1、用RMAN登陆C:\Users\Administrator>rman target /Recovery Manager: Releas... Read More
posted @ 2014-09-25 10:55 刘礼 Views(2039) Comments(0) Diggs(0)
与2007不同之处: 2010支持站点工作流和列表工作流,2007 只支持列表工作流SPD工作流包括 step, conditions, actionssharepoint designer工作流限制: 不能循环; 不能创建状态工作流; 不支持复杂的查询 Read More
posted @ 2013-04-14 22:01 刘礼 Views(398) Comments(0) Diggs(1)
Moving the Siebel File SystemThis topic describes the task of moving the Siebel File System locations. The locations of the Siebel File System may require movement to another directory or machine due to size limitations or other requirements. To move the Siebel File System, perform the steps in the Read More
posted @ 2012-12-28 21:41 刘礼 Views(475) Comments(0) Diggs(0)
一条Update更新语句是不能更新多张表的,除非使用触发器隐含更新。而表的更新操作中,在很多情况下需要在表达式中引用要更新的表以外的数据。我们先来讨论根据其他表数据更新你要更新的表一、MS SQL Server 多表关联更新 sql server提供了update的from 子句,可以将要更新的表与其它的数据源连接起来。虽然只能对一个表进行更新,但是通过将要更新的表与其它的数据源连接起来,就可以在update的表达式 中引用要更新的表以外的其它数据。 一般形式:update A SET 字段1=B表字段表达式, 字段2=B表字段表达式 from B WHERE 逻辑表达式例如: UPDATE. Read More
posted @ 2012-12-13 23:30 刘礼 Views(424) Comments(0) Diggs(0)
Moss自帶的發郵件通知(提酲我)功能往往達不到客戶想要的效果,下面我將介紹一下怎麼樣自定義這個通知(提酲我)的郵件內容。1. 先了解通知(提酲我)的基本知識a. 通知(提酲我)是由WSS的定時執行程式(Windows SharePoint Services Timer)來定時發郵件提醒的,在這之前請確保這個服務已經啟用,如果啟用了可以在工作管理員下的處理程序中看到有一個OWSTIMER.EXE的進程b. 所發送通知(提酲我)的主旨與內容格式默認是在12"TEMPLATE"XML"alerttemplates.xml文件中定義的(註:此文件是不可以修改的)c. a Read More
posted @ 2012-11-25 15:33 刘礼 Views(219) Comments(0) Diggs(0)
cd C:\siebel\8.2.2.0.0\Tools_1\BINrem compile siebdev.exe /c tools.cfg /d ServerDataSrc /u sadmin /p Passw0rd /bc "Siebel Repository" "C:\siebel\8.2.2.0.0\ses\siebsrvr\OBJECTS\ENU\siebel_sia%date:~10,4%%date:~4,2%%date:~7,2%.srf"rem Stop service sc stop siebsrvr_SBA_82_SiebelTest Read More
posted @ 2012-08-14 17:59 刘礼 Views(297) Comments(0) Diggs(0)