Saturday, May 25, 2013 1:07

Posts Tagged ‘Database’

SQL Server Profiler – Only TrueType fonts are supported

Sunday, August 22, 2010 13:12

Error message - "Only TrueType fonts are supported. This is not a TrueType font." was thrown when using SQL Server Profiler. Solution: 1. Open SQL Server Profilr 2. Go to ' Tool'Menu 3. Select Options 4. Change the font name to "Arial" 5. Click OK.

This was posted under category: SQL Server  |  Read Full Story  |  0 Comments

Get definition for view in Oracle

Friday, April 23, 2010 9:19

set LONG 10000 select TEXT from ALL_VIEWS where view_name = 'MY_VIEW'; Line one must be at least the size of the statement used to create the view. Either pick a really ...

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

PowerDesigner Non SQLError

Friday, February 5, 2010 13:35

The error "Non SQLError Could not load class Driver_name" was thrown when using PowerDesigner to generate the hibernate mapping files. This error occurs if you enter an incorrect Driver and URL in the Database Profile.

This was posted under category: Database  |  Read Full Story  |  0 Comments

PowerDesigner Reverse Engineer

Friday, February 5, 2010 13:34

Get the Physical Data Model 1. Menu Operation File, Reverse Engineer , Database, New Phycial Data Model 2. Connection Add a connect to the target database 3. Choose tables to generate the models Generate the Java Code 1. Menu Operation Tools , Generate Object-Oriented Model, Detail, O/R Mapping, Enable Transformations, Extended Model Definitions, O/R Mapping,      Hibernate To be continued.

This was posted under category: Database, Java  |  Read Full Story  |  1 Comment

Oracle Tuning Documentum Server

Monday, December 7, 2009 14:44

Modifying the dmcl.ini File on the Oracle WebCenter Content Service for Documentum Host On all computers that host the Oracle WebCenter Content Service for Documentum, you can increase the max_session_count variable in the dmcl.ini file to allow for additional concurrent sessions. By default, the ...

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

Oracle Session Statistics

Monday, December 7, 2009 13:55

Here are some scripts related to Session Statistics . Session I/O By User SESSION I/O BY USER NOTES: Username - Name of the Oracle process user OS User - Name of the operating system user PID - Process ID of the session SID - Session ID of the session Serial# - Serial# of the session Physical Reads - ...

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

SQL SELECT TOP N

Saturday, November 14, 2009 0:03

SQL Server: SELECT TOP 10 product, descr, email FROM products ORACLE:...

This was posted under category: Database  |  Read Full Story  |  0 Comments

ORA-00942: Table or view does not exist

Friday, November 13, 2009 21:21

// // The table you ...

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

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

MySQL 5.0 or MySQL 5.1?

Monday, March 2, 2009 10:09

I have not yet seen enough of 5.1 in real-world production environments. MySQL 5.1 rease as “GA” seems to be the most controversial to date. It ...

This was posted under category: MySQL  |  Read Full Story  |  0 Comments