<< < 88 89 90 91 92 93 94 95 96 97 98 > >>   Sort: Date

How many types of Transactions are there in COM + .NET
How many types of Transactions are there in COM + .NET ? There are 5 transactions types that can be used with COM+. Whenever an object is registered with COM+ it has to abide either to these 5 transaction types. Disabled: - There is no transaction. COM+ does not provide transaction support for this ...
2007-10-22, 4849👍, 0💬

What Is the Robots META Tag/Element
What Is the Robots META Tag/Element? - XHTML 1.0 Tutorials - Document Structure and Head Level Tags The robots meta element is a special meta element that provides directives to robots who is visiting the XHTML document. The robots meta element must include the "name" attribute as, name="robots". Th...
2007-05-12, 4849👍, 0💬

What Are Sub-elements of the feed Element
What Are Sub-elements of the feed Element? - RSS FAQs - Atom Feed File Structure and Elements The "feed" element has the following sub-elements defined: &lt;author&gt; - Specifying the personal information about an author of the contents provided in this feed. A feed element may have zero, o...
2007-05-12, 4849👍, 0💬

How To See Which Storage Engines Are Supported in Your MySQL Server
How To See Which Storage Engines Are Supported in Your MySQL Server? - MySQL FAQs - Storage Engines: MyISAM, InnoDB and BDB If you want to know exactly which storage engines are supported in your MySQL server, you can run the "SHOW ENGINES" command as shown in the tutorial example below: mysql> SHOW...
2007-05-10, 4848👍, 0💬

How To Define a Function with Any Number of Arguments
How To Define a Function with Any Number of Arguments? - PHP Script Tips - Creating Your Own Functions If you want to define a function with any number of arguments, you need to: Declare the function with no argument. Call func_num_args() in the function to get the number of the arguments. Call func...
2007-04-25, 4848👍, 0💬

What Is a SELECT Query Statement
What Is a SELECT Query Statement? - MySQL FAQs - SQL SELECT Query Statements with GROUP BY The SELECT statement is also called the query statement. It is the most frequently used SQL statement in any database application. A SELECT statement allows you to retrieve data from one or more tables or view...
2007-05-11, 4847👍, 0💬

What are the different ways of moving data between databases in SQL Server
What are the different ways of moving data between databases in SQL Server? There are lots of option available; you have to choose your option depending upon your requirements. Some of the options you have are: BACKUP/RESTORE, detaching and attaching databases, replication, DTS, BCP, logshipping, IN...
2007-10-25, 4846👍, 0💬

Software Test Automation Evaluation Report
Trying to find an Example of a Test Automation Evaluation Report online. It is a report that defines the feasibility of using an automated testing tool to test software. Should be about 2-4 pages basically saying whether testing would be worth the Time/Money. Is there a good example somewhere?
2011-04-14, 4843👍, 0💬

How To End the Current Transaction
How To End the Current Transaction? - Oracle DBA FAQ - Understanding SQL Transaction Management There are several ways the current transaction can be ended: Running the COMMIT statement will explicitly end the current transaction. Running the ROLLBACK statement will explicitly end the current transa...
2007-04-18, 4843👍, 0💬

To set all checkboxes to true using JavaScript?
To set all checkboxes to true using JavaScript? //select all input tags function SelectAll() { var checkboxes = document.getElementsByTagName( "input");for(i=0;i&lt;checkboxes.le ngth;i++){ if(checkboxes.item(i).attribut es["type"].value== "checkbox") { checkboxes.item(i).checked = true; } } }
2008-11-11, 4841👍, 0💬

What is a Assembly
What is a Assembly? Assembly is unit of deployment like EXE or a DLL. An assembly consists of one or more files (dlls, exefs, html files etc.), and represents a group of resources, type definitions, and implementations of those types. An assembly may also contain references to other assemblies. The...
2007-10-22, 4841👍, 0💬

How To Run Queries on External Tables
How To Run Queries on External Tables? - Oracle DBA FAQ - Loading and Exporting Data If you have an external table defined as a text file with the ORACLE_LOADER driver, you can add data to the text file, and query the text file through the external table. By default, data fields in the text file sho...
2007-05-01, 4839👍, 0💬

