<< < 80 81 82 83 84 85 86 87 88 89 90 > >>   Sort: Date

How To Define a RECORD Variable to Store a Table Row
How To Define a RECORD Variable to Store a Table Row? - Oracle DBA FAQ - Working with Database Objects in PL/SQL If you have a table, and want to define a RECORD variable to store all the data elements of a row from that table, you can use table_name%ROWTYPE to define the RECORD variable as shown in...
2007-04-27, 5074👍, 0💬

How do we generate Satellite assemblies
How do we generate Satellite assemblies?
2007-11-01, 5072👍, 0💬

Differences of XML, SGML, and HTML
Aren't XML, SGML, and HTML all the same thing? Not quite. SGML is the mother tongue, and has been used for describing thousands of different document types in many fields of human activity, from transcriptions of ancient Irish manuscripts to the technical documentation for stealth bombers, and from ...
2007-04-11, 5071👍, 0💬

what are the important principles of SOA
what are the important principles of SOA (Service oriented Architecture)? WCF is based on SOA. All big companies are playing big bets on SOA. So how can Microsoft remain behind? So in order to implement SOA architecture easily you need to use WCF. SOA is based on four important concepts: Boundaries ...
2007-11-04, 5070👍, 0💬

How will implement Page Fragment Caching
How will implement Page Fragment Caching ? Page fragment caching involves the caching of a fragment of the page, rather than the entire page. When portions of the page are need to be dynamically created for each user request this is best method as compared to page caching. You can wrap Web Forms use...
2007-10-23, 5070👍, 0💬

What Tools to Use to Write XHTML Documents
What Tools to Use to Write XHTML Documents? - XHTML FAQs - Introduction To XHTML 1.0 The basic tool you need to write XHTML documents is any text editor, like notepad on Windows system, or vi on Unix system. If you are looking for some advanced tools to help you writing XHTML documents, you can sele...
2007-05-12, 5069👍, 0💬

What Privilege Is Needed for a User to Insert Rows to Tables in Another Schema
What Privilege Is Needed for a User to Insert Rows to Tables in Another Schema? - Oracle DBA FAQ - Managing Oracle User Accounts, Schema and Privileges For a user to insert rows into tables of someone else's schema, he/she needs the INSERT ANY TABLE privilege. The following tutorial exercise gives y...
2007-05-01, 5068👍, 0💬

What Tools to Use to View XHTML Documents
What Tools to Use to View XHTML Documents? - XHTML FAQs - Introduction To XHTML 1.0 The basic tool you need to view XHTML documents is any Web browser, like Internet Explorer (IE) or FireFox. The following tutorial shows you how to view a XHTML document with : Write an XHTML document and save it as ...
2007-05-12, 5067👍, 0💬

What Privilege Is Needed for a User to Create Tables
What Privilege Is Needed for a User to Create Tables? - Oracle DBA FAQ - Managing Oracle User Accounts, Schema and Privileges To be able to create tables in a user's own schema, the user needs to have the CREATE TABLE privilege, or the CREATE ANY TABLE privilege, which is more powerful, and allows t...
2007-05-01, 5067👍, 0💬

How To Change SQL*Plus System Settings
How To Change SQL*Plus System Settings? - Oracle DBA FAQ - Introduction to Command-Line SQL*Plus Client Tool SQL*Plus environment is controlled a big list of SQL*Plus system settings. You can change them by using the SET command as shown in the following list: SET AUTOCOMMIT OFF - Turns off the auto...
2007-04-29, 5067👍, 0💬

How To Pass an Argument to a Function
How To Pass an Argument to a Function? - PHP Script Tips - Creating Your Own Functions To pass an argument to a function, you need to: Add an argument definition in the function definition. Add a value as an argument when invoking the function. Here is a PHP script on how to use arguments in a funct...
2007-04-24, 5067👍, 0💬

How To Download and Install PHP for Windows
How To Download and Install PHP for Windows? - PHP Script Tips - Downloading and Installing PHP The best way to download and install PHP on Windows systems is to: Go to http://www.php.net, which is the official Web site for PHP. Download PHP binary version for Windows in ZIP format. Unzip the downlo...
2007-04-22, 5067👍, 0💬

