Monday, May 21, 2012 0:41

Archive for March, 2009

Enable SQL Trace in Documentum

Saturday, March 28, 2009 21:21

To enable sql_trace FOR A SESSION, ise the following API: "execsql,c,alter session set sql_trace =3D TRUE" Then, run the DQL statements you wish to trace. This will generate a *.trc file in one of two locations on the set up of the installation The <ora_sid>_<pid>_ORA.trc can be found in either: "$ORACLE_HOME/rdbms/log" or "$ORACLE_BASE/admin/<orasid>/udump"

This was posted under category: Documentum  |  Read Full Story  |  0 Comments
Tagged with:

Avoid Folder predicates

Saturday, March 28, 2009 21:10

Consider the following query that contains a ‘Folder’ predicate: select r_object_id from dm_document where folder('/Temp/Folder1',descend) The query selects all documents that are in /Temp/Folder1 or any sub-folders underneath. This sort of query generally performs quite well. However if you want to select documents from 2 or more sets of folder it is best ...

This was posted under category: Documentum  |  Read Full Story  |  0 Comments
Tagged with:

DQL Tips

Saturday, March 28, 2009 21:08

*** get CURRENT TIME on server *** select DATE(NOW) as systime from dm_server_config ------------------------------------------------------------------------------------- *** get the implicit version label *** select s.r_object_id,s.object_name,r.r_version_label from dm_sysobject s, dm_sysobject_r r where r.r_object_id = s.r_object_id and r.i_position = -1 ------------------------------------------------------------------------------------- *** include r_object_id to remove blank rows select object_name, r_object_id, a_expiration_date from dfas_common where folder('/Raj Srinivasan') and any a_expiration_date is not ...

This was posted under category: Documentum  |  Read Full Story  |  0 Comments
Tagged with:

DROP MATERIALIZED VIEW

Friday, March 27, 2009 8:32

When you drop a materialized view, Oracle Database does not place it in the recycle bin. Therefore, you cannot subsequently either purge or undrop the materialized view. The keyword SNAPSHOT is supported in place of MATERIALIZED VIEW for backward compatibility. Prerequisites The materialized view must be in your own ...

This was posted under category: Oracle  |  Read Full Story  |  0 Comments
Tagged with: ,

What is a Docking Station

Saturday, March 21, 2009 10:31

A docking station is a bridge to the past for many newer computers, but you might find you need one even if you have the latest on-the-market laptop computer. A docking station is a device into which you can plug your laptop in order to gain extra functionality, ...

This was posted under category: Computer Skill  |  Read Full Story  |  0 Comments
Tagged with:

Why CSV files

Saturday, March 21, 2009 9:51

 ...

This was posted under category: Java  |  Read Full Story  |  0 Comments
Tagged with:

why CSV files

Saturday, March 21, 2009 9:50

 ...

This was posted under category: Java  |  Read Full Story  |  0 Comments
Tagged with:

Backup repository by oracle tools

Saturday, March 21, 2009 9:36

Backup the original repository by Oracle exp tool. Change directory to <Backup_Folder> and backup < Target_Repository >...

This was posted under category: Team Fight  |  Read Full Story  |  0 Comments
Tagged with:

Root beer

Saturday, March 21, 2009 9:33

Root beer was created in the mid-1800s by Philadelphia pharmacist Charles Hires. The original root beer was a low-alcohol, naturally effervescent beverage made by fermenting a blend of sugar and yeast with various roots, herbs and barks. Today's commercial root beer is completely non-alcoholic and generally contains sugar, caramel coloring, a ...

This was posted under category: English  |  Read Full Story  |  0 Comments
Tagged with:

How to Convert Fahrenheit to Celsius

Saturday, March 21, 2009 9:32

    1. Take the temperature in Fahrenheit subtract 32. 2. Divide by 1.8. 3. The result is degrees Celsius.

This was posted under category: English  |  Read Full Story  |  0 Comments
Tagged with: