# ./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)
我想知道 为何一个数据文件会要 reuse呢? 如果想重用,直接remove,然后creat tablespace 用同样的名称布就OK 因为数据反正都已经没有了 另外发下oracle 文档的牢骚,要找一个具体的reuse说明可真难啊 我是没有找到啊:em16:
//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) 必须加吗 谢谢各位请指教
代码是apue2书上线程一章的第一个例子,没有改动代码。环境是Freebsd6.2 released。 使用gcc编译出错,显示未定义的符号pthread_create。 但是如果用gcc -c只编译,则没有任何错误,可以成功生成.o文件。 小弟初学,请问各位高手是什么原因?多谢了。
我在一个文件里存放了许多mysql create table语句,
要生成表。
在PHP中通过system("mysql -h $host -u $name -p$passwd <$usefile"); 调用,
却无法达到预期效果(偶尔可以成功)。
为什么啊?有什么解决办法吗?或者替代的方法。
在shell下直接执行mysql -h ……
近日编写一个如下函数时,不能通过,哪位 有办法实现??? 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 @ ...
错误提示 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 ==================程序==================== $socket=socket_create(AF_INET,SOCK_STREAM,SOL_TCP); ?>;