ChinaUnix.net
相关文章推荐:

PreSubclassWindow 使用失败 create

# ./db2icrt -a server -u db2inst1 db2inst1 DBI1069E Unexpected error. Function = chk_kernel_conf, Return code = 20. Explanation: An unexpected error occurred during the execution of this program. User Response: If the problem persists, contact IBM Support with the following information: o Message number o Function name o Return code o Problem description touch: /tmp/db2i...

by nangua - DB2 - 2007-02-06 15:05:23 阅读(2421) 回复(9)

相关讨论

在一台 IBM 170 上安装 DB2 8.2 创建实例失败,请教有哪些原因 谢谢

by nangua - DB2 - 2007-02-06 14:07:43 阅读(3717) 回复(15)

solaris 10中如何使用thr_create创建一个线程并启动它?

by cpn8975 - Solaris - 2008-07-25 13:30:39 阅读(1064) 回复(0)

由于需要处理一个800万的表,所以需要建立一个static类型的表,但是建表时候报语法错,有哪位可以帮助一下吗?谢谢大家

by shijunbiao - Informix - 2006-05-07 16:10:53 阅读(1621) 回复(6)

如果不能用!有什么好的替代办法吗?

by superzhang - Informix - 2003-09-15 13:04:18 阅读(1448) 回复(2)

我想知道 为何一个数据文件会要 reuse呢? 如果想重用,直接remove,然后creat tablespace 用同样的名称布就OK 因为数据反正都已经没有了 另外发下oracle 文档的牢骚,要找一个具体的reuse说明可真难啊 我是没有找到啊:em16:

by jayli426 - Oracle - 2008-09-09 11:13:23 阅读(6554) 回复(3)

//test.c void * start_routine(void *); int main() { pthread_t tid; if (pthread_create(&tid,NULL,start_routine,NULL)) { perror("create thread error"); exit(1); } return ; } void * start_routine(void *arg) { sleep(1000); } $gcc - test.c -o test $test create thread error gdb跟踪pthread_create返回值为-1 我想问一下 gcc - test.c -o test (-pthread) 必须加吗 谢谢各位请指教

by hxdhxd_hxd - C/C++ - 2005-03-10 15:35:06 阅读(3733) 回复(2)

代码是apue2书上线程一章的第一个例子,没有改动代码。环境是Freebsd6.2 released。 使用gcc编译出错,显示未定义的符号pthread_create。 但是如果用gcc -c只编译,则没有任何错误,可以成功生成.o文件。 小弟初学,请问各位高手是什么原因?多谢了。

by leiing - BSD - 2007-07-07 00:16:50 阅读(2498) 回复(1)

我在一个文件里存放了许多mysql create table语句, 要生成表。 在PHP中通过system("mysql -h $host -u $name -p$passwd <$usefile"); 调用, 却无法达到预期效果(偶尔可以成功)。 为什么啊?有什么解决办法吗?或者替代的方法。 在shell下直接执行mysql -h ……

by 落川 - PHP - 2005-12-19 17:27:09 阅读(1088) 回复(3)

近日编写一个如下函数时,不能通过,哪位 有办法实现??? create FUNCTION bluescorpian."getids"(IN_DEP_TYPE CHARACTER(5)) RETURNS CHARACTER(30) SPECIFIC "getids" LANGUAGE SQL DETERMINISTIC READS SQL DATA CALLED ON NULL INPUT NO EXTERNAL ACTION begin atomic declare reID char(30); select ids into reID from tb1 where id_type = in_dep_type; return reID; end @ ...

by BlueScorpian - DB2 - 2005-07-03 00:07:44 阅读(1326) 回复(1)

错误提示 Warning: Unable to resolve http://www.aaa.com in /home/apache/htdocs/test/common/message_socket.php on line 41 Fatal error: Call to undefined function: socket_create() in /home/apache/htdocs/test/common/message_socket.php on line 44 ==================程序==================== create(AF_INET,SOCK_STREAM,SOL_TCP); ?>;

by zkping - PHP - 2004-12-08 22:16:14 阅读(1902) 回复(1)