<< < 26 27 28 29 30 31 32 33 34 35 36 > >>   Sort: Date

Is Attribute Name Case Sensitive
Is Attribute Name Case Sensitive? - XHTML Tutorials - Introduction To Tag and Attribute Syntax Yes, attribute names are case sensitive. You must write all attribute names in lower case letters. Here are some valid and invalid attribute names: &lt;a href="http://dev.fyicenter.com "&gt;- Valid...
2007-05-12, 5771👍, 0💬

How To Delete Existing Rows in a Table
How To Delete Existing Rows in a Table? - MySQL FAQs - Managing Tables and Running Queries with PHP Scripts If you want to remove a row from a table, you can use the DELETE statement with a WHERE clause to identify the row. The following sample script deletes one row: &lt;?php include "mysql_con...
2007-05-11, 5771👍, 0💬

How In-line Elements Affect Line Box Heights
How In-line Elements Affect Line Box Heights? - CSS Tutorials - HTML Formatting Model: Block, Inline and Floating Elements If a line box contains only text without any in-line elements, its height is equal to the line-height property of the enclosing block element. If a line box contains text mixed ...
2007-05-09, 5770👍, 0💬

How does one suppress or customize error messages in Forms?
How does one suppress or customize error messages in Forms? One can either set the message level using the system variable SYSTEM.MESSAGE_LEVEL or trap errors using the ON-ERROR or ON-MESSAGE triggers. MESSAGE_LEVEL: Set to 0, 5, 10, 15, 20, 25 to suppress all messages with severity below this level...
2011-04-05, 5769👍, 0💬

How To Sort Output in Descending Order
How To Sort Output in Descending Order? - MySQL FAQs - SQL SELECT Query Statements with GROUP BY If you want to sort a column in descending order, you can specify the DESC keyword in the ORDER BY clause. The following SELECT statement first sorts the "tag" in descending order, then sorts the "counts...
2007-05-11, 5769👍, 0💬

Stoping JSP Execution in the Middle of a JSP Page
Can I stop JSP execution while in the midst of processing a request? Yes. Preemptive termination of request processing on an error condition is a good way to maximize the throughput of a high-volume JSP engine. The trick (asuming Java is your scripting language) is to use the return statement when y...
2007-04-03, 5767👍, 0💬

How To Position Background Images
How To Position Background Images? - CSS Tutorials - Page Layout and Background Image Design In the previous exercise, the background image is repeated on the entire background area of the DIV tag. If you want to have one copy of the image at the bottom right corner, you need to use background-repea...
2007-05-11, 5766👍, 0💬

How To Create Atom Feed Files
How To Create Atom Feed Files? - RSS FAQs - Atom Feed Introduction and File Generation Obviously, there are many ways to create Atom Feed files: Using Atom on-line scrapers - On-line scrapers are on-line services that can analyze your Web pages and convert the result into Atom feed files automatical...
2007-05-12, 5765👍, 0💬

What Is a Dead Lock
What Is a Dead Lock? - MySQL FAQs - Transaction Management: Commit or Rollback A dead lock is phenomenon happens between two transactions with each of them holding a lock that blocks the other transaction as shown in the following diagram: (transaction 1) (transaction 2) update row X to create lock ...
2007-05-09, 5764👍, 0💬

How To Connect to a Remote Server
How To Connect to a Remote Server? - Oracle DBA FAQ - Introduction to Oracle SQL Developer If you have an Oracle server running remotely on a network, and you know all the access information needed, you can following steps to connect your Oracle SQL Developer: Start Oracle SQL Developer Right-click ...
2007-04-26, 5759👍, 0💬

Which set of preprocessor directives is used to prevent multiple inclusions of header files?
Which set of preprocessor directives is used to prevent multiple inclusions of header files? 1 #ifndef, #define and #endif 2 #ifdefined and #enddefine 3 #define and #endif only 4 #$if and #endif 5 #if and #define
2012-04-30, 5758👍, 0💬

