Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
Other Resources:
What Is Posting
What Is Posting? Posting is an event that writes Inserts, Updates and Deletes in the forms to the database but not committing these transactions to the database. 2007-04-15, 6338👍, 0💬
What Are TTITLE and BTITLE
What Are TTITLE and BTITLE? TTITLE and BTITLE are commands to control report headings & footers. 2007-04-15, 5033👍, 0💬
What Is Consistency
What Is Consistency? Consistency : Assures users that the data they are changing or viewing is not changed until the are through with it. 2007-04-15, 4964👍, 0💬
What Is Rollback
What Is Rollback? Rollback causes work in the current transaction to be undone. 2007-04-15, 4835👍, 0💬
What Is a Savepoint
What Is a Savepoint? Savepoint is a point within a particular transaction to which you may rollback without rolling back the entire transaction. 2007-04-15, 4690👍, 0💬
In What Order Different Parts of SQL Statements Are Executed
In What Order Different Parts of SQL Statements Are Executed? Where clause, Group By clause, Having clause, Order By clause and Select. 2007-04-15, 4652👍, 0💬
What Is SQL*Plus
What Is SQL*Plus? SQL*Plus is an Oracle command line utility used for executing SQL and PL/SQL commands. The GUI version is called SQL Worksheet. 2007-04-15, 4645👍, 0💬
What Are Date Functions
What Are Date Functions? Date Functions are ADD_MONTHS, LAST_DAY, NEXT_DAY, MONTHS_BETWEEN and SYSDATE. 2007-04-15, 4636👍, 0💬
What Is Locking
What Is Locking? Locking are mechanisms intended to prevent destructive interaction between users accessing data. Locks are used to achieve. 2007-04-15, 4633👍, 0💬
What Is a Transaction
What Is a Transaction? Transaction is defined as all changes made to the database between successive commits. 2007-04-15, 4589👍, 0💬
What Are Character Functions
What Are Character Functions? Character Functions are INITCAP, UPPER, LOWER, SUBSTR and LENGTH. Additional functions are GREATEST and LEAST. 2007-04-15, 4565👍, 0💬
Popular Posts:
How To Compile a JUnit Test Class? Compiling a JUnit test class is like compiling any other Java cla...
What is triple constraint triangle in project management ? Project Management triangle is depicted a...
What is the benefit of using an enum rather than a #define constant? The use of an enumeration const...
Would I use print "$a dollars" or "{$a} dollars" to print out the amount of dollars in this example?...
.NET INTERVIEW QUESTIONS - What is the difference between thread and process? A thread is a path of ...