How to set the focus in an element using JavaScript?
How to set the focus in an element using JavaScript? Use the "focus()" method of the element object: &lt;script> function setFocus() { if(focusElement != null) { document.forms[0].elements["my elementname"].focus();} } &lt;/script>
2008-08-19, 4838👍, 0💬

What is the use of connection object
What is the use of connection object ? They are used to connect a data to a Command object. ? An OleDbConnection object is used with an OLE-DB provider ? A SqlConnection object uses Tabular Data Services (TDS) with MS SQL Server
2007-10-24, 4837👍, 0💬

What is garbage collection
What is garbage collection? Garbage collection is a CLR feature which automatically manages memory. Programmers forget to release the objects while coding ..... Laziness (Remember in VB6 where one of the good practices is to set object to nothing). CLR automatically releases objects when they are no...
2007-10-22, 4837👍, 0💬

What Are the "mysql" Command Line Options
What Are the "mysql" Command Line Options? - MySQL FAQs - Command-Line End User Interface mysql "mysql" offers a big list of command line options. Here are some commonly used options: "-?" - Displays a help message on how to use "mysql" and terminates the program. "-u userName" - Specifies a user na...
2007-05-08, 4837👍, 0💬

Which attribute is used in order that the method can be used as
Which attribute is used in order that the method can be used as WebService ? WebMethod attribute has to be specified in order that the method and property can be treated as WebService.
2007-10-23, 4836👍, 0💬

What Is the Base Tag/Element
What Is the Base Tag/Element? - XHTML 1.0 Tutorials - Document Structure and Head Level Tags The "base" element is an optional sub-element of the "head" element. The "base" element specifies a base URL for all the hyper links in XHTML document. It has one required attribute called "href" to allow yo...
2007-05-12, 4835👍, 0💬

How To Create a New Table Using the CSV Storage Engine
How To Create a New Table Using the CSV Storage Engine? - MySQL FAQs - Storage Engines: MyISAM, InnoDB and BDB CSV (Comma-Separated Values) storage engine stores table data in text files in comma-separated value format. CSV is not the default storage engine. You need to specify "ENGINE = CSV" at the...
2007-05-10, 4835👍, 0💬

How To Create a New Table Using the MEMORY Storage Engine
How To Create a New Table Using the MEMORY Storage Engine? - MySQL FAQs - Storage Engines: MyISAM, InnoDB and BDB MEMORY storage engine stores table data in computer system memory. This is good for creating temporary tables. MEMORY is not the default storage engine. You need to specify "ENGINE = MEM...
2007-05-10, 4827👍, 0💬

How To Pass Variables By References
How To Pass Variables By References? - PHP Script Tips - Creating Your Own Functions You can pass a variable by reference to a function by taking the reference of the original variable, and passing that reference as the calling argument. Here is a PHP script on how to use pass variables by reference...
2007-04-24, 4826👍, 0💬

How To Use LIKE Conditions
How To Use LIKE Conditions? - Oracle DBA FAQ - Understanding SQL Basics LIKE condition is also called pattern patch. There 3 main rules on using LIKE condition: '_' is used in the pattern to match any one character. '%' is used in the pattern to match any zero or more characters. ESCAPE clause is us...
2007-04-23, 4826👍, 0💬

How To Drop an Existing Table
How To Drop an Existing Table? - Oracle DBA FAQ - Understanding SQL DDL Statements If you want to delete an existing table and its data rows, you can use the DROP TABLE statement as shown in this script: SQL> connect HR/fyicenter Connected. SQL> CREATE TABLE emp_dept_10 2 AS SELECT * FROM employees ...
2007-04-22, 4826👍, 0💬

What is Difference between NameSpace and Assembly?
.NET INTERVIEW QUESTIONS - What is Difference between NameSpace and Assembly? Following are the differences between namespace and assembly : * Assembly is physical grouping of logical units. Namespace logically groups classes. * Namespace can span multiple assembly.
2010-03-02, 4825👍, 0💬

<< < 88 89 90 91 92 93 94 95 96 97 98 > >>   Sort: Date