用sql 语句怎么查询建立的表是保存在什么位置的啦?

2024-12-17 09:18:12
推荐回答(5个)
回答1:

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';

回答2:

用如下语句查询:

select table_name,tablespace_name from user_tables;

查出来的结果就是表所保存的表空间位置,如图:

user_tables用语存放当前用户名下的表的信息。

回答3:

oracle
select * from User_Tables WHERE table_name = 你的表名(大写)
Tablespace_name就是表保存的位置

回答4:

sql语句是用来查询和操作数据库的语言,所以不提供查询表的存储路径的功能,
参考楼上的试试吧,一般右键点击表=》属性,应该会有路径
希望帮到你!

回答5:

首先如果是sql server那么 查询 select * from b..sysobjects where name='a'
如果是oracle 那么是dba_tables