Author: Jiangnan BaiyiFrom 8 I to 10g, Oracle constantly evolved its own SQL tuning intelligence, and some secret-level optimization tips have expired.However, I like to be ineffective. I don't have to worry about it. I love to stick to toad for Oracle Xpert, and I love to do things based on the general direction of comfort and server optimization.
1. excution planExcution plan is the most basic optimization concept, no matter how complicated your opt
turning face, otherwise it is not loveWhat is wrong with someone who has got something to give and that we love a person who is willing to work and get rewarded? To Love is to love the one who is most worthy of loveWhy do we eliminate a pair of shoes, more often because the shoes make the feet uncomfortable or because the shoes are no longer fashionable and beautiful?Marriage is like shoes, comfortable and uncomfortable only the feet know. But the question is whether the shoes are good or bad,
cache| solve last night's business system import data and rebuild the index when a session suddenly stalled, with Toad a look, has been waiting for the library Cache Lock. This lock is not visible in the TOAD or OEM, and the session starts every three seconds, but it waits for the lock every time. Obviously, this is related to the data dictionary, it should be an indexed data dictionary records are locked,
Oracle
Abstract: Ancient saying: "工欲善其事, must first get its device", although it feels that those who use the command line, script to play Oralce is a warrior, but with good third-party software can make our use of Oracle level to play to the extreme, and thus greatly improve our application of Oracle efficiency.
First, it is worth a problem is Pl/sql Developer, which is almost Oracle's heroes are in the use of software, but also my favorite software, strongly recommended:
1. Software Evaluati
the exclusion of monopoly, will make the overall situation index effect, must be re-hing occurred.2. Dimension ofDimension this is the advanced function of Oracle, in Plsql Developer no measure to find this object (but can enforce the statement to generate the object, but can not hold the later maintenance), only in the Toad have its figure. It is an elucidation of the size relationship between data dimension fields. The generosity of the pacesetter
Label: One of the Oracle Learning Starter Series Database Development and history This Oracle Learning Starter series is based on some of the notes and projects I work on. On the one hand is the accumulation of their own knowledge, to facilitate the upgrading of skills, on the other hand, and the small partners with the exchange of exchange, do a love to share the good citizens. Of course, at the end of the mix with their own a small wish, to change their own not to re-article the smell of the
Framework programming OverviewAn HTML page can have one or more child frameworks marked with
Mutual reference between frameworksAll frames on a page are provided as properties of the window object in the form of a set, for example, window. frames indicates the set of all frames on the page. This is similar to form objects, link objects, and image objects. The difference is that these sets are the attributes of document. Therefore, to reference a sub-framework, you can use the following synta
the package to C disk, in order to configure the use of convenience, I will extract the folder name from "nginx-0.8.19" to "Nginx", so that we as long as the load-balanced site in IIS set good, Place the corresponding link address in the appropriate configuration file for Nginx, where we open the C:\nginx\conf \nginx.conf file and place the following in the line above the file's "server {":
Code highlighting produced by Actipro CodeHighlighter (freew
example, we want to develop a plugin, make a special edit box, when it is clicked, then alert the contents of the current edit box. You can do this:$.fn.extend ({alertwhileclick:function () {$ (this). Click (function () { Alert (This). Val ()); }); } });$ ("#input1"). Alertwhileclick (); On the page is:$ ("#input1") is a jquery instance, and when it calls the Member method Alertwhileclick, it implements the extension, which pops up the contents of the current edit each time it is clicked.jque
values. For most junior programmers, this is a confusing concept.
To change the scope of a variable within a function, you can use the global statement.
Copy CodeThe code is as follows:
Code highlighting produced by Actipro Codehighlighter (freeware) http://www.codehighlighter.com/-->
function function_name () {
Global $var;
}
$var = 20;
Function_name (); Function call.
?>
In this example, the $var inside the function is now the same as the $var ou
1. Objects and typesIn ActionScript 3.0, all classes (both built-in classes and user-defined classes) are derived from the object class.However, the objectThe data type is no longer the default data type, Although all other classes are derived from it.In ActionScript 2.0, the following two linesCodeEquivalent, because the lack of Type annotations means that the variable is of the object type:
Code highlighting produced by Actipro CodeHighlighter (freeware
This article will introduce how to build a powerful Python IDE environment through various extensions in Emacs, includingSnippet tool, smart prompt, Automatic completion, reconstruction tool, debugging, and Gae debuggingAnd so on. The prerequisites for installing the following tools are that you have a certain understanding of the Emacs configuration file. All the relevant El files must be placed where load_path can be loaded.
1. yasnippet
Snippet tool. You can customize some templates, whic
and save the changes.
Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->
# Import
Foundation
/
Foundation. h
>
# Import
"
Cattle. h
"
@ Interface BULL: cattle {Nsstring*Skincolor;}-(Void) Saysomething;-(Nsstring*) Getskincolor;-(Void) Setskincolor :( nsstring*) Color;@ End Step 7: Open bull. M and make the following changes and save
Code highlighting produced by Actipro Co
If we want read the content into a buffer, we can use the Function
Getline ()
For example, the following code usesGetline ()Function to displayFirst 100 characters from each line of a text file:
Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->Int max_length = 100;
Char line [max_length];
While (Fin. Getline (line, max_length ))
{
Cout }
and, if we want to read the content into a string, we also use th
In fact, I didn't want to write help because there are a lot of examples in the following articles:
CYQ. Data lightweight Data layer application example 1 message board (4)
CYQ. Data lightweight Data layer road to gorgeous upgrades V1.3 (5)
CYQ. Data lightweight Data layer path application example 2 online chat (6)
CYQ. Data lightweight Data layer elegant V1.4 now with API help documentation (9)
However, many people are still very lazy. when they enter the group, they will ask how to use it.
L
: \ WebsiteBackup \ DotNetNuke. the config file is used to modify the database connection. If the security settings are the same, you only need to change the database name from "DNNWebsite" to "DNNWebsiteUpgrade ".
Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->ConnectionString = "Server = (local); Database =
WebsiteDNN
WebsiteDNNUpgrade; uid = WebDNNAdmin; pwd = ourpassword ;"
ProviderName = "Sys
Document directory
Lambda Basics
Not lambda?
Lambda broken?
A lambda function is also called an anonymous function. That is, the function has no specific name. Let's take a look at the simplest example:
Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->Def f (x ):
Return x ** 2
Print f (4)
If lambda is used in Python, it is written as follows:
Code highlighting produced by Actipro CodeHighlighter
Reprinted from Http://www.cnblogs.com/RascallySnake/archive/2010/05/07/1729563.htmljquery's Extend extension method:The extension method of jquery extend is a common method in the process of writing plug-ins, there are some overloaded prototypes, and here we go to understand.One, the extension method of jquery prototype is:
Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->Extend (dest,src1,src2,src3
The success of JavaScript is a great relish, writing JavaScript code for Web pages is the basic skill of all web designers, and this interesting language contains many things that are not well known, even for years of JavaScript programmers who have not fully understood them. This article is about 7 aspects of JavaScript that you are not familiar with but very practical techniques.
Brief statementJavaScript can use abbreviated statements to quickly create objects and arrays, such as the follow
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.