ChinaUnix.net
相关文章推荐:

dblink table or view does not exist

本帖最后由 ftjn 于 2011-03-23 11:19 编辑 SQL> select tableSPACE_NAME, table_NAME from dba_tables where tableSPACE_NAME='PT_HIST_DATA'order by tableSPACE_NAME; tableSPACE_NAME table_NAME ------------------------------ ------------------------------ PT_HIST_DATA PT_HISTORY 说明有一个表是PT_HISTORY,但我执行下面语句报错,为什么? SQL> SELECT UNIQUE_ID, EQUI...

by ftjn - Oracle - 2011-03-23 12:28:36 阅读(24110) 回复(6)

相关讨论

我用系统DBA认证方式,即“connect / as sysdba”创建了数据库和表还有procedure,然后又创建了一个有“select any table, create session”权限的用户,可是用此用户“connect userid/userpwd”登陆数据库后,检索不到任何表,任何检索已在“as sysdba”下建立起来的表,都会被返回“ORA-00942: table or view does not exist”的错误。而用“connect userid/userpwd as sysdba”连接数据库,却可以检索到表。 我现在需要解决的问...

by zhangpu - Oracle - 2005-10-08 09:48:29 阅读(8900) 回复(3)

1.查看所有用户: select * from dba_users; select * from all_users; select * from user_users; 2.查看用户或角色系统权限(直接赋值给用户或角色的系统权限): select * from dba_sys_privs; select * from user_sys_privs; 3.查看角色(只能查看登陆用户拥有的角色)所包含的权限 sql>select * from role_sys_privs; 这是我在网上找到的语句,我在自己创建的数据库中使用上述语句,目的...

by bjhb - Oracle - 2011-05-25 13:53:35 阅读(17475) 回复(29)

[Thu Jul 26 12:54:56 2007] [error] [client 221.237.179.224] File does not exist: /usr/local/www/apache22/data/uri-res [Thu Jul 26 12:55:00 2007] [error] [client 221.237.179.224] File does not exist: /usr/local/www/apache22/data/uri-res [Thu Jul 26 12:55:12 2007] [error] [client 60.189.105.191] File does not exist: /usr/local/www/apache22/data/uri-res [Thu Jul 26 12:55:18 2007] [error] [client 58.2...

by 团长 - BSD - 2007-08-21 09:22:12 阅读(2625) 回复(1)

Hello! Can somebody please help? Maybe it's nothing that serious, but I have no idea what the problem can be. (ASE-12.5 on Redhat 9.0) After attempting to create an Adaptive Server, using the srvbuild utility, the following message comes out: Unable to boot Adaptive Server 'xxx' because the master device (/opt/sybase-12.5/dbdev/master/master.dat) does not exist. Server 'xxx' was not created. Th...

by redfoxxfs - Sybase - 2003-10-21 10:27:53 阅读(1176) 回复(1)

libpopt.a does not exist NOTE: Running task 78 of 87 (ID: 6, /home/xiewei/stuff/openembedded/packages/popt/popt-native_1.7.bb, do_qa_configure) NOTE: package popt-native-1.7: started NOTE: package popt-native-1.7-r5: task do_qa_configure: started NOTE: Checking sanity of the config.log file NOTE: package popt-native-1.7-r5: task do_qa_configure: completed NOTE: package popt-native-1.7: completed ...

by xw_max - Linux文档专区 - 2009-05-17 16:18:23 阅读(759) 回复(0)

我需要做一个lv做dd 清空操作,我用到了: dd if=/dev/zero of=/dev/rdatalv_01 bs=1024k 提示: There is a request to a device or address that does not exist. 130+0 records in. 128+0 records out. 是全部清空吗?为什么两个不等呀?这个报错要紧吗? 大家一般指定bs 为多大?bs 的大小一定要lv 除尽吗?不然是不是会出现这种问题? 注这是big vg,没有偏移...

by tomasfly88 - AIX - 2008-09-17 23:08:40 阅读(4730) 回复(5)

我需要做一个lv做dd 清空操作,我用到了:\r\ndd if=/dev/zero of=/dev/rdatalv_01 bs=1024k\r\n提示: \r\nThere is a request to a device or address that does not exist.\r\n130+0 records in. \r\n128+0 records out. \r\n是全部清空吗?为什么两个不等呀?这个报错要紧吗?\r\n大家一般指定bs 为多大?bs 的大小一定要lv 除尽吗?不然是不是会出现这种问题?\r...

by tomasfly88 - AIX - 2008-09-17 23:08:40 阅读(3637) 回复(2)

为什么我在monut的时候出现mount point /u does not exist啊?谢谢!

by zljmy - Linux新手园地 - 2008-08-29 16:17:03 阅读(6656) 回复(8)

在log文件里面发现有 File does not exist: 那么就是说有人访问了不存在的文件,请问各位大哥怎么才可以让apache不接受这类请求呢?多谢赐教

by peterxuxu - 服务器应用 - 2004-08-15 18:39:02 阅读(1493) 回复(4)

对于CREATE table IF NOT exist… SELECT ,如果给定IF NOT existS ,而且表已经存在的情况下 做下列事 CREATE table 的表定义部分被忽略,甚至表定义与目前存在的表不一致,也不会抛出错误 如果存在的表的列数和由SELECT部分的列数不匹配的话 SELECT到的值会被靠右填充到表列中 如: SELECT产生m列,而表定义有n列,当(mn时,会有错误产生 mysql> create table t1 (a int,b int); mysql> insert int t1 values (1,1),(1,2); mys...

by justlooks - MySQL - 2010-03-13 10:12:26 阅读(8007) 回复(1)