How To Count Duplicated Values in a Column
How To Count Duplicated Values in a Column? - Oracle DBA FAQ - Understanding SQL SELECT Query Statements If you have a column with duplicated values, and you want to know what are those duplicated values are and how many duplicates are there for each of those values, you can use the GROUP BY ... HAV...
2007-04-20, 5067👍, 0💬

What Is a Link Tag/Element
What Is a Link Tag/Element? - XHTML 1.0 Tutorials - Document Structure and Head Level Tags A "link" element is an optional sub-element of the "head" element. A "link" element is used to specify Cascading Style Sheet (CSS) file. Here is good example of a link element: &lt;?xml version="1.0" encod...
2007-05-12, 5066👍, 0💬

How can we call methods in remoting Asynchronously ?
.NET INTERVIEW QUESTIONS - How can we call methods in remoting Asynchronously ? All previous examples are a synchronous method calls that means client has to wait until the method completes the process. By using Delegates we can make Asynchronous method calls.
2009-09-01, 5065👍, 0💬

What Are the XHTML Elements Defined with PCDATA Contents
What Are the XHTML Elements Defined with PCDATA Contents? - XHTML Tutorials - Introduction To Element Content Syntax The following XHTML elements are defined to use the PCDATA content model: &lt;title&gt; - Element to provide a title to the document. &lt;style&gt; - Element to provid...
2007-05-12, 5064👍, 0💬

What Is Wrong with My Body Elements
What Is Wrong with My Body Elements? - XHTML 1.0 Tutorials - Body Tag and Block Level Tags If you are having trouble with your body elements, it could be caused by one of the following common mistakes: &lt;!-- Text can not be used in body directly --&gt; &lt;body&gt; Hello world! &am...
2007-05-12, 5064👍, 0💬

How To Update an Existing Rows in a Table
How To Update an Existing Rows in a Table? - PHP Script Tips - Working with MySQL Database Updating existing rows in a table requires to run the UPDATE statement with a WHERE clause to identify the row. The following sample script updates one row with two new values: &lt;?php include "mysql_conn...
2007-04-19, 5064👍, 0💬

How To Create a Table in a Specific Tablespace
How To Create a Table in a Specific Tablespace? - Oracle DBA FAQ - Managing Oracle Tablespaces and Data Files After you have created a new tablespace, you can give it to your users for them to create tables in the new tablespace. To create a table in a specific tablespace, you need to use the TABLES...
2007-05-03, 5062👍, 0💬

What Are Group Functions
What Are Group Functions? Group Functions returns results based upon groups of rows rather than one result per row, use group functions. They are AVG, COUNT, MAX, MIN and SUM.
2007-04-15, 5062👍, 0💬

Inline Elements
Inline Elements - XHTML 1.0 - Interview Questions What is an inline element? Is "h1" an inline element? Is "br" an inline element? Is "strong" an inline element? Can you use an inline element inside a "p" element? Can you use an inline element inside a "li" element? Can you use an inline element ins...
2007-05-12, 5061👍, 0💬

What Is a Sub-element
What Is a Sub-element? - XHTML Tutorials - Introduction To Element Content Syntax A sub-element is an XHTML element that is included inside the content of another XHTML element. The inner element is called the sub-element or child element. The outer element is called the parent element. Together the...
2007-05-12, 5061👍, 0💬

Write a program that ask for user input from 5 to 9 then calculate the average
Write a program that ask for user input from 5 to 9 then calculate the average int main() { int MAX=4; int total =0; int average=0; int numb; cout&lt;&lt;"Please enter your input from 5 to 9"; cin&gt;&gt;numb; if((numb &lt;5)&amp;&amp;(n umb&gt;9))cout&lt;&lt;...
2012-03-28, 5060👍, 0💬

How To Create a New Table Using MyISAM Storage Engine
How To Create a New Table Using MyISAM Storage Engine? - MySQL FAQs - Storage Engines: MyISAM, InnoDB and BDB MyISAM storage engine is based on the ISAM (Indexed Sequential Access Method) concept, which was first developed at IBM to store and retrieve data on secondary storage systems like tapes. My...
2007-05-10, 5060👍, 0💬

<< < 80 81 82 83 84 85 86 87 88 89 90 > >>   Sort: Date