发布网友 发布时间:2022-04-23 12:40
共8个回答
热心网友 时间:2022-04-11 23:37
1、创建数据表,create table ckx_location(id number, value varchar2(200));
2、查询该表归属表空间,
select t.TABLESPACE_NAME, t.* from user_tables t where table_name = upper('ckx_location');
3、查看表空间信息,
select * from user_tablespaces t where t.TABLESPACE_NAME = 'USERS';
4、查看表空间的数据文件,select * from dba_data_files t where t.TABLESPACE_NAME = 'USERS';
热心网友 时间:2022-04-12 00:55
用如下语句查询:
select table_name,tablespace_name from user_tables;查出来的结果就是表所保存的表空间位置,如图:
user_tables用语存放当前用户名下的表的信息。
热心网友 时间:2022-04-12 02:30
oracle热心网友 时间:2022-04-12 04:21
sql语句是用来查询和操作数据库的语言,所以不提供查询表的存储路径的功能,热心网友 时间:2022-04-12 06:29
首先如果是sql server那么 查询 select * from b..sysobjects where name='a'热心网友 时间:2022-04-12 08:54
如果是sql server数据库的话,就在安装目录里。热心网友 时间:2022-04-12 11:35
【SQL SERVER 2000】热心网友 时间:2022-04-12 14:33
你好,你想要了解到什么深度。具体到数据块吗?block?