Oracle官方参考:PL/SQL Language Referenc->9 PL/SQL TriggerReasons to Use Trigger:■ Automatically generate calculated column values ■ Log events ■ Gather statistics on table access ■ Modify table data when DML statements are issued against views ■ Enforce referential integrity when child and parent tab Read More
posted @ 2013-04-03 15:56
javawebsoa
Views(192)
Comments(0)
Diggs(0)
Get SharePoint 2010 version with PowerShellAs part of the summary script I use the following code to get the SharePoint 2010 build version. This identifies which CU or Service Pack has been installed.There are a couple of ways for getting the build version:1. Using Central AdministrationIt is of cou Read More
posted @ 2013-04-03 15:52
javawebsoa
Views(209)
Comments(0)
Diggs(0)
// BSearch.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include <iostream>using namespace std;template <class T>void PrintfNum(T a[],const int& n);/*** search n in a[], return the index, if not find, return -1.*/template <class T>int Read More
posted @ 2013-04-03 15:48
javawebsoa
Views(181)
Comments(0)
Diggs(0)