Raju Sachin on October 6th, 2009

The following table compares the maximum sizes and numbers of various objects defined in SQL Server 7.0, SQL Server 2000 and SQL Server 2005 databases or referenced in Transact-SQL statements. The table does not include Microsoft SQL Server 2000 Windows CE Edition and Microsoft SQL Server 2005 Windows CE Edition. The table has the technical [...]

Tags: , , , ,

Tech Guy on October 1st, 2009

Introduction
This is a java class file for sending mails using java APIs. It requires two jar files to be set in the class path. Also Java J2SDK is required to compile or run this code. A valid SMTP server ip is required and that should be authenticated by a valid user id and password.
Limitations [...]

Tags: , ,

Tech Guy on October 1st, 2009

Problem Description: Server not coming up after restart. (You will find error in log like: “Could not acquire lock on ldap … already in use …”)
Possible causes: Server did not shutdown properly though in console you will see the status as SHUTDOWN / UNKNOWN
Solution:

Logon to UNIX box.
Switch user to the user owning the domain
Run “/usr/ucb/ps [...]

Tags: , , , , ,

Tech Guy on October 1st, 2009

Problem Description: Execute Thread Count Full
Solution/Workaround:

Open WebLogic Admin Console
Go to the server for which the Default Execute Thread filled up
Go to “Monitor all Execute Queue”
Check for “Idle threads” count
If it is showing “Zero”, and application is running slow and the IdleThread count is “Zero” forlong (say 5 min)
Only option is to restart the server instance. [...]

Tags: ,

This Article is intended for Weblogic Administrators as a quick reference to known issues and their solution or workarounds. This will help in fast and effective resolution of problems
Problem Description: Heap Space Utilization too high (>=95% say) Solution/Workaround:

Log on to WebLogic Admin Console

Go to the server instance for which the heap space [...]

Tags: ,

Tech Guy on October 1st, 2009

Introduction
Commons-Email provides an API for sending email. It is built on top of the Java Mail API, which it aims to simplify. Some of the mail classes that are provided are as follows:

SimpleEmail – This class is used to send basic text based emails.
MultiPartEmail – This class is used to send multipart messages. [...]

Tags: , , ,

Tech Guy on October 1st, 2009

Introduction
Voice based solutions are needed when there is a legal requirement to play back an already recorded statement, recording and playing back the telephony conversations, speech recognition systems, visually impaired people, for training customer support representations and so on. Voice based solutions can be implemented using J2SE Java Sound API or Java Media Framework (JMF). [...]

Tags: , ,

Tech Guy on October 1st, 2009

Character Functions in oracle
String function plays important role in oracle as often it is required to convert the string or extract certain part of it. These functions accept column value or an expression as the input.

ASCII
This function is used to get the ASCII value of a character.
E.g. SELECT ASCII (’A’) from [...]

Tags: , , ,

Tech Guy on September 30th, 2009

With Visual Studio 2010 and the .NET Framework 4.0, Microsoft is focused on the core pillars of developer experience, support for the latest platforms spanning client, server, services and devices, targeted experiences for specific application types, and core architecture improvements
Much awaiting features are expected to be included with this release, Some of them are [...]

Tags: ,

To export the dynamic contents into Microsoft Excel’s multiple sheets.
JSP:
Through JSP the data could be added to the xls by setting the content type as “vnd.ms-excel” as below
response.setContentType("application/vnd.ms-excel");
But the data could only be appended to single sheet of the spreadsheet. Formatting of data will be difficult
JavaScript:
Java script dose not have any ready to access objects [...]

Tags: , , ,