摘要:
DB2中批量导出Sequence 如下脚本,可以将某个用户的全部sequence查询出来,并拼成创建语句。 代码如下:select 'CREATE OR REPLACE SEQUENCE ' ||SEQNAME|| ' AS INT '|| ( case when LASTASSIGNEDVAL IS NULL then ' START WITH '||CHAR(BIGINT(START)+1) else ' START WITH '||CHAR(BIGINT(LASTASSIGNEDVAL)+1) end)|| ' IN
阅读全文
posted @ 2013-01-10 10:06
南守拥
阅读(1714)
推荐(0)
摘要:
/Files/nanshouyong326/南守拥认证申请.doc
阅读全文
posted @ 2012-05-16 21:51
南守拥
阅读(357)
推荐(0)
摘要:
/Files/nanshouyong326/testJNotify.rar
阅读全文
posted @ 2011-03-15 18:08
南守拥
阅读(310)
推荐(0)
摘要:
/Files/nanshouyong326/MinaTest.rar
阅读全文
posted @ 2011-03-15 18:04
南守拥
阅读(293)
推荐(0)
摘要:
/Files/nanshouyong326/HttpModle_server.rar
阅读全文
posted @ 2011-02-24 14:35
南守拥
阅读(424)
推荐(0)
摘要:
服务器Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--1//2//asimpleagiserverusingepollinlinux3//4//2010-12-205//bynsy6//7#includesys/socket.h8#includesys/epoll.h9#includenetinet/in.h10#includearpa/inet.h11#includefcntl.h12#includeunistd.h13#
阅读全文
posted @ 2010-12-21 16:42
南守拥
阅读(1750)
推荐(0)
摘要:
PAZU 是4Fang 为配合“四方在线”软件于2004年开发的WEB打印控件,适用于各种WEB软件项目的打印。PAZU是客户端软件,使用于IE作为客户端的所有应用,与服务器端开发语言无关,即PAZU支持所有的开发语言开发的WEB应用,无论是Java还是Dot Net还是PHP 还是…都没有问题,客户端是IE就可以了。如果你的应用的客户端不是IE,是firefo...
阅读全文
posted @ 2010-11-01 11:45
南守拥
阅读(452)
推荐(0)
摘要:
http://www.blogjava.net/wenlong/archive/2009/09/18/295593.htmlJBPM数据库表说明1 流程配置类数据库表:1.1 JBPM_PROCESSDEFINITION:流程模版表字段名字段含义主键外键ID_流程模版标识√×NAME_流程模版名称××VERSION_流程模版版本,对于同一流程模版,多次插入...
阅读全文
posted @ 2010-07-30 13:31
南守拥
阅读(564)
推荐(0)
摘要:
ReadWrit.hCode highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--/**ReadWrit.h**SamplecodeforMultithreadingApplicationsinWin32*ThisisfromChapter7,Listing7-1*...
阅读全文
posted @ 2010-07-12 14:56
南守拥
阅读(649)
推荐(0)
摘要:
/** IoByAPC.c** Sample code for Multithreading Applications in Win32* This is from Chapter 6, Listing 6-3** Demonstrates how to use APC's (asynchronous* procedure calls) instead of signaled objects* t...
阅读全文
posted @ 2010-07-09 15:03
南守拥
阅读(383)
推荐(0)
摘要:
/** IoByEvnt.c** Sample code for Multithreading Applications in Win32* This is from Chapter 6, Listing 6-2** Demonstrates how to use event objects instead of* file handles to signal multiple outstandi...
阅读全文
posted @ 2010-07-08 16:26
南守拥
阅读(223)
推荐(0)
摘要:
/** IoByFile.c** Sample code for Multithreading Applications in Win32* This is from Chapter 6, Listing 6-1** Demonstrates how a file handle becomes signaled* when an overlapped operation on the handle...
阅读全文
posted @ 2010-07-08 16:11
南守拥
阅读(369)
推荐(0)
摘要:
Critical Section临界区用来实现 排他性占有 ,适用范围是单一进程的各线程之间,这旨:一个局部性对象,不是一个核心对象快速而有效不能够同时有一个以上的Critical Section 被等无法侦测是否已经某个线程放弃Mutex是一个核心对象,可以在不同的线程之间实现 排他性占有 ,甚至那些线程分属于不同进程,它是:一个核心对象如果拥有Mutex的那个线程结束,刚会产生一个 Aband...
阅读全文
posted @ 2010-07-08 15:19
南守拥
阅读(219)
推荐(0)
摘要:
/** TaskQueM.c** Sample code for "Multithreading Applications in Win32"* This is from Chapter 3, Listing 3-3** Call ThreadFunc NUM_TASKS times, using* no more than THREAD_POOL_SIZE threads.* This vers...
阅读全文
posted @ 2010-07-08 14:23
南守拥
阅读(356)
推荐(0)
摘要:
/** TaskQueS.c** Sample code for "Multithreading Applications in Win32"* This is from Chapter 3, Listing 3-2** Call ThreadFunc NUM_TASKS times, using* no more than THREAD_POOL_SIZE threads.* This vers...
阅读全文
posted @ 2010-07-08 13:47
南守拥
阅读(193)
推荐(0)
摘要:
/** Busy2.c** Sample code for Multithreading Applications in Win32* This sample is mentioned in the text but there is* no associated listing in the book.** Run a busy loop and a worker thread at* the ...
阅读全文
posted @ 2010-07-08 11:48
南守拥
阅读(207)
推荐(0)
摘要:
backprnt.cCode highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--/**BackPrnt.c**Samplecodefor"MultithreadingApplicationsinWin32"*ThisisfromChapter2,Listing2-...
阅读全文
posted @ 2010-07-08 11:27
南守拥
阅读(275)
推荐(0)
摘要:
/** Error.c** Sample code for "Multithreading Applications in Win32"* This is from Chapter 2, Listing 2-4** Demonstrate ExitThread*/#define WIN32_LEAN_AND_MEAN#include <stdio.h>#include <stdl...
阅读全文
posted @ 2010-07-07 11:12
南守拥
阅读(305)
推荐(0)
摘要:
/** ExitThrd.c** Sample code for "Multithreading Applications in Win32"* This is from Chapter 2, Listing 2-3** Demonstrate ExitThread*/#define WIN32_LEAN_AND_MEAN#include <stdio.h>#include <s...
阅读全文
posted @ 2010-07-07 10:54
南守拥
阅读(334)
推荐(0)
摘要:
/** ExitCode.c** Sample code for "Multithreading Applications in Win32"* This is from Chapter 2, Listing 2-2** Start two threads and try to exit* when the user presses a key.*/#define WIN32_LEAN_AND_M...
阅读全文
posted @ 2010-07-07 10:36
南守拥
阅读(237)
推荐(0)
摘要:
http://cwc206.5d6d.com/thread-848-1-1.html默认表情酷猴呆呆男 免费注册 登录 输入您的搜索字词 提交搜索表单 Web cwc206.5d6d.com 超的个人论坛开通窝窝 5d6d站长俱乐部插件导航论坛HOME页 默认风格uchomegraygreen2009D DarkWater_V3圣诞女孩新年2010超的个人论坛» 综合投稿(原创为主)...
阅读全文
posted @ 2010-07-07 10:08
南守拥
阅读(598)
推荐(0)
摘要:
/** Numbers2.cpp** Sample code for "Multithreading Applications in Win32"* This is from Chapter 10, Listing 10-2** Demonstrate thread startup in MFC* using AfxBeginThread, but prevent* CWinThread from...
阅读全文
posted @ 2010-07-07 10:03
南守拥
阅读(267)
推荐(0)
摘要:
/** Numbers.c** Sample code for "Multithreading Applications in Win32"* This is from Chapter 2, Listing 2-1** Starts five threads and gives visible feedback* of these threads running by printing a num...
阅读全文
posted @ 2010-07-07 09:24
南守拥
阅读(323)
推荐(0)
摘要:
// chapter4.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"int _tmain(int argc, _TCHAR* argv[]){const size_t size = 16;int carr[size];for(int idx = 0; idx != size; ++idx){carr[idx] = idx;}return 0;}debugod0...
阅读全文
posted @ 2010-06-21 14:58
南守拥
阅读(230)
推荐(0)
摘要:
// chapter3.3.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include <bitset>using std::bitset;#include <string>using std::string;int _tmain(int argc, _TCHAR* argv[]){bitset<16> b(0xffff)...
阅读全文
posted @ 2010-06-21 14:53
南守拥
阅读(251)
推荐(0)
摘要:
// chapter3.3.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include <vector>using std::vector;int _tmain(int argc, _TCHAR* argv[]){vector<int> ivec(10);for(vector<int>::iterator iter = i...
阅读全文
posted @ 2010-06-21 11:32
南守拥
阅读(267)
推荐(0)
摘要:
// chapter3.2.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include <iostream>#include <string>using std::string;using std::cout;using std::cin;using std::endl;int _tmain(int argc, _TCHAR* arg...
阅读全文
posted @ 2010-06-21 09:59
南守拥
阅读(263)
推荐(0)
摘要:
// chapter1.4.4.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include <iostream>int _tmain(int argc, _TCHAR* argv[]){int sum = 0, value;while(std::cin>>value){sum+=value;}std::cout<<"Sum...
阅读全文
posted @ 2010-06-20 16:18
南守拥
阅读(318)
推荐(0)
摘要:
// chapter1.4.3.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include<iostream>int _tmain(int argc, _TCHAR* argv[]){std::cout<<"Enter two numbers:"<<std::endl;int v1,v2;std::cin>>v...
阅读全文
posted @ 2010-06-20 15:39
南守拥
阅读(257)
推荐(0)
摘要:
// chapter1.4.2.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include <iostream>int _tmain(int argc, _TCHAR* argv[]){int sum = 0;for(int val = 1; val <= 10; ++val){sum += val;}std::cout << ...
阅读全文
posted @ 2010-06-20 14:05
南守拥
阅读(239)
推荐(0)
摘要:
// chapter1.4.1.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include<iostream>int _tmain(int argc, _TCHAR* argv[]){int sum=0,val=1;while(val <=10){sum+=val;++val;}std::cout<<"Sum of 1 to 1...
阅读全文
posted @ 2010-06-18 17:04
南守拥
阅读(221)
推荐(0)
摘要:
// chapter1.2.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include <iostream>int _tmain(int argc, _TCHAR* argv[]){std::cout<<"Enter two numbers:"<<std::endl;int v1,v2;std::cin>>v1...
阅读全文
posted @ 2010-06-18 16:37
南守拥
阅读(260)
推荐(0)
摘要:
#include "stdafx.h"int _tmain(int argc, _TCHAR* argv[]){return 0;}debugod00411370 55 push ebp ; main函数00411371 8BEC mov ebp, esp00411373 81EC C0000000 sub esp, 0C000411379 53 push ebx0041137A 56 push ...
阅读全文
posted @ 2010-06-18 15:07
南守拥
阅读(226)
推荐(0)
摘要:
一. 变量和注释以及杂类$RESULT :这个是系统保留变量,函数和ODS的命令返回都放这里.它还有一个隐含的变量 为$RESULT_1,有的返回是2个参数,第二个放这里. $VERSION :返回当前版本号VAR :在脚本中,声明一个变量AN :从指定处,对代码进行分析CMT :在指定地址处,加入注释MSG :将指定消息,显示到一个对话框中MSGYN :将指定消息,显示到一个对话框中,这个对话框...
阅读全文
posted @ 2010-06-18 11:35
南守拥
阅读(795)
推荐(0)
posted @ 2010-06-17 09:27
南守拥
阅读(1395)
推荐(0)
摘要:
http://topic.csdn.net/u/20081022/12/30fb745f-332b-42f7-bbee-02a760c48132.html先介绍系统环境:XP Professional sp2visual studio 2005 version 8.0.50727.42DirectX 9.0(9.0b) SDK Update - (Summer 2003)首先,就是编译basecl...
阅读全文
posted @ 2010-03-16 16:53
南守拥
阅读(1546)
推荐(1)
摘要:
m_bmpinfo.bmiHeader.biHeight=IMAGE_HEIGHT;这样才为正的,要不是反的但颜色失真不知道为啥!
阅读全文
posted @ 2010-03-02 13:56
南守拥
阅读(612)
推荐(0)
摘要:
在“开始”菜单上,选择“控制面板”,然后选择“管理工具”。 选择“计算机管理”。 在“计算机管理”对话框中,展开“服务和应用程序”节点,然后展开“Internet 信息服务 (IIS)”节点。 选择“Web 服务扩展...
阅读全文
posted @ 2010-03-02 11:05
南守拥
阅读(1063)
推荐(0)
摘要:
http://www.codeproject.com/KB/dialog/RPResizeDlg.aspxchinese up
阅读全文
posted @ 2009-12-23 10:37
南守拥
阅读(157)
推荐(0)
摘要:
http://www.cnblogs.com/604608/archive/2009/11/04/1595660.htmlCTime time=CTime::GetCurrentTime();CString date = time.Format("%Y-%m-%d %H:%M:%S %W-%A");1) 结果为:2006-10-13 17:23:47 41-Friday2) 格式符号说明%a ...
阅读全文
posted @ 2009-12-21 13:43
南守拥
阅读(565)
推荐(0)