What Atom 1.0 Files Look Like
What Atom 1.0 Files Look Like? - RSS FAQs - Introduction to RSS (Really Simple Syndication) Basics An Atom 1.0 file looks like the sample Atom 1.0 document below: &lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;feed xmlns="http://www.w3.org/2005/ Atom"&gt;&lt;title&gt;Atom F...
2007-05-12, 5758👍, 0💬

Hot To Test Borders with Different Widths, Styles, and Colors
Hot To Test Borders with Different Widths, Styles, and Colors? - CSS Tutorials - HTML Formatting Model: Block, Inline and Floating Elements If you want test borders on all 4 sides of a &lt;P> tag with different widths, styles and colors, you can use the following HTML and CSS document. It allows...
2007-05-11, 5756👍, 0💬

What is GAC
What are situations when you register .NET assembly in GAC ? GAC (Global Assembly Cache) is used where shared .NET assembly reside. GAC is used in the following situations :- If the application has to be shared among several application. If the assembly has some special security requirements like on...
2007-10-22, 5753👍, 0💬

How To Define an Anonymous Block
How To Define an Anonymous Block? - Oracle DBA FAQ - Introduction to PL/SQL An anonymous block must have an execution part, which is a group of other PL/SQL statements enclosed in the BEGIN ... END statement. Here is a script on how to define a simple anonymous block with SQL*Plus: SQL> set serverou...
2007-04-25, 5752👍, 0💬

What RSS 2.0 Files Look Like
What RSS 2.0 Files Look Like? - RSS FAQs - Introduction to RSS (Really Simple Syndication) Basics A RSS 2.0 file looks like the sample RSS 2.0 document below: &lt;?xml version="1.0"?&gt; &lt;rss version="2.0"&gt; &lt;channel&gt; &lt;title&gt;Developer FAQs, Tips and T...
2007-05-12, 5744👍, 0💬

What Are the Predefined Tablespaces in a Database
What Are the Predefined Tablespaces in a Database? - Oracle DBA FAQ - Managing Oracle Tablespaces and Data Files When you create a new database, Oracle server will create 4 required tablespaces for the new database: SYSTEM Tablespace - Every Oracle database contains a tablespace named SYSTEM, which ...
2007-05-03, 5744👍, 0💬

How can we check if all the validation control are valid and proper
How can we check if all the validation control are valid and proper ? Using the Page.IsValid() property you can check whether all the validation are done.
2007-10-24, 5743👍, 0💬

Iterator Interface
Is Iterator a Class or Interface? What is its use? Iterator is an interface which is used to step through the elements of a Collection.
2007-03-03, 5735👍, 0💬

How To Turn On or Off Recycle Bin for the Instance
How To Turn On or Off Recycle Bin for the Instance? - Oracle DBA FAQ - Managing Oracle Database Tables You can turn on or off the recycle bin feature for an instance in the instance parameter file with "recyclebin=on/off". You can also turn on or off the recycle bin feature on the running instance w...
2007-05-04, 5733👍, 0💬

How To Convert Dates to Character Strings
How To Convert Dates to Character Strings? - MySQL FAQs - Introduction to SQL Date and Time Handling You can convert dates to character strings using the DATE_FORMAT(date, format) function. MySQL supports the following basic formatting codes: %a Abbreviated weekday name (Sun..Sat) %b Abbreviated mon...
2007-05-11, 5732👍, 0💬

What Is CSV
What Is CSV? - MySQL FAQs - Database Basics and Terminologies CSV (Comma Separated Values) is a file format used to store database table contents, where one table row is stored as one line in the file, and each data field is separated with comma.
2007-05-10, 5732👍, 0💬

How did you do resource allocations
How did you do resource allocations?
2007-10-30, 5731👍, 0💬

Can Group Functions Be Mixed with Non-group Selection Fields
Can Group Functions Be Mixed with Non-group Selection Fields? - MySQL FAQs - SQL SELECT Query Statements with GROUP BY If a group function is used in the SELECT clause, all other selection fields must be group level fields. Non-group fields can not be mixed with group fields in the SELECT clause. Th...
2007-05-11, 5731👍, 0💬

<< < 26 27 28 29 30 31 32 33 34 35 36 > >>   Sort